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 gatekeeper | 5 from master import gatekeeper |
6 from master import master_utils | 6 from master import master_utils |
7 | 7 |
8 # This is the list of the builder categories and the corresponding critical | 8 # This is the list of the builder categories and the corresponding critical |
9 # steps. If one critical step fails, gatekeeper will close the tree | 9 # steps. If one critical step fails, gatekeeper will close the tree |
10 # automatically. | 10 # automatically. |
11 # Note: don't include 'update scripts' since we can't do much about it when | 11 # Note: don't include 'update scripts' since we can't do much about it when |
12 # it's failing and the tree is still technically fine. | 12 # it's failing and the tree is still technically fine. |
13 chromium_categories_steps = { | 13 chromium_categories_steps = { |
14 '': ['update'], | 14 '': ['update'], |
15 'tester': [ | 15 'tester': [ |
16 'base_unittests', | 16 'base_unittests', |
17 #'browser_tests', | 17 #'browser_tests', |
18 'cacheinvalidation_unittests', | 18 'cacheinvalidation_unittests', |
19 'content_unittests', | 19 'content_unittests', |
20 'courgette_unittests', | 20 'courgette_unittests', |
21 'crypto_unittests', | 21 'crypto_unittests', |
22 'dbus_unittests', | 22 'dbus_unittests', |
23 'gfx_unittests', | |
24 'googleurl_unittests', | 23 'googleurl_unittests', |
25 'installer_util_unittests', | 24 'installer_util_unittests', |
26 #'interactive_ui_tests', | 25 #'interactive_ui_tests', |
27 'ipc_tests', | 26 'ipc_tests', |
28 'jingle_unittests', | 27 'jingle_unittests', |
29 'media_unittests', | 28 'media_unittests', |
30 'mini_installer_test', | 29 'mini_installer_test', |
31 'nacl_integration', | 30 'nacl_integration', |
32 'net_unittests', | 31 'net_unittests', |
33 'printing_unittests', | 32 'printing_unittests', |
34 'remoting_unittests', | 33 'remoting_unittests', |
35 'sbox_integration_tests', | 34 'sbox_integration_tests', |
36 'sbox_unittests', | 35 'sbox_unittests', |
37 'sbox_validation_tests', | 36 'sbox_validation_tests', |
38 'sizes', | 37 'sizes', |
39 'sql_unittests', | 38 'sql_unittests', |
40 'start_crash_handler', | 39 'start_crash_handler', |
41 'sync_unittests', | 40 'sync_unittests', |
42 'test_shell_tests', | 41 'test_shell_tests', |
| 42 'ui_unittests', |
43 'unit_tests', | 43 'unit_tests', |
44 'views_unittests', | 44 'views_unittests', |
45 #'webkit_tests', | 45 #'webkit_tests', |
46 ], | 46 ], |
47 'compile': ['check_deps', 'compile', 'archive_build'], | 47 'compile': ['check_deps', 'compile', 'archive_build'], |
48 'closer': ['BuildTarget'], | 48 'closer': ['BuildTarget'], |
49 } | 49 } |
50 | 50 |
51 exclusions = { | 51 exclusions = { |
52 } | 52 } |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 exclusions=exclusions, | 134 exclusions=exclusions, |
135 relayhost=config.Master.smtp, | 135 relayhost=config.Master.smtp, |
136 subject='Warning ' + subject, | 136 subject='Warning ' + subject, |
137 status_header=warning_header, | 137 status_header=warning_header, |
138 extraRecipients=[], | 138 extraRecipients=[], |
139 lookup=master_utils.FilterDomain(), | 139 lookup=master_utils.FilterDomain(), |
140 forgiving_steps=forgiving_steps, | 140 forgiving_steps=forgiving_steps, |
141 tree_status_url=None, | 141 tree_status_url=None, |
142 sheriffs=['sheriff_aura'], | 142 sheriffs=['sheriff_aura'], |
143 use_getname=True)) | 143 use_getname=True)) |
OLD | NEW |