summaryrefslogtreecommitdiffstats
path: root/build/common.gypi
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-22 20:23:14 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-22 20:23:14 +0000
commitda4d4ea88f1d11c3b100dcdd24f19e329615aa38 (patch)
treeaf6b7bbb316306ffe60babb78116a6dec331d4ea /build/common.gypi
parent36c8a4efecc5497aa68edbb289e6fb78caa2bf30 (diff)
downloadchromium_src-da4d4ea88f1d11c3b100dcdd24f19e329615aa38.zip
chromium_src-da4d4ea88f1d11c3b100dcdd24f19e329615aa38.tar.gz
chromium_src-da4d4ea88f1d11c3b100dcdd24f19e329615aa38.tar.bz2
mac: Don't build with debug information on the trybots.
Locally, a full build is 50% faster with this. BUG=none TEST=mac trybot build time should go down at least 7 minutes. Review URL: http://codereview.chromium.org/7994008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102343 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r--build/common.gypi9
1 files changed, 6 insertions, 3 deletions
diff --git a/build/common.gypi b/build/common.gypi
index df25848..27a1f08 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -903,8 +903,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',
@@ -912,7 +912,10 @@
'VCCLCompilerTool': {
'DebugInformationFormat': '0',
}
- }
+ },
+ 'xcode_settings': {
+ 'GCC_GENERATE_DEBUGGING_SYMBOLS': 'NO',
+ },
}, { # else: OS != "win", generate less debug information.
'variables': {
'debug_extra_cflags': '-g1',