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

Unified Diff: infra/bots/recipe_modules/flavor/xsan_flavor.py

Issue 2209423002: [recipes] Remove build environment vars from default_env (Closed) Base URL: https://skia.googlesource.com/skia.git@merge_buildbot_spec_fix_coverage
Patch Set: [recipes] Remove build environment vars from default_env Created 4 years, 4 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: infra/bots/recipe_modules/flavor/xsan_flavor.py
diff --git a/infra/bots/recipe_modules/flavor/xsan_flavor.py b/infra/bots/recipe_modules/flavor/xsan_flavor.py
index 89169b77c1baba2c25e619fb357d3e0a5d854ff8..b4bff4911d4fcb20f1450f802e37307422072e8f 100644
--- a/infra/bots/recipe_modules/flavor/xsan_flavor.py
+++ b/infra/bots/recipe_modules/flavor/xsan_flavor.py
@@ -26,11 +26,11 @@ class XSanFlavorUtils(default_flavor.DefaultFlavorUtils):
'TSAN': 'thread',
}[self.m.vars.builder_cfg['extra_config'].replace('Swarming', '')]
- def compile(self, target):
+ def compile(self, target, **kwargs):
cmd = [self.m.vars.skia_dir.join('tools', 'xsan_build'),
self._sanitizer, target]
self.m.run(self.m.step, 'build %s' % target, cmd=cmd,
- cwd=self.m.vars.skia_dir)
+ cwd=self.m.vars.skia_dir, **kwargs)
def copy_extra_build_products(self, swarming_out_dir):
# Include msan_out if MSAN.

Powered by Google App Engine
This is Rietveld 408576698