Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(470)

Unified Diff: scripts/slave/recipes/bisection/android_bisect.py

Issue 2447633003: [android bisect] use devil's version of adb in bisect. (Closed)
Patch Set: Move to api.chromium_android + also handle android_bisect_staging Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)

Powered by Google App Engine
This is Rietveld 408576698