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: http://src.chromium.org/svn/trunk/src/build@160606 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
ilevy@chromium.org 2012-10-07 05:47:38 +00:00
Родитель b2e0b748fc
Коммит fa6e57a37a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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',
},