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

Unified Diff: scripts/slave/recipes/mojo.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/mojo.py
diff --git a/scripts/slave/recipes/mojo.py b/scripts/slave/recipes/mojo.py
index 203ef78edd463485ab360226ea23071e54e0cb45..891964d43b0ff0dbff01e4269bb549b2ff217eb4 100644
--- a/scripts/slave/recipes/mojo.py
+++ b/scripts/slave/recipes/mojo.py
@@ -5,6 +5,7 @@
DEPS = [
'depot_tools/bot_update',
'depot_tools/gclient',
+ 'depot_tools/infra_paths',
'recipe_engine/json',
'recipe_engine/path',
'recipe_engine/platform',
@@ -43,7 +44,7 @@ def _BuildSteps(api, buildername, is_debug, is_official):
# Disable Goma on Windows as it makes the build much slower (> 1 hour vs
# 15 minutes). Try renabling once we have trybots and the cache would be
# warm.
- goma_dir = api.path['build'].join('goma')
+ goma_dir = api.infra_paths['build'].join('goma')
env = {}
if is_debug:
@@ -67,7 +68,7 @@ def _BuildSteps(api, buildername, is_debug, is_official):
def _DeviceCheckStep(api):
- devices_path = api.m.path['build'].join('site_config', '.known_devices')
+ devices_path = api.m.infra_paths['build'].join('site_config', '.known_devices')
args = [
'--json-output', api.json.output(),
'--restart-usb',

Powered by Google App Engine
This is Rietveld 408576698