Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Unified Diff: scripts/slave/recipe_modules/webrtc/chromium_config.py

Issue 573673002: WebRTC: Pin SDK version to 10.9 for Mac and iOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipe_modules/webrtc/chromium_config.py
diff --git a/scripts/slave/recipe_modules/webrtc/chromium_config.py b/scripts/slave/recipe_modules/webrtc/chromium_config.py
index 57cb427d4484f66d3058d39749c72da839ed8963..f5db56e90ddc3f4f42683366d5678ae6f9593486 100644
--- a/scripts/slave/recipe_modules/webrtc/chromium_config.py
+++ b/scripts/slave/recipe_modules/webrtc/chromium_config.py
@@ -20,8 +20,8 @@ def webrtc(c):
platform_ext={'win': '.bat',
'mac': '.sh',
'linux': '.sh'})
- if c.TARGET_PLATFORM == 'mac' and c.TARGET_BITS == 64:
- c.gyp_env.GYP_DEFINES['mac_sdk'] = '10.7'
+ if c.TARGET_PLATFORM == 'mac':
+ c.gyp_env.GYP_DEFINES['mac_sdk'] = '10.9'
@CONFIG_CTX(includes=['chromium_clang'])
def webrtc_clang(c):
@@ -68,6 +68,7 @@ def webrtc_ios(c):
gyp_defs['build_with_libjingle'] = 1
gyp_defs['chromium_ios_signing'] = 0
gyp_defs['key_id'] = ''
+ gyp_defs['mac_sdk'] = '10.9'
gyp_defs['target_arch'] = 'armv7'
gyp_defs['OS'] = c.TARGET_PLATFORM

Powered by Google App Engine
This is Rietveld 408576698