Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(268)

Side by Side Diff: masters/master.chromium.fyi/master_win_asan_cfg.py

Issue 107413007: Add new accessibility_unittests target to "try" and "fyi" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: tryserver and fyi only Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698