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

Unified Diff: build/common.gypi

Issue 23684011: Fix warning in Xcode about only building the active arch in Debug. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fix comment Created 7 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
« 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: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 61f11034675e8e6e0304be2dab8a3c9e9791a93e..902be3379d8292605d9f7e69d63cc2be35d22d6d 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -4644,6 +4644,19 @@
],
}],
],
+ 'configurations': {
+ # DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT!
+ # This block adds *project-wide* configuration settings to each project
+ # file. It's almost always wrong to put things here. Specify your
+ # custom |configurations| in target_defaults to add them to targets instead.
+ 'Debug': {
+ 'xcode_settings': {
+ # Enable 'Build Active Architecture Only' for Debug. This
+ # avoids a project-level warning in Xcode.
+ 'ONLY_ACTIVE_ARCH': 'YES',
+ },
+ },
+ },
'xcode_settings': {
# DON'T ADD ANYTHING NEW TO THIS BLOCK UNLESS YOU REALLY REALLY NEED IT!
# This block adds *project-wide* configuration settings to each project
« 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