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) |
(...skipping 13 matching lines...) Expand all Loading... |
24 return chromium_factory.ChromiumFactory('src/out', 'darwin') | 24 return chromium_factory.ChromiumFactory('src/out', 'darwin') |
25 | 25 |
26 # Tests that are single-machine shard-safe. | 26 # Tests that are single-machine shard-safe. |
27 sharded_tests = [ | 27 sharded_tests = [ |
28 'aura_unittests', | 28 'aura_unittests', |
29 'base_unittests', | 29 'base_unittests', |
30 'browser_tests', | 30 'browser_tests', |
31 'cacheinvalidation_unittests', | 31 'cacheinvalidation_unittests', |
32 'cc_unittests', | 32 'cc_unittests', |
33 'chromedriver_tests', | 33 'chromedriver_tests', |
| 34 'chromedriver_unittests', |
34 'chromedriver2_unittests', | 35 'chromedriver2_unittests', |
35 'components_unittests', | 36 'components_unittests', |
36 'content_browsertests', | 37 'content_browsertests', |
37 'content_unittests', | 38 'content_unittests', |
38 'crypto_unittests', | 39 'crypto_unittests', |
39 'device_unittests', | 40 'device_unittests', |
40 'google_apis_unittests', | 41 'google_apis_unittests', |
41 'gpu_unittests', | 42 'gpu_unittests', |
42 'jingle_unittests', | 43 'jingle_unittests', |
43 'media_unittests', | 44 'media_unittests', |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 notify_on_missing=True) | 94 notify_on_missing=True) |
94 F('rel_unit_1', mac_tester().ChromiumFactory( | 95 F('rel_unit_1', mac_tester().ChromiumFactory( |
95 slave_type='Tester', | 96 slave_type='Tester', |
96 build_url=rel_archive, | 97 build_url=rel_archive, |
97 tests=[ | 98 tests=[ |
98 'app_list_unittests', | 99 'app_list_unittests', |
99 'base_unittests', | 100 'base_unittests', |
100 'browser_tests', | 101 'browser_tests', |
101 'cacheinvalidation_unittests', | 102 'cacheinvalidation_unittests', |
102 'cc_unittests', | 103 'cc_unittests', |
| 104 'chromedriver_unittests', |
103 'chromedriver2_unittests', | 105 'chromedriver2_unittests', |
104 'content_browsertests', | 106 'content_browsertests', |
105 'crypto_unittests', | 107 'crypto_unittests', |
106 'googleurl', | 108 'googleurl', |
107 'gpu', | 109 'gpu', |
108 'interactive_ui_tests', | 110 'interactive_ui_tests', |
109 'jingle', | 111 'jingle', |
110 'media', | 112 'media', |
111 'nacl_integration', | 113 'nacl_integration', |
112 'ppapi_unittests', | 114 'ppapi_unittests', |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 B('Mac 10.6 Tests (dbg)(1)', 'dbg_unit_1', 'testers', 'mac_dbg_trigger', | 212 B('Mac 10.6 Tests (dbg)(1)', 'dbg_unit_1', 'testers', 'mac_dbg_trigger', |
211 notify_on_missing=True) | 213 notify_on_missing=True) |
212 F('dbg_unit_1', mac_tester().ChromiumFactory( | 214 F('dbg_unit_1', mac_tester().ChromiumFactory( |
213 slave_type='Tester', | 215 slave_type='Tester', |
214 build_url=dbg_archive, | 216 build_url=dbg_archive, |
215 target='Debug', | 217 target='Debug', |
216 tests=[ | 218 tests=[ |
217 'browser_tests', | 219 'browser_tests', |
218 'cacheinvalidation_unittests', | 220 'cacheinvalidation_unittests', |
219 'cc_unittests', | 221 'cc_unittests', |
| 222 'chromedriver_unittests', |
220 'chromedriver2_unittests', | 223 'chromedriver2_unittests', |
221 'content_browsertests', | 224 'content_browsertests', |
222 'crypto_unittests', | 225 'crypto_unittests', |
223 'googleurl', | 226 'googleurl', |
224 'gpu', | 227 'gpu', |
225 'jingle', | 228 'jingle', |
226 'nacl_integration', | 229 'nacl_integration', |
227 'ppapi_unittests', | 230 'ppapi_unittests', |
228 'printing', | 231 'printing', |
229 'remoting', | 232 'remoting', |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 'test_platform': 'ios-simulator', | 351 'test_platform': 'ios-simulator', |
349 'gclient_deps': 'ios', | 352 'gclient_deps': 'ios', |
350 'gclient_env': { | 353 'gclient_env': { |
351 'GYP_DEFINES': 'component=static_library OS=ios chromium_ios_signing=0', | 354 'GYP_DEFINES': 'component=static_library OS=ios chromium_ios_signing=0', |
352 'GYP_GENERATOR_FLAGS': 'xcode_project_version=3.2', | 355 'GYP_GENERATOR_FLAGS': 'xcode_project_version=3.2', |
353 }, | 356 }, |
354 })) | 357 })) |
355 | 358 |
356 def Update(config, active_master, c): | 359 def Update(config, active_master, c): |
357 return helper.Update(c) | 360 return helper.Update(c) |
OLD | NEW |