Index: scripts/slave/recipes/skia/recreate_skps.py |
diff --git a/scripts/slave/recipes/skia/recreate_skps.py b/scripts/slave/recipes/skia/recreate_skps.py |
index 1e3b0e8fd8c552acbbc6cd1cf0ef342b87b569cc..a802fb73dae568a0e4707f309394154341211dd5 100644 |
--- a/scripts/slave/recipes/skia/recreate_skps.py |
+++ b/scripts/slave/recipes/skia/recreate_skps.py |
@@ -11,7 +11,6 @@ from common.skia import global_constants |
DEPS = [ |
'depot_tools/gclient', |
- 'depot_tools/infra_paths', |
'recipe_engine/path', |
'recipe_engine/properties', |
'recipe_engine/python', |
@@ -53,7 +52,7 @@ def RunSteps(api, buildername): |
cwd=api.path['checkout']) |
# Capture the SKPs. |
- cmd = ['python', api.infra_paths['build'].join('scripts', 'slave', 'skia', |
+ cmd = ['python', api.path['build'].join('scripts', 'slave', 'skia', |
'recreate_skps.py'), |
api.path['checkout'], |
api.path['checkout'].join('out', 'Release', 'chrome')] |
@@ -61,7 +60,7 @@ def RunSteps(api, buildername): |
cmd.append('--dry-run') |
api.step('Recreate SKPs', |
cmd=cmd, |
- cwd=api.infra_paths['slave_build'].join('skia'), |
+ cwd=api.path['slave_build'].join('skia'), |
) |
def GenTests(api): |