This overrides the default (10.6) in Chromium's build/common.gypi. It's needed since we want ARC and libc++. TESTED=Ran webrtc/build/gyp_webrtc before this patch and then grep -r macosx-version-min out/Debug/* | grep 10.6 which gave a lot of output. Then with this patch applied, there were no output for 10.6 (only 10.7). R=tkchin@webrtc.org Review URL: https://codereview.webrtc.org/1474623002 . Cr-Commit-Position: refs/heads/master@{#10783}
57 lines
1.7 KiB
Python
57 lines
1.7 KiB
Python
{
|
|
'variables': {
|
|
'variables': {
|
|
'webrtc_root%': '<(DEPTH)/webrtc',
|
|
# Override the default (10.6) in Chromium's build/common.gypi.
|
|
# Needed for ARC and libc++.
|
|
'mac_deployment_target%': '10.7',
|
|
},
|
|
'webrtc_root%': '<(webrtc_root)',
|
|
'mac_deployment_target%': '<(mac_deployment_target)',
|
|
'build_with_chromium': 0,
|
|
'conditions': [
|
|
['OS=="ios"', {
|
|
# Default to using BoringSSL on iOS.
|
|
'use_openssl%': 1,
|
|
|
|
# Set target_subarch for if not already set. This is needed because the
|
|
# Chromium iOS toolchain relies on target_subarch being set.
|
|
'conditions': [
|
|
['target_arch=="arm" or target_arch=="ia32"', {
|
|
'target_subarch%': 'arm32',
|
|
}],
|
|
['target_arch=="arm64" or target_arch=="x64"', {
|
|
'target_subarch%': 'arm64',
|
|
}],
|
|
],
|
|
}],
|
|
],
|
|
},
|
|
'target_defaults': {
|
|
'target_conditions': [
|
|
['_target_name=="sanitizer_options"', {
|
|
'conditions': [
|
|
['lsan==1', {
|
|
# Replace Chromium's LSan suppressions with our own for WebRTC.
|
|
'sources/': [
|
|
['exclude', 'lsan_suppressions.cc'],
|
|
],
|
|
'sources': [
|
|
'<(webrtc_root)/build/sanitizers/lsan_suppressions_webrtc.cc',
|
|
],
|
|
}],
|
|
['tsan==1', {
|
|
# Replace Chromium's TSan v2 suppressions with our own for WebRTC.
|
|
'sources/': [
|
|
['exclude', 'tsan_suppressions.cc'],
|
|
],
|
|
'sources': [
|
|
'<(webrtc_root)/build/sanitizers/tsan_suppressions_webrtc.cc',
|
|
],
|
|
}],
|
|
],
|
|
}],
|
|
],
|
|
},
|
|
}
|