| 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
|
|
|