| 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 16 matching lines...) Expand all Loading... |
| 27 T('chromiumos_rel_trigger') | 27 T('chromiumos_rel_trigger') |
| 28 | 28 |
| 29 # Tests that are single-machine shard-safe. | 29 # Tests that are single-machine shard-safe. |
| 30 sharded_tests = [ | 30 sharded_tests = [ |
| 31 'aura_unittests', | 31 'aura_unittests', |
| 32 'base_unittests', | 32 'base_unittests', |
| 33 'browser_tests', | 33 'browser_tests', |
| 34 'cacheinvalidation_unittests', | 34 'cacheinvalidation_unittests', |
| 35 'cc_unittests', | 35 'cc_unittests', |
| 36 'chromedriver_tests', | 36 'chromedriver_tests', |
| 37 'chromedriver_unittests', |
| 37 'chromedriver2_unittests', | 38 'chromedriver2_unittests', |
| 38 'components_unittests', | 39 'components_unittests', |
| 39 'content_browsertests', | 40 'content_browsertests', |
| 40 'content_unittests', | 41 'content_unittests', |
| 41 'crypto_unittests', | 42 'crypto_unittests', |
| 42 'device_unittests', | 43 'device_unittests', |
| 43 'events_unittests', | 44 'events_unittests', |
| 44 'google_apis_unittests', | 45 'google_apis_unittests', |
| 45 'gpu_unittests', | 46 'gpu_unittests', |
| 46 'jingle_unittests', | 47 'jingle_unittests', |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 target='Debug', | 260 target='Debug', |
| 260 tests=extract_tests(linux_chromeos_tests, 3), | 261 tests=extract_tests(linux_chromeos_tests, 3), |
| 261 factory_properties={'chromeos': 1, | 262 factory_properties={'chromeos': 1, |
| 262 'sharded_tests': sharded_tests, | 263 'sharded_tests': sharded_tests, |
| 263 'generate_gtest_json': True,})) | 264 'generate_gtest_json': True,})) |
| 264 | 265 |
| 265 | 266 |
| 266 | 267 |
| 267 def Update(config, active_master, c): | 268 def Update(config, active_master, c): |
| 268 return helper.Update(c) | 269 return helper.Update(c) |
| OLD | NEW |