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

Unified Diff: build/android/buildbot_functions.sh

Issue 10790059: Run necessary gclient hooks on the Android bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Now calling runhooks after envsetup is done. Created 8 years, 5 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_functions.sh
diff --git a/build/android/buildbot_functions.sh b/build/android/buildbot_functions.sh
index b9f197859858a756723fb8e25231bc09bb25f9f0..90515c050026847bcf83f0b1e6bb4f4d60644930 100755
--- a/build/android/buildbot_functions.sh
+++ b/build/android/buildbot_functions.sh
@@ -63,6 +63,11 @@ function bb_force_bot_green_and_exit {
exit 0
}
+function bb_run_gclient_hooks {
+ echo "@@@BUILD_STEP runhooks android@@@"
+ gclient runhooks
+}
+
# Basic setup for all bots to run after a source tree checkout.
# Args:
# $1: source root.
@@ -122,8 +127,8 @@ function bb_baseline_setup {
fi
fi
- echo "@@@BUILD_STEP android_gyp@@@"
- android_gyp
+ # Should be called only after envsetup is done.
Isaac (away) 2012/07/18 21:30:49 nit: do we really need a separate bash function /
John Grabowski 2012/07/18 21:42:25 Isaac; absolutely! Makes it easier for testing bb
nilesh 2012/07/18 21:48:07 Linux also has a separate step for this. This repl
+ 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