Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3656)

Unified Diff: build/android/buildbot/buildbot_functions.sh

Issue 10996008: Fix android clang builder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed whitespace typo Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/buildbot/buildbot_functions.sh
diff --git a/build/android/buildbot/buildbot_functions.sh b/build/android/buildbot/buildbot_functions.sh
index d261e7f93f8abe02ad0c2246770ad6e47bdd681c..9810cd0ecc320df3637def93d798b52ad9f1c560 100755
--- a/build/android/buildbot/buildbot_functions.sh
+++ b/build/android/buildbot/buildbot_functions.sh
@@ -72,9 +72,12 @@ function bb_baseline_setup {
fi
bb_setup_goma_internal
. build/android/envsetup.sh
- export GYP_DEFINES+=" fastbuild=1"
- export GYP_DEFINES+=" $(bb_get_json_prop "$FACTORY_PROPERTIES" \
+ local extra_gyp_defines="$(bb_get_json_prop "$FACTORY_PROPERTIES" \
extra_gyp_defines)"
+ export GYP_DEFINES+=" fastbuild=1 $extra_gyp_defines"
+ if echo $extra_gyp_defines | grep -q clang; then
+ unset CXX_target
+ fi
# Should be called only after envsetup is done.
bb_run_gclient_hooks
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698