diff options
author | ilevy@chromium.org <ilevy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-07 05:47:38 +0000 |
---|---|---|
committer | ilevy@chromium.org <ilevy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-07 05:47:38 +0000 |
commit | d5523ade2cfda26f8b7676b26a816fdb96aa23aa (patch) | |
tree | 78c3ff1f75afe72066ee20308d182373d558d357 /build | |
parent | d3afce9ca8421754a11df5c8423bfb9c1efbc5f3 (diff) | |
download | chromium_src-d5523ade2cfda26f8b7676b26a816fdb96aa23aa.zip chromium_src-d5523ade2cfda26f8b7676b26a816fdb96aa23aa.tar.gz chromium_src-d5523ade2cfda26f8b7676b26a816fdb96aa23aa.tar.bz2 |
Fix fastbuild for android clang. Build -g0
Fix the fastbuild flag for android clang.
TEST=ninja files change to -g0, build is 5x faster
BUG=143931
TBR=thakis
Review URL: https://codereview.chromium.org/11078008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160606 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/common.gypi b/build/common.gypi index 6e435f4..7c83a8c 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -1604,7 +1604,7 @@ # Clang creates chubby debug information, which makes linking very # slow. For now, don't create debug information with clang. See # http://crbug.com/70000 - ['OS=="linux" and clang==1', { + ['(OS=="linux" or OS=="android") and clang==1', { 'variables': { 'debug_extra_cflags': '-g0', }, |