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

Unified Diff: scripts/slave/recipe_modules/chromium_android/example.py

Issue 2453683002: [android] Make chromium.gpu.fyi bots use devil adb throughout. (Closed)
Patch Set: 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/recipe_modules/chromium_android/example.py
diff --git a/scripts/slave/recipe_modules/chromium_android/example.py b/scripts/slave/recipe_modules/chromium_android/example.py
index 56ae783b9620e8ae45de15521e8072cf32686eb5..04c6a662a0977fed7ab8d7839e843400b75432e6 100644
--- a/scripts/slave/recipe_modules/chromium_android/example.py
+++ b/scripts/slave/recipe_modules/chromium_android/example.py
@@ -109,6 +109,9 @@ BUILDERS = freeze({
'telemetry_browser_tests_tester': {
'run_telemetry_browser_tests': True,
},
+ 'use_devil_adb': {
+ 'android_apply_config': ['use_devil_adb'],
+ }
})
from recipe_engine.recipe_api import Property
@@ -136,6 +139,9 @@ def RunSteps(api, buildername):
api.chromium.c.env.ADB_VENDOR_KEYS = api.path['build'].join(
'site_config', '.adb_key')
+ for c in config.get('android_apply_config', []):
+ api.chromium_android.apply_config(c)
+
api.chromium_android.init_and_sync(
use_bot_update=False, use_git_cache=config.get('use_git_cache', True))
@@ -179,6 +185,8 @@ def RunSteps(api, buildername):
remove_system_webview=config.get('remove_system_webview', False),
disable_system_chrome=config.get('disable_system_chrome', False))
+ api.chromium_android.common_tests_setup_steps()
+
except api.step.StepFailure as f:
failure = f

Powered by Google App Engine
This is Rietveld 408576698