Index: build/android/buildbot/bb_run_bot.py |
diff --git a/build/android/buildbot/bb_run_bot.py b/build/android/buildbot/bb_run_bot.py |
index dfed38270d05186d35468f55b6d8b3d5c0c800fc..a9e5b26f5a0852115c05977849c3122adb74ddf5 100755 |
--- a/build/android/buildbot/bb_run_bot.py |
+++ b/build/android/buildbot/bb_run_bot.py |
@@ -115,6 +115,7 @@ def GetCommands(options, bot_config): |
def GetBotStepMap(): |
compile_step = ['compile'] |
+ chrome_proxy_tests = ['chrome_proxy'] |
std_host_tests = ['check_webview_licenses', 'findbugs'] |
std_build_steps = ['compile', 'zip_build'] |
std_test_steps = ['extract_build'] |
@@ -141,8 +142,9 @@ def GetBotStepMap(): |
B('main-clang-builder', |
H(compile_step, extra_gyp='clang=1 component=shared_library')), |
B('main-clobber', H(compile_step)), |
- B('main-tests-rel', H(std_test_steps), T(std_tests + telemetry_tests, |
- [flakiness_server])), |
+ B('main-tests-rel', H(std_test_steps), |
+ T(std_tests + telemetry_tests + chrome_proxy_tests, |
+ [flakiness_server])), |
B('main-tests', H(std_test_steps), T(std_tests, [flakiness_server])), |
# Other waterfalls |