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 |
} |