| 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 import master_utils | 6 from master import master_utils |
| 7 from master import gatekeeper | 7 from master import gatekeeper |
| 8 from master.factory import chromium_factory | 8 from master.factory import chromium_factory |
| 9 | 9 |
| 10 import config | 10 import config |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 # Triggerable scheduler for the rel asan builder | 33 # Triggerable scheduler for the rel asan builder |
| 34 # | 34 # |
| 35 T('win_asan_dbg_trigger') | 35 T('win_asan_dbg_trigger') |
| 36 | 36 |
| 37 win_asan_archive = master_config.GetArchiveUrl('ChromiumFYI', | 37 win_asan_archive = master_config.GetArchiveUrl('ChromiumFYI', |
| 38 'Win ASAN Builder', | 38 'Win ASAN Builder', |
| 39 'Win_ASAN_Builder', | 39 'Win_ASAN_Builder', |
| 40 'win32') | 40 'win32') |
| 41 | 41 |
| 42 tests_1 = [ | 42 tests_1 = [ |
| 43 'accessibility_unittests', |
| 43 'base_unittests', | 44 'base_unittests', |
| 44 'browser_tests', | 45 'browser_tests', |
| 45 'cacheinvalidation_unittests', | 46 'cacheinvalidation_unittests', |
| 46 'crypto_unittests', | 47 'crypto_unittests', |
| 47 'gpu_unittests', | 48 'gpu_unittests', |
| 48 'jingle_unittests', | 49 'jingle_unittests', |
| 49 'net_unittests', | 50 'net_unittests', |
| 50 'sql_unittests', | 51 'sql_unittests', |
| 51 'ui_unittests', | 52 'ui_unittests', |
| 52 'content_unittests', | 53 'content_unittests', |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 'lkgr': ['compile'] | 170 'lkgr': ['compile'] |
| 170 }, | 171 }, |
| 171 relayhost=update_config.Master.smtp, | 172 relayhost=update_config.Master.smtp, |
| 172 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' | 173 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' |
| 173 'revision %(revision)s', | 174 'revision %(revision)s', |
| 174 sheriffs=None, | 175 sheriffs=None, |
| 175 extraRecipients=['syzygy-team@chromium.org'], | 176 extraRecipients=['syzygy-team@chromium.org'], |
| 176 lookup=master_utils.FilterDomain(), | 177 lookup=master_utils.FilterDomain(), |
| 177 use_getname=True)) | 178 use_getname=True)) |
| 178 return helper.Update(c) | 179 return helper.Update(c) |
| OLD | NEW |