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

Unified Diff: build/common.gypi

Issue 14445005: Enable fastbuild=1 on clang/mac (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: always set GCC_GENERATE_DEBUGGING_SYMBOLS=NO when fastbuild=1 Created 7 years, 8 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 9afe9e8b1be1632e5d6d80df3c328049aef932ca..3d09d24cebc788be6eaddd46e120c7be4013411f 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1834,6 +1834,9 @@
'defines': ['ENABLE_HIDPI=1'],
}],
['fastbuild!=0', {
+ 'xcode_settings': {
+ 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
+ },
'conditions': [
['clang==1', {
# Clang creates chubby debug information, which makes linking very
@@ -1879,11 +1882,6 @@
},
},
}],
- ['OS=="mac"', {
- 'xcode_settings': {
- 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
- },
- }],
['OS=="linux" and fastbuild==2', {
'variables': {
'debug_extra_cflags': '-g0',
« 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