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

Unified Diff: tools/gyp/configurations_xcode.gypi

Issue 10447115: Fix Mac build. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gyp/configurations_xcode.gypi
diff --git a/tools/gyp/configurations_xcode.gypi b/tools/gyp/configurations_xcode.gypi
index e07f2650999dd0c55de829a132511072f9596059..1bb9d6e6807c7c51fa598c7bbdb678a7cdfe3cb5 100644
--- a/tools/gyp/configurations_xcode.gypi
+++ b/tools/gyp/configurations_xcode.gypi
@@ -48,19 +48,19 @@
'Dart_ia32_Base': {
'xcode_settings': {
- 'ARCHS': 'i386',
+ 'ARCHS': [ 'i386' ],
},
},
'Dart_x64_Base': {
'xcode_settings': {
- 'ARCHS': 'x86_64',
+ 'ARCHS': [ 'x86_64' ],
},
},
'Dart_simarm_Base': {
'xcode_settings': {
- 'ARCHS': 'i386',
+ 'ARCHS': [ 'i386' ],
'GCC_OPTIMIZATION_LEVEL': '3',
},
},
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698