diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-22 20:23:14 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-22 20:23:14 +0000 |
commit | da4d4ea88f1d11c3b100dcdd24f19e329615aa38 (patch) | |
tree | af6b7bbb316306ffe60babb78116a6dec331d4ea /build/common.gypi | |
parent | 36c8a4efecc5497aa68edbb289e6fb78caa2bf30 (diff) | |
download | chromium_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.gypi | 9 |
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', |