OLD | NEW |
1 { | 1 { |
2 'variables': { | 2 'variables': { |
3 'variables': { | 3 'variables': { |
4 'webrtc_root%': '<(DEPTH)/webrtc', | 4 'webrtc_root%': '<(DEPTH)/webrtc', |
5 # Override the defaults in Chromium's build/common.gypi. | 5 # Override the defaults in Chromium's build/common.gypi. |
6 # Needed for ARC and libc++. | 6 # Needed for ARC and libc++. |
7 'mac_sdk_min%': '10.11', | 7 'mac_sdk_min%': '10.11', |
8 'mac_deployment_target%': '10.7', | 8 'mac_deployment_target%': '10.7', |
9 }, | 9 }, |
10 'webrtc_root%': '<(webrtc_root)', | 10 'webrtc_root%': '<(webrtc_root)', |
11 'mac_deployment_target%': '<(mac_deployment_target)', | 11 'mac_deployment_target%': '<(mac_deployment_target)', |
12 'use_sysroot%': '<(use_sysroot)', | 12 'use_sysroot%': '<(use_sysroot)', |
13 'build_with_chromium': 0, | 13 'build_with_chromium': 0, |
14 'conditions': [ | 14 'conditions': [ |
15 ['OS=="ios"', { | 15 ['OS=="ios"', { |
16 # Default to using BoringSSL on iOS. | |
17 'use_openssl%': 1, | |
18 | |
19 # Set target_subarch for if not already set. This is needed because the | 16 # Set target_subarch for if not already set. This is needed because the |
20 # Chromium iOS toolchain relies on target_subarch being set. | 17 # Chromium iOS toolchain relies on target_subarch being set. |
21 'conditions': [ | 18 'conditions': [ |
22 ['target_arch=="arm" or target_arch=="ia32"', { | 19 ['target_arch=="arm" or target_arch=="ia32"', { |
23 'target_subarch%': 'arm32', | 20 'target_subarch%': 'arm32', |
24 }], | 21 }], |
25 ['target_arch=="arm64" or target_arch=="x64"', { | 22 ['target_arch=="arm64" or target_arch=="x64"', { |
26 'target_subarch%': 'arm64', | 23 'target_subarch%': 'arm64', |
27 }], | 24 }], |
28 ], | 25 ], |
(...skipping 20 matching lines...) Expand all Loading... |
49 ], | 46 ], |
50 'sources': [ | 47 'sources': [ |
51 '<(webrtc_root)/build/sanitizers/tsan_suppressions_webrtc.cc', | 48 '<(webrtc_root)/build/sanitizers/tsan_suppressions_webrtc.cc', |
52 ], | 49 ], |
53 }], | 50 }], |
54 ], | 51 ], |
55 }], | 52 }], |
56 ], | 53 ], |
57 }, | 54 }, |
58 } | 55 } |
OLD | NEW |