| Index: build/android/buildbot/bb_host_steps.py
|
| diff --git a/build/android/buildbot/bb_host_steps.py b/build/android/buildbot/bb_host_steps.py
|
| index 4041ccd726965c5ed4130e6bcdebe2a7e84e6eda..6630321d82904ef6ed538eaa6d911a3b73dcc358 100755
|
| --- a/build/android/buildbot/bb_host_steps.py
|
| +++ b/build/android/buildbot/bb_host_steps.py
|
| @@ -14,7 +14,7 @@ from pylib import constants
|
|
|
|
|
| SLAVE_SCRIPTS_DIR = os.path.join(bb_utils.BB_BUILD_DIR, 'scripts', 'slave')
|
| -VALID_HOST_TESTS = set(['check_webview_licenses', 'findbugs'])
|
| +VALID_HOST_TESTS = set(['check_webview_licenses'])
|
|
|
| DIR_BUILD_ROOT = os.path.dirname(constants.DIR_SOURCE_ROOT)
|
|
|
| @@ -78,17 +78,6 @@ def ExtractBuild(options):
|
| + bb_utils.EncodeProperties(options), cwd=DIR_BUILD_ROOT)
|
|
|
|
|
| -def FindBugs(options):
|
| - bb_annotations.PrintNamedStep('findbugs')
|
| - build_type = []
|
| - if options.target == 'Release':
|
| - build_type = ['--release-build']
|
| - RunCmd([SrcPath('build', 'android', 'findbugs_diff.py')] + build_type)
|
| - RunCmd([SrcPath(
|
| - 'tools', 'android', 'findbugs_plugin', 'test',
|
| - 'run_findbugs_plugin_tests.py')] + build_type)
|
| -
|
| -
|
| def BisectPerfRegression(options):
|
| args = []
|
| if options.extra_src:
|
| @@ -105,7 +94,6 @@ def GetHostStepCmds():
|
| ('extract_build', ExtractBuild),
|
| ('check_webview_licenses', CheckWebViewLicenses),
|
| ('bisect_perf_regression', BisectPerfRegression),
|
| - ('findbugs', FindBugs),
|
| ('zip_build', ZipBuild)
|
| ]
|
|
|
|
|