| 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 categories_steps = { | 13 categories_steps = { |
| 14 '': ['update', 'runhooks'], | 14 '': ['update', 'runhooks'], |
| 15 'testers': [ | 15 'testers': [ |
| 16 'app_list_unittets', | 16 'app_list_unittets', |
| 17 'aura_unittests', | 17 'aura_unittests', |
| 18 'base_unittests', | 18 'base_unittests', |
| 19 'browser_tests', | 19 'browser_tests', |
| 20 'cacheinvalidation_unittests', | 20 'cacheinvalidation_unittests', |
| 21 'cc_unittests', | 21 'cc_unittests', |
| 22 'chrome_frame_net_tests', | |
| 23 'chromedriver_unittests', | 22 'chromedriver_unittests', |
| 24 'chromedriver2_unittests', | 23 'chromedriver2_unittests', |
| 25 'components_unittests', | 24 'components_unittests', |
| 26 'compositor_unittests', | 25 'compositor_unittests', |
| 27 'content_browsertests', | 26 'content_browsertests', |
| 28 'content_unittests', | 27 'content_unittests', |
| 29 'courgette_unittests', | 28 'courgette_unittests', |
| 30 'crypto_unittests', | 29 'crypto_unittests', |
| 31 'device_unittests', | 30 'device_unittests', |
| 32 'events_unittests', | 31 'events_unittests', |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 relayhost=config.Master.smtp, | 109 relayhost=config.Master.smtp, |
| 111 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' | 110 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' |
| 112 'revision %(revision)s', | 111 'revision %(revision)s', |
| 113 extraRecipients=[], | 112 extraRecipients=[], |
| 114 lookup=master_utils.FilterDomain(), | 113 lookup=master_utils.FilterDomain(), |
| 115 forgiving_steps=forgiving_steps, | 114 forgiving_steps=forgiving_steps, |
| 116 tree_status_url=None, | 115 tree_status_url=None, |
| 117 sheriffs=['sheriff_android'], | 116 sheriffs=['sheriff_android'], |
| 118 public_html='../master.chromium/public_html', | 117 public_html='../master.chromium/public_html', |
| 119 use_getname=True)) | 118 use_getname=True)) |
| OLD | NEW |