Index: infra/bots/recipes/swarm_perf.py |
diff --git a/infra/bots/recipes/swarm_perf.py b/infra/bots/recipes/swarm_perf.py |
index a6c5e27a8aa5c17808ea0d036445e0eec4ae6190..93332b707fc455e470deb7a0c9208ff3915c10e3 100644 |
--- a/infra/bots/recipes/swarm_perf.py |
+++ b/infra/bots/recipes/swarm_perf.py |
@@ -7,12 +7,13 @@ |
DEPS = [ |
+ 'core', |
'recipe_engine/json', |
'recipe_engine/path', |
'recipe_engine/platform', |
'recipe_engine/properties', |
'recipe_engine/raw_io', |
- 'skia', |
+ 'run', |
] |
@@ -31,10 +32,10 @@ TEST_BUILDERS = { |
def RunSteps(api): |
- api.skia.setup() |
- api.skia.perf_steps() |
- api.skia.cleanup_steps() |
- api.skia.check_failure() |
+ api.core.setup() |
+ api.core.perf_steps() |
+ api.core.cleanup_steps() |
+ api.run.check_failure() |
def GenTests(api): |