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

Unified Diff: tools/gyp/xcode.gypi

Issue 12672003: Use the lowest MacOS SDK available on a system (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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: tools/gyp/xcode.gypi
diff --git a/tools/gyp/xcode.gypi b/tools/gyp/xcode.gypi
index 26afb4adf2ec954bc752ad65eabd5f000bc7c433..5242cd8b0489475691424c05c7e7567b5419cba0 100644
--- a/tools/gyp/xcode.gypi
+++ b/tools/gyp/xcode.gypi
@@ -18,8 +18,8 @@
# Chrome normally builds with the Mac OS X 10.5 SDK and sets the
# deployment target to 10.5. Other projects, such as O3D, may override
# these defaults.
- 'mac_sdk%': '10.5',
- 'mac_deployment_target%': '10.5',
+ 'mac_sdk%': '<!(python <(DART_ROOT)/tools/gyp/find_sdk.py 10.6)',
kustermann 2013/03/12 16:51:40 I'm not too familiar with GYP. But it seems like w
Ivan Posva 2013/03/13 09:44:40 That DEPTH doesn't work is strange. What errors we
kustermann 2013/03/13 15:30:29 After removing the two runhooks we can use DEPTH n
+ 'mac_deployment_target%': '10.6',
},
'xcode_settings': {
# DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT!

Powered by Google App Engine
This is Rietveld 408576698