Chromium Code Reviews| 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 18 matching lines...) Expand all Loading... | |
| 29 'cacheinvalidation_unittests', | 29 'cacheinvalidation_unittests', |
| 30 'cc_unittests', | 30 'cc_unittests', |
| 31 'chromedriver_tests', | 31 'chromedriver_tests', |
| 32 'chromedriver2_unittests', | 32 'chromedriver2_unittests', |
| 33 'components_unittests', | 33 'components_unittests', |
| 34 'content_browsertests', | 34 'content_browsertests', |
| 35 'content_unittests', | 35 'content_unittests', |
| 36 'crypto_unittests', | 36 'crypto_unittests', |
| 37 'device_unittests', | 37 'device_unittests', |
| 38 'events_unittests', | 38 'events_unittests', |
| 39 'google_apis_unittests', | |
| 39 'gpu_unittests', | 40 'gpu_unittests', |
| 40 'jingle_unittests', | 41 'jingle_unittests', |
| 41 'media_unittests', | 42 'media_unittests', |
| 42 'net_unittests', | 43 'net_unittests', |
| 43 'ppapi_unittests', | 44 'ppapi_unittests', |
| 44 'printing_unittests', | 45 'printing_unittests', |
| 45 'remoting_unittests', | 46 'remoting_unittests', |
| 46 # http://crbug.com/157234 | 47 # http://crbug.com/157234 |
| 47 #'sync_integration_tests', | 48 #'sync_integration_tests', |
| 48 'sync_unit_tests', | 49 'sync_unit_tests', |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 217 target='Release_x64', | 218 target='Release_x64', |
| 218 build_url=rel_x64_archive, | 219 build_url=rel_x64_archive, |
| 219 tests=[ | 220 tests=[ |
| 220 'browser_tests', | 221 'browser_tests', |
| 221 'cacheinvalidation_unittests', | 222 'cacheinvalidation_unittests', |
| 222 'cc_unittests', | 223 'cc_unittests', |
| 223 'chromedriver2_unittests', | 224 'chromedriver2_unittests', |
| 224 'content_browsertests', | 225 'content_browsertests', |
| 225 'courgette_unittests', | 226 'courgette_unittests', |
| 226 'crypto_unittests', | 227 'crypto_unittests', |
| 228 'google_apis_unittests', | |
|
ghost stip (do not use)
2013/12/02 23:16:15
also add to rel_unit_1, 2 or 3 depending on which
tfarina
2013/12/03 21:37:11
added to rel_unit_3
| |
| 227 'gpu_unittests', | 229 'gpu_unittests', |
| 228 'installer_util_unittests', | 230 'installer_util_unittests', |
| 229 'interactive_ui_tests', | 231 'interactive_ui_tests', |
| 230 'jingle_unittests', | 232 'jingle_unittests', |
| 231 'media_unittests', | 233 'media_unittests', |
| 232 'ppapi_unittests', | 234 'ppapi_unittests', |
| 233 'printing_unittests', | 235 'printing_unittests', |
| 234 'remoting_unittests', | 236 'remoting_unittests', |
| 235 'sbox_integration_tests', | 237 'sbox_integration_tests', |
| 236 'sbox_unittests', | 238 'sbox_unittests', |
| (...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 528 ], | 530 ], |
| 529 factory_properties={ | 531 factory_properties={ |
| 530 'generate_gtest_json': True, | 532 'generate_gtest_json': True, |
| 531 'process_dumps': True, | 533 'process_dumps': True, |
| 532 'sharded_tests': sharded_tests, | 534 'sharded_tests': sharded_tests, |
| 533 'start_crash_handler': True, | 535 'start_crash_handler': True, |
| 534 })) | 536 })) |
| 535 | 537 |
| 536 def Update(config, active_master, c): | 538 def Update(config, active_master, c): |
| 537 return helper.Update(c) | 539 return helper.Update(c) |
| OLD | NEW |