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

Unified Diff: scripts/slave/recipe_modules/chromium/api.py

Issue 2048333002: V8: Run MB on staging bot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 6 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
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/v8/api.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium/api.py
diff --git a/scripts/slave/recipe_modules/chromium/api.py b/scripts/slave/recipe_modules/chromium/api.py
index 8302d64369989c100d7fd14c297d3b4f1f21fc5b..f1cd89fbe0ab4d6629c5373b32836ad4a174f585 100644
--- a/scripts/slave/recipe_modules/chromium/api.py
+++ b/scripts/slave/recipe_modules/chromium/api.py
@@ -581,7 +581,7 @@ class ChromiumApi(recipe_api.RecipeApi):
def run_mb(self, mastername, buildername, use_goma=True,
mb_config_path=None, isolated_targets=None, name=None,
build_dir=None, android_version_code=None,
- android_version_name=None):
+ android_version_name=None, gyp_script=None):
mb_config_path = (mb_config_path or
self.m.path['checkout'].join('tools', 'mb',
'mb_config.pyl'))
@@ -624,6 +624,9 @@ class ChromiumApi(recipe_api.RecipeApi):
if android_version_name:
args += ['--android-version-name=%s' % android_version_name]
+ if gyp_script:
+ args += ['--gyp-script=%s' % gyp_script]
+
args += [build_dir]
# This runs with an almost-bare env being passed along, so we get a clean
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/v8/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698