diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-14 21:37:40 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-14 21:37:40 +0000 |
commit | 37c841918d0604e5589e2c35eb6a48f5c33feec4 (patch) | |
tree | 267efdf490dd3baddddb3d82b77fbb0f9b0c5413 /build | |
parent | e3eafb29b7b0e24405e432d7672ccbd212927ab9 (diff) | |
download | chromium_src-37c841918d0604e5589e2c35eb6a48f5c33feec4.zip chromium_src-37c841918d0604e5589e2c35eb6a48f5c33feec4.tar.gz chromium_src-37c841918d0604e5589e2c35eb6a48f5c33feec4.tar.bz2 |
POSIX: Implement the fastbuild option.
BUG=none
TEST=Enabling fastbuild -> faster debug build.
Review URL: http://codereview.chromium.org/1558043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@44543 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index 29ccfbe..33a24b3 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -379,7 +379,9 @@ 'DebugInformationFormat': '0', } } - }], # OS==win + }, { # else: OS != "win" + 'cflags': [ '-g1' ], + }], ], # conditions for fastbuild. }], # fastbuild!=0 ['selinux==1', { |