| Index: scripts/slave/recipes/chromium.py
|
| diff --git a/scripts/slave/recipes/chromium.py b/scripts/slave/recipes/chromium.py
|
| index 917049908d09852655d19d6ebfc3641baffe47bf..1b286ee8cf3a628c37afe9dde04ae1af49733de6 100644
|
| --- a/scripts/slave/recipes/chromium.py
|
| +++ b/scripts/slave/recipes/chromium.py
|
| @@ -32,11 +32,15 @@ def GenSteps(api):
|
| api.chromium_tests.configure_build(mastername, buildername)
|
| update_step, master_dict, test_spec = \
|
| api.chromium_tests.prepare_checkout(mastername, buildername)
|
| - api.chromium_tests.compile(mastername, buildername, update_step, master_dict,
|
| - test_spec)
|
| +
|
| tests = api.chromium_tests.tests_for_builder(
|
| mastername, buildername, update_step, master_dict)
|
|
|
| + api.chromium.run_mb_if_necessary(mastername, buildername, tests)
|
| +
|
| + api.chromium_tests.compile(mastername, buildername, update_step, master_dict,
|
| + test_spec)
|
| +
|
| if not tests:
|
| return
|
|
|
|
|