Set mac_deployment_target default to 10.7

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}
This commit is contained in:
Henrik Kjellander 2015-11-25 08:35:03 +01:00
parent 65ef3199b3
commit 46a491bcbb

View File

@ -2,8 +2,12 @@
'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"', {