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 29cce1bc720927fe47db318bb93a251bcee89ac9..a6afb86be01944349372384a3c02c29a21066e3f 100755 |
--- a/build/android/buildbot/bb_run_bot.py |
+++ b/build/android/buildbot/bb_run_bot.py |
@@ -117,8 +117,7 @@ def GetBotStepMap(): |
compile_step = ['compile'] |
chrome_proxy_tests = ['chrome_proxy'] |
python_unittests = ['python_unittests'] |
- std_host_tests = ['check_webview_licenses', 'findbugs'] |
- emma_coverage_tests = [x for x in std_host_tests if x is not 'findbugs'] |
+ std_host_tests = ['check_webview_licenses'] |
std_build_steps = ['compile', 'zip_build'] |
std_test_steps = ['extract_build'] |
std_tests = ['ui', 'unit'] |
@@ -164,7 +163,7 @@ def GetBotStepMap(): |
B('fyi-x86-builder-dbg', |
H(compile_step + std_host_tests, experimental, target_arch='ia32')), |
B('fyi-builder-dbg', |
- H(std_build_steps + emma_coverage_tests, experimental, |
+ H(std_build_steps + std_host_tests, experimental, |
extra_gyp='emma_coverage=1')), |
B('x86-builder-dbg', |
H(compile_step + std_host_tests, target_arch='ia32')), |
@@ -175,7 +174,7 @@ def GetBotStepMap(): |
'--coverage-bucket', CHROMIUM_COVERAGE_BUCKET, |
'--cleanup'])), |
B('user-build-fyi-tests-dbg', H(std_test_steps), |
- T(telemetry_tests_user_build)), |
+ T(telemetry_tests_user_build + ['components_browsertests'])), |
B('fyi-component-builder-tests-dbg', |
H(compile_step, extra_gyp='component=shared_library'), |
T(std_tests, ['--experimental', flakiness_server])), |