OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 from master import master_config | 5 from master import master_config |
6 from master.factory import chromium_factory | 6 from master.factory import chromium_factory |
7 | 7 |
8 defaults = {} | 8 defaults = {} |
9 | 9 |
10 helper = master_config.Helper(defaults) | 10 helper = master_config.Helper(defaults) |
11 B = helper.Builder | 11 B = helper.Builder |
12 F = helper.Factory | 12 F = helper.Factory |
13 T = helper.Triggerable | 13 T = helper.Triggerable |
14 | 14 |
15 def win(): | 15 def win(): |
16 return chromium_factory.ChromiumFactory('src/build', 'win32') | 16 return chromium_factory.ChromiumFactory('src/build', 'win32') |
17 | 17 |
18 defaults['category'] = 'nonlayout' | 18 defaults['category'] = 'nonlayout' |
19 | 19 |
20 # Tests that are single-machine shard-safe. | 20 # Tests that are single-machine shard-safe. |
21 sharded_tests = [ | 21 sharded_tests = [ |
22 'aura_unittests', | 22 'aura_unittests', |
23 'base_unittests', | 23 'base_unittests', |
24 'browser_tests', | 24 'browser_tests', |
25 'cacheinvalidation_unittests', | 25 'cacheinvalidation_unittests', |
26 'cc_unittests', | 26 'cc_unittests', |
27 'chromedriver_tests', | 27 'chromedriver_tests', |
| 28 'chromedriver_unittests', |
28 'chromedriver2_unittests', | 29 'chromedriver2_unittests', |
29 'components_unittests', | 30 'components_unittests', |
30 'content_browsertests', | 31 'content_browsertests', |
31 'content_unittests', | 32 'content_unittests', |
32 'crypto_unittests', | 33 'crypto_unittests', |
33 'device_unittests', | 34 'device_unittests', |
34 'events_unittests', | 35 'events_unittests', |
35 'gpu_unittests', | 36 'gpu_unittests', |
36 'jingle_unittests', | 37 'jingle_unittests', |
37 'media_unittests', | 38 'media_unittests', |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 factory_properties={ | 141 factory_properties={ |
141 'sharded_tests': sharded_tests, | 142 'sharded_tests': sharded_tests, |
142 'start_crash_handler': True, | 143 'start_crash_handler': True, |
143 'generate_gtest_json': True, | 144 'generate_gtest_json': True, |
144 'gclient_env': {'GYP_DEFINES': 'fastbuild=1'}, | 145 'gclient_env': {'GYP_DEFINES': 'fastbuild=1'}, |
145 'blink_config': 'blink', | 146 'blink_config': 'blink', |
146 })) | 147 })) |
147 | 148 |
148 def Update(_config, _active_master, c): | 149 def Update(_config, _active_master, c): |
149 return helper.Update(c) | 150 return helper.Update(c) |
OLD | NEW |