| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 'chromedriver2_unittests', | 46 'chromedriver2_unittests', |
| 47 'components_unittests', | 47 'components_unittests', |
| 48 'content_browsertests', | 48 'content_browsertests', |
| 49 'content_unittests', | 49 'content_unittests', |
| 50 'crypto_unittests', | 50 'crypto_unittests', |
| 51 'device_unittests', | 51 'device_unittests', |
| 52 'events_unittests', |
| 52 'gpu_unittests', | 53 'gpu_unittests', |
| 53 'jingle_unittests', | 54 'jingle_unittests', |
| 54 'media_unittests', | 55 'media_unittests', |
| 55 'net_unittests', | 56 'net_unittests', |
| 56 'ppapi_unittests', | 57 'ppapi_unittests', |
| 57 'printing_unittests', | 58 'printing_unittests', |
| 58 'remoting_unittests', | 59 'remoting_unittests', |
| 59 'sync_integration_tests', | 60 'sync_integration_tests', |
| 60 'sync_unit_tests', | 61 'sync_unit_tests', |
| 61 'ui_unittests', | 62 'ui_unittests', |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 asan_tests_1 = [ | 123 asan_tests_1 = [ |
| 123 'ash_unittests', | 124 'ash_unittests', |
| 124 'aura', | 125 'aura', |
| 125 'base_unittests', | 126 'base_unittests', |
| 126 'browser_tests', | 127 'browser_tests', |
| 127 'cacheinvalidation_unittests', | 128 'cacheinvalidation_unittests', |
| 128 'chromeos_unittests', | 129 'chromeos_unittests', |
| 129 'compositor', | 130 'compositor', |
| 130 'content_browsertests', | 131 'content_browsertests', |
| 131 'crypto_unittests', | 132 'crypto_unittests', |
| 133 'events', |
| 132 'googleurl', | 134 'googleurl', |
| 133 'gpu', | 135 'gpu', |
| 134 'jingle', | 136 'jingle', |
| 135 'media', | 137 'media', |
| 136 'ppapi_unittests', | 138 'ppapi_unittests', |
| 137 'printing', | 139 'printing', |
| 138 'remoting', | 140 'remoting', |
| 139 'views', | 141 'views', |
| 140 ] | 142 ] |
| 141 | 143 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 gatekeeper='crosasantest', | 199 gatekeeper='crosasantest', |
| 198 scheduler='chromeos_asan_rel', | 200 scheduler='chromeos_asan_rel', |
| 199 notify_on_missing=True) | 201 notify_on_missing=True) |
| 200 F('amd64_asan', chromeos_factory.CbuildbotFactory( | 202 F('amd64_asan', chromeos_factory.CbuildbotFactory( |
| 201 buildroot='/b/cbuild.amd64.asan', | 203 buildroot='/b/cbuild.amd64.asan', |
| 202 pass_revision=True, | 204 pass_revision=True, |
| 203 params='amd64-generic-tot-asan-informational').get_factory()) | 205 params='amd64-generic-tot-asan-informational').get_factory()) |
| 204 | 206 |
| 205 def Update(config, active_master, c): | 207 def Update(config, active_master, c): |
| 206 return helper.Update(c) | 208 return helper.Update(c) |
| OLD | NEW |