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

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

Issue 1919193002: build: roll infra_paths changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: merge 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 a802fb73dae568a0e4707f309394154341211dd5..1e3b0e8fd8c552acbbc6cd1cf0ef342b87b569cc 100644
--- a/scripts/slave/recipes/skia/recreate_skps.py
+++ b/scripts/slave/recipes/skia/recreate_skps.py
@@ -11,6 +11,7 @@ from common.skia import global_constants
DEPS = [
'depot_tools/gclient',
+ 'depot_tools/infra_paths',
'recipe_engine/path',
'recipe_engine/properties',
'recipe_engine/python',
@@ -52,7 +53,7 @@ def RunSteps(api, buildername):
cwd=api.path['checkout'])
# Capture the SKPs.
- cmd = ['python', api.path['build'].join('scripts', 'slave', 'skia',
+ cmd = ['python', api.infra_paths['build'].join('scripts', 'slave', 'skia',
'recreate_skps.py'),
api.path['checkout'],
api.path['checkout'].join('out', 'Release', 'chrome')]
@@ -60,7 +61,7 @@ def RunSteps(api, buildername):
cmd.append('--dry-run')
api.step('Recreate SKPs',
cmd=cmd,
- cwd=api.path['slave_build'].join('skia'),
+ cwd=api.infra_paths['slave_build'].join('skia'),
)
def GenTests(api):

Powered by Google App Engine
This is Rietveld 408576698