| 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', 'runhooks'], | 14 '': ['update', 'runhooks'], |
| 15 'tester': [ | 15 'tester': [ |
| 16 'app_list_unittests', | 16 'app_list_unittests', |
| 17 'aura_unit_tests', | 17 'aura_unit_tests', |
| 18 'base_unittests', | 18 'base_unittests', |
| 19 'browser_tests', | 19 'browser_tests', |
| 20 'cacheinvalidation_unittests', | 20 'cacheinvalidation_unittests', |
| 21 'chromeos_unittests', | 21 'chromeos_unittests', |
| 22 'components_unittests', | 22 'components_unittests', |
| 23 'content_browsertests', | 23 'content_browsertests', |
| 24 'content_unittests', | 24 'content_unittests', |
| 25 'courgette_unittests', | 25 'courgette_unittests', |
| 26 'crypto_unittests', | 26 'crypto_unittests', |
| 27 'dbus_unittests', | 27 'dbus_unittests', |
| 28 'device_unittests', | 28 'device_unittests', |
| 29 'google_apis_unittests', |
| 29 'installer_util_unittests', | 30 'installer_util_unittests', |
| 30 'interactive_ui_tests', | 31 'interactive_ui_tests', |
| 31 'ipc_tests', | 32 'ipc_tests', |
| 32 'jingle_unittests', | 33 'jingle_unittests', |
| 33 'media_unittests', | 34 'media_unittests', |
| 34 'message_center_unittests', | 35 'message_center_unittests', |
| 35 'mini_installer_test', | 36 'mini_installer_test', |
| 36 'nacl_integration', | 37 'nacl_integration', |
| 37 'net_unittests', | 38 'net_unittests', |
| 38 'ppapi_unittests', | 39 'ppapi_unittests', |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 relayhost=config.Master.smtp, | 148 relayhost=config.Master.smtp, |
| 148 subject='Warning ' + subject, | 149 subject='Warning ' + subject, |
| 149 status_header=warning_header, | 150 status_header=warning_header, |
| 150 extraRecipients=[], | 151 extraRecipients=[], |
| 151 lookup=master_utils.FilterDomain(), | 152 lookup=master_utils.FilterDomain(), |
| 152 forgiving_steps=forgiving_steps, | 153 forgiving_steps=forgiving_steps, |
| 153 tree_status_url=None, | 154 tree_status_url=None, |
| 154 sheriffs=['sheriff_aura'], | 155 sheriffs=['sheriff_aura'], |
| 155 public_html='../master.chromium/public_html', | 156 public_html='../master.chromium/public_html', |
| 156 use_getname=True)) | 157 use_getname=True)) |
| OLD | NEW |