summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorkjellander@webrtc.org <kjellander@webrtc.org>2014-09-15 08:02:43 +0000
committerkjellander@webrtc.org <kjellander@webrtc.org>2014-09-15 08:02:43 +0000
commite754000084657c2bf18800d3543916964c87a3e6 (patch)
tree3ddd84ca7f881c1e1139f89950bb1989fad822a7 /build
parent86a9178730a9ade9b316774f2d6c1574661f7b32 (diff)
downloadwebrtc-e754000084657c2bf18800d3543916964c87a3e6.tar.gz
Set minimum SDK level to 10.7 for Mac and iOS.
This is needed since r7174 introduced a dependency on AVFoundation, which is not present in the 10.6 SDK which is still the default for Chromium. BUG= TESTED=Passing compile on trybots. R=henrika@webrtc.org Review URL: https://webrtc-codereview.appspot.com/22659004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@7175 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi5
1 files changed, 5 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi
index bc88d4ac..4b17eb4d 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -155,6 +155,11 @@
'include_tests%': 1,
'restrict_webrtc_logging%': 0,
}],
+ ['OS=="mac" or OS=="ios"', {
+ # Set the minimum SDK level to 10.7 since we need AVFoundation.
+ # See ../build/common.gypi for more info about this variable.
+ 'mac_sdk_min%': '10.7',
+ }],
['OS=="ios"', {
'build_libjpeg%': 0,
'enable_protobuf%': 0,