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

Unified Diff: scripts/slave/recipes/skia/recreate_skps.py

Issue 1917243002: Revert "build: roll infra_paths changes" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 8 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/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):

Powered by Google App Engine
This is Rietveld 408576698