| 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 from master.factory import chromeos_factory | 7 from master.factory import chromeos_factory |
| 8 | 8 |
| 9 defaults = {} | 9 defaults = {} |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 'linux') | 36 'linux') |
| 37 | 37 |
| 38 # Tests that are single-machine shard-safe. | 38 # Tests that are single-machine shard-safe. |
| 39 sharded_tests = [ | 39 sharded_tests = [ |
| 40 'aura_unittests', | 40 'aura_unittests', |
| 41 'base_unittests', | 41 'base_unittests', |
| 42 'browser_tests', | 42 'browser_tests', |
| 43 'cacheinvalidation_unittests', | 43 'cacheinvalidation_unittests', |
| 44 'cc_unittests', | 44 'cc_unittests', |
| 45 'chromedriver_tests', | 45 'chromedriver_tests', |
| 46 'chromedriver_unittests', |
| 46 'chromedriver2_unittests', | 47 'chromedriver2_unittests', |
| 47 'components_unittests', | 48 'components_unittests', |
| 48 'content_browsertests', | 49 'content_browsertests', |
| 49 'content_unittests', | 50 'content_unittests', |
| 50 'crypto_unittests', | 51 'crypto_unittests', |
| 51 'device_unittests', | 52 'device_unittests', |
| 52 'events_unittests', | 53 'events_unittests', |
| 53 'gpu_unittests', | 54 'gpu_unittests', |
| 54 'jingle_unittests', | 55 'jingle_unittests', |
| 55 'media_unittests', | 56 'media_unittests', |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 gatekeeper='crosasantest', | 202 gatekeeper='crosasantest', |
| 202 scheduler='chromeos_asan_rel', | 203 scheduler='chromeos_asan_rel', |
| 203 notify_on_missing=True) | 204 notify_on_missing=True) |
| 204 F('amd64_asan', chromeos_factory.CbuildbotFactory( | 205 F('amd64_asan', chromeos_factory.CbuildbotFactory( |
| 205 buildroot='/b/cbuild.amd64.asan', | 206 buildroot='/b/cbuild.amd64.asan', |
| 206 pass_revision=True, | 207 pass_revision=True, |
| 207 params='amd64-generic-tot-asan-informational').get_factory()) | 208 params='amd64-generic-tot-asan-informational').get_factory()) |
| 208 | 209 |
| 209 def Update(config, active_master, c): | 210 def Update(config, active_master, c): |
| 210 return helper.Update(c) | 211 return helper.Update(c) |
| OLD | NEW |