From c3f110a1f9c53d84c70a89af5786c9fc33a8b71d Mon Sep 17 00:00:00 2001 From: kthelgason Date: Wed, 17 May 2017 04:26:42 -0700 Subject: [PATCH] Update build_ios_libs.py to new GN target names. TBR=kjellander@webrtc.org NOTRY=true BUG=None Review-Url: https://codereview.webrtc.org/2888903002 Cr-Commit-Position: refs/heads/master@{#18175} --- tools_webrtc/ios/build_ios_libs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools_webrtc/ios/build_ios_libs.py b/tools_webrtc/ios/build_ios_libs.py index 734f3e216d..412ad6708e 100755 --- a/tools_webrtc/ios/build_ios_libs.py +++ b/tools_webrtc/ios/build_ios_libs.py @@ -120,7 +120,7 @@ def BuildWebRTC(output_dir, target_arch, flavor, build_type, if build_type == 'static_only': gn_target_name = 'rtc_sdk_objc' elif build_type == 'framework': - gn_target_name = 'rtc_sdk_framework_objc' + gn_target_name = 'objc_framework' if not use_bitcode: gn_args.append('enable_dsyms=true') gn_args.append('enable_stripping=true')