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

Unified Diff: scripts/slave/recipes/chromium_drfuzz.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/chromium_drfuzz.py
diff --git a/scripts/slave/recipes/chromium_drfuzz.py b/scripts/slave/recipes/chromium_drfuzz.py
index 36921901be2d3da51e22c6a2c562eda466e0489a..a88647940cc81f7f506c0aed0029096092c8625d 100644
--- a/scripts/slave/recipes/chromium_drfuzz.py
+++ b/scripts/slave/recipes/chromium_drfuzz.py
@@ -8,6 +8,7 @@ from recipe_engine.types import freeze
DEPS = [
'archive',
'depot_tools/bot_update',
+ 'depot_tools/infra_paths',
'chromium',
'file',
'recipe_engine/json',
@@ -51,7 +52,7 @@ def gn_refs(api, step_name, args):
Returns: the list of matched targets.
"""
step_result = api.python(step_name,
- api.path['depot_tools'].join('gn.py'),
+ api.infra_paths['depot_tools'].join('gn.py'),
['--root=%s' % str(api.path['checkout']),
'refs',
str(api.chromium.output_dir),
@@ -92,7 +93,8 @@ def RunSteps(api):
api.chromium.compile(targets=targets)
api.archive.clusterfuzz_archive(
- build_dir=api.path['slave_build'].join('src', 'out', 'Release'),
+ build_dir=api.infra_paths['slave_build'].join(
+ 'src', 'out', 'Release'),
update_properties=checkout_results.json.output['properties'],
gs_bucket=bot_config['upload_bucket'],
archive_prefix='drfuzz',

Powered by Google App Engine
This is Rietveld 408576698