| Index: scripts/slave/recipes/bisection/android_bisect.py
|
| diff --git a/scripts/slave/recipes/bisection/android_bisect.py b/scripts/slave/recipes/bisection/android_bisect.py
|
| index db94f2c1147683d3fe046e6ece82db8e38298533..de0f94946adbfbdc7b9e33156228ba2cc883d169 100644
|
| --- a/scripts/slave/recipes/bisection/android_bisect.py
|
| +++ b/scripts/slave/recipes/bisection/android_bisect.py
|
| @@ -5,6 +5,7 @@
|
| from recipe_engine.types import freeze
|
|
|
| DEPS = [
|
| + 'build/adb',
|
| 'auto_bisect',
|
| 'bisect_tester',
|
| 'depot_tools/bot_update',
|
| @@ -15,6 +16,7 @@ DEPS = [
|
| 'recipe_engine/json',
|
| 'recipe_engine/path',
|
| 'recipe_engine/properties',
|
| + 'recipe_engine/python',
|
| 'recipe_engine/raw_io',
|
| 'recipe_engine/step',
|
| ]
|
| @@ -118,6 +120,8 @@ def RunSteps(api, mastername, buildername):
|
| bot_db = api.chromium_tests.create_bot_db_from_master_dict(mastername,
|
| master_dict)
|
|
|
| + api.chromium_android.use_devil_adb()
|
| +
|
| api.auto_bisect.start_try_job(api, update_step=update_step, bot_db=bot_db,
|
| do_not_nest_wait_for_revision=True)
|
|
|
|
|