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

Unified Diff: build/common.gypi

Issue 7737027: mac: Use stabs instead of dwarf when fastbuild=1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 007b908f50664bb0f718b0737fd5a669d6fbdf51..14e78d11b0d17b8227d7dc70c6b7c5df9f515c5a 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -857,6 +857,14 @@
'debug_extra_cflags': '-g0',
},
}],
+ ['OS=="mac"', {
+ 'xcode_settings': {
+ # Goma needs to ship all symbol information over the wire.
+ # <(debug_extra_cflags) will still generate -g1 STABS information,
+ # which is smaller than -gdwarf-2 information.
+ 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
+ },
+ }],
], # conditions for fastbuild.
}], # fastbuild!=0
['selinux==1', {
« 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