diff options
Diffstat (limited to 'tools/auto_bisect/builder.py')
-rw-r--r-- | tools/auto_bisect/builder.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/auto_bisect/builder.py b/tools/auto_bisect/builder.py index 9a93089..97b01f7 100644 --- a/tools/auto_bisect/builder.py +++ b/tools/auto_bisect/builder.py @@ -145,10 +145,17 @@ class AndroidBuilder(Builder): # TODO(qyearsley): Make this a class method and verify that it works with # a unit test. + # TODO (prasadv): Remove android-chrome-shell target once we confirm there are + # no pending bisect jobs with this in command. # pylint: disable=R0201 def _GetTargets(self): """Returns a list of build targets.""" - return ['chrome_shell_apk', 'cc_perftests_apk', 'android_tools'] + return [ + 'chrome_public_apk', + 'chrome_shell_apk', + 'cc_perftests_apk', + 'android_tools' + ] def Build(self, depot, opts): """Builds the android content shell and other necessary tools. |