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

Unified Diff: build/common.gypi

Issue 7994008: mac: Don't build with debug information on the trybots. (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 cdc02e002f88fc0fa70588ebcf452262e20bef4d..4321532ed26190ddb65c01398fefcd6737592953 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -900,8 +900,8 @@
['fastbuild!=0', {
'conditions': [
- # For Windows, we don't genererate debug information.
- ['OS=="win"', {
+ # For Windows and Mac, we don't genererate debug information.
+ ['OS=="win" or OS=="mac"', {
'msvs_settings': {
'VCLinkerTool': {
'GenerateDebugInformation': 'false',
@@ -909,7 +909,10 @@
'VCCLCompilerTool': {
'DebugInformationFormat': '0',
}
- }
+ },
+ 'xcode_settings': {
+ 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
+ },
}, { # else: OS != "win", generate less debug information.
'variables': {
'debug_extra_cflags': '-g1',
« 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