Fix iOS API Framework build script after renaming objc targets.
This fixes the script after targets were renamed in
https://codereview.webrtc.org/3001023003/
BUG=webrtc:6412, chromium:758655
NOTRY=True
Review-Url: https://codereview.webrtc.org/3005513002
Cr-Commit-Position: refs/heads/master@{#19500}
diff --git a/tools_webrtc/ios/build_ios_libs.py b/tools_webrtc/ios/build_ios_libs.py
index 0081998..98a2407 100755
--- a/tools_webrtc/ios/build_ios_libs.py
+++ b/tools_webrtc/ios/build_ios_libs.py
@@ -162,7 +162,7 @@
if args.build_type == 'static_only':
gn_target_name = 'rtc_sdk_objc'
elif args.build_type == 'framework':
- gn_target_name = 'objc_framework'
+ gn_target_name = 'framework_objc'
if not args.bitcode:
gn_args.append('enable_dsyms=true')
gn_args.append('enable_stripping=true')