aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/skpbench.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/bots/recipes/skpbench.py')
-rw-r--r--infra/bots/recipes/skpbench.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/infra/bots/recipes/skpbench.py b/infra/bots/recipes/skpbench.py
index 7353625cde..c241f1e60c 100644
--- a/infra/bots/recipes/skpbench.py
+++ b/infra/bots/recipes/skpbench.py
@@ -24,6 +24,8 @@ DEPS = [
'vars',
]
+ADB_BINARY = 'adb.1.0.35'
+
def _run(api, title, *cmd, **kwargs):
with api.context(cwd=api.vars.skia_dir):
@@ -33,7 +35,7 @@ def _run(api, title, *cmd, **kwargs):
def _adb(api, title, *cmd, **kwargs):
if 'infra_step' not in kwargs:
kwargs['infra_step'] = True
- return _run(api, title, 'adb', *cmd, **kwargs)
+ return _run(api, title, ADB_BINARY, *cmd, **kwargs)
def skpbench_steps(api):