| 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. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 'cacheinvalidation_unittests', | 21 'cacheinvalidation_unittests', |
| 22 'cc_unittests', | 22 'cc_unittests', |
| 23 'chromedriver2_unittests', | 23 'chromedriver2_unittests', |
| 24 'components_unittests', | 24 'components_unittests', |
| 25 'compositor_unittests', | 25 'compositor_unittests', |
| 26 'content_browsertests', | 26 'content_browsertests', |
| 27 'content_unittests', | 27 'content_unittests', |
| 28 'courgette_unittests', | 28 'courgette_unittests', |
| 29 'crypto_unittests', | 29 'crypto_unittests', |
| 30 'device_unittests', | 30 'device_unittests', |
| 31 'events_unittests', |
| 31 'installer_util_unittests', | 32 'installer_util_unittests', |
| 32 'interactive_ui_tests', | 33 'interactive_ui_tests', |
| 33 'ipc_tests', | 34 'ipc_tests', |
| 34 'jingle_unittests', | 35 'jingle_unittests', |
| 35 'media_unittests', | 36 'media_unittests', |
| 36 'mini_installer_test', | 37 'mini_installer_test', |
| 37 'nacl_integration', | 38 'nacl_integration', |
| 38 'net_unittests', | 39 'net_unittests', |
| 39 'ppapi_unittests', | 40 'ppapi_unittests', |
| 40 'printing_unittests', | 41 'printing_unittests', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 relayhost=config.Master.smtp, | 96 relayhost=config.Master.smtp, |
| 96 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' | 97 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' |
| 97 'revision %(revision)s', | 98 'revision %(revision)s', |
| 98 sheriffs=None, | 99 sheriffs=None, |
| 99 extraRecipients=['nacl-broke@google.com'], | 100 extraRecipients=['nacl-broke@google.com'], |
| 100 lookup=master_utils.FilterDomain(), | 101 lookup=master_utils.FilterDomain(), |
| 101 forgiving_steps=forgiving_steps, | 102 forgiving_steps=forgiving_steps, |
| 102 tree_status_url=None, | 103 tree_status_url=None, |
| 103 public_html='../master.chromium/public_html', | 104 public_html='../master.chromium/public_html', |
| 104 use_getname=True)) | 105 use_getname=True)) |
| OLD | NEW |