| Index: tools-webrtc/ios/build_ios_libs.py
|
| diff --git a/tools-webrtc/ios/build_ios_libs.py b/tools-webrtc/ios/build_ios_libs.py
|
| index 37404831130381af74b620131899cc4f548f7298..25745e0351e58f9f4dfad52fb79f9a75a732e15f 100755
|
| --- a/tools-webrtc/ios/build_ios_libs.py
|
| +++ b/tools-webrtc/ios/build_ios_libs.py
|
| @@ -115,10 +115,10 @@ def BuildWebRTC(output_dir, target_arch, flavor, build_type,
|
| else:
|
| raise ValueError('Build type "%s" is not supported.' % build_type)
|
|
|
| - logging.info('Building WebRTC with args: %s', ' '.join(gn_args))
|
| + args_string = ' '.join(gn_args + extra_gn_args)
|
| + logging.info('Building WebRTC with args: %s', args_string)
|
|
|
| - cmd = ['gn', 'gen', output_dir,
|
| - '--args=' + ' '.join(gn_args + extra_gn_args)]
|
| + cmd = ['gn', 'gen', output_dir, '--args=' + args_string]
|
| _RunCommand(cmd)
|
| logging.info('Building target: %s', gn_target_name)
|
|
|
|
|