diff options
author | ilevy@chromium.org <ilevy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-14 23:30:08 +0000 |
---|---|---|
committer | ilevy@chromium.org <ilevy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-14 23:30:08 +0000 |
commit | 5c33001e4f870e6b4cfd30d0ce762ae40c1827ab (patch) | |
tree | 4a92d1cf949791ef8931ff8294bb412d7e5b0986 /build | |
parent | 1bd55ae056e7772922da318c0282ad8d59c9d496 (diff) | |
download | chromium_src-5c33001e4f870e6b4cfd30d0ce762ae40c1827ab.zip chromium_src-5c33001e4f870e6b4cfd30d0ce762ae40c1827ab.tar.gz chromium_src-5c33001e4f870e6b4cfd30d0ce762ae40c1827ab.tar.bz2 |
Make android_dbg trybots build with fastbuild=1
This produces less debugging information in stack traces but shouldn't make much difference given high bar for getting symbols off of a trybot.
BUG=149081
Review URL: https://codereview.chromium.org/10908253
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156927 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/android/buildbot/buildbot_functions.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/android/buildbot/buildbot_functions.sh b/build/android/buildbot/buildbot_functions.sh index 8e6b8f4..5cf2bab 100755 --- a/build/android/buildbot/buildbot_functions.sh +++ b/build/android/buildbot/buildbot_functions.sh @@ -69,7 +69,6 @@ function bb_baseline_setup { export GYP_GENERATORS=ninja fi - . build/android/envsetup.sh if [ "$NEED_CLOBBER" -eq 1 ]; then echo "@@@BUILD_STEP Clobber@@@" @@ -83,6 +82,9 @@ function bb_baseline_setup { fi fi + . build/android/envsetup.sh + export GYP_DEFINES+=" fastbuild=1" + # Should be called only after envsetup is done. bb_run_gclient_hooks } |