OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 DEPS = [ | 5 DEPS = [ |
6 'depot_tools/bot_update', | 6 'depot_tools/bot_update', |
7 'chromium', | 7 'chromium', |
8 ] | 8 ] |
9 | 9 |
10 | 10 |
11 BUILDERS = { | 11 BUILDERS = { |
12 'chromium.fyi': { | 12 'chromium.fyi': { |
13 'builders': { | 13 'builders': { |
14 'Chromium Windows Analyze': { | 14 'Chromium Windows Analyze': { |
15 'chromium_config_kwargs': { | 15 'chromium_config_kwargs': { |
16 'BUILD_CONFIG': 'Debug', | 16 'BUILD_CONFIG': 'Debug', |
17 'TARGET_PLATFORM': 'win', | 17 'TARGET_PLATFORM': 'win', |
18 'TARGET_BITS': 32, | 18 'TARGET_BITS': 32, |
19 }, | 19 }, |
20 }, | 20 }, |
21 }, | 21 }, |
22 }, | 22 }, |
23 } | 23 } |
24 | 24 |
25 | 25 |
26 def RunSteps(api): | 26 def RunSteps(api): |
27 api.chromium.configure_bot(BUILDERS, ['win_analyze']) | 27 api.chromium.configure_bot(BUILDERS, ['win_analyze', 'mb']) |
28 | 28 |
29 api.bot_update.ensure_checkout(force=True) | 29 api.bot_update.ensure_checkout(force=True) |
30 | 30 |
31 api.chromium.runhooks() | 31 api.chromium.runhooks() |
32 | 32 |
33 # This is needed to disable building with goma | 33 # This is needed to disable building with goma |
34 api.chromium.c.compile_py.compiler = None | 34 api.chromium.c.compile_py.compiler = None |
35 api.chromium.c.compile_py.goma_dir = None | 35 api.chromium.c.compile_py.goma_dir = None |
36 | 36 |
| 37 api.chromium.run_mb('chromium.fyi', 'Chromium Windows Analyze', |
| 38 use_goma=False) |
| 39 |
37 api.chromium.compile(targets=['chrome'], force_clobber=True) | 40 api.chromium.compile(targets=['chrome'], force_clobber=True) |
38 | 41 |
39 | 42 |
40 def GenTests(api): | 43 def GenTests(api): |
41 for test in api.chromium.gen_tests_for_builders(BUILDERS): | 44 for test in api.chromium.gen_tests_for_builders(BUILDERS): |
42 yield test | 45 yield test |
OLD | NEW |