| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright 2015 The Chromium Authors. All rights reserved. | 4 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 import config | 8 import config |
| 9 import master_site_config | 9 import master_site_config |
| 10 | 10 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 'category': '1cron', | 158 'category': '1cron', |
| 159 }, | 159 }, |
| 160 { | 160 { |
| 161 'name': 'recipe-autoroller-public', | 161 'name': 'recipe-autoroller-public', |
| 162 'factory': m_remote_run('recipe_autoroller_public'), | 162 'factory': m_remote_run('recipe_autoroller_public'), |
| 163 'auto_reboot' : True, | 163 'auto_reboot' : True, |
| 164 'category': '1cron', | 164 'category': '1cron', |
| 165 }, | 165 }, |
| 166 { | 166 { |
| 167 'name': 'w3c-test-autoroller', | 167 'name': 'w3c-test-autoroller', |
| 168 'factory': m_remote_run('w3c-test-autoroller'), | 168 'factory': m_remote_run('w3c_test_autoroller'), |
| 169 'auto_reboot' : True, | 169 'auto_reboot' : True, |
| 170 'category': '1cron', | 170 'category': '1cron', |
| 171 }, | 171 }, |
| 172 { | 172 { |
| 173 'name': 'Chromium Linux Codesearch', | 173 'name': 'Chromium Linux Codesearch', |
| 174 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), | 174 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), |
| 175 'category': '2codesearch', | 175 'category': '2codesearch', |
| 176 }, | 176 }, |
| 177 { | 177 { |
| 178 'name': 'ChromiumOS Codesearch', | 178 'name': 'ChromiumOS Codesearch', |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 sendToInterestedUsers=False, | 272 sendToInterestedUsers=False, |
| 273 extraRecipients=['blink-infra+alerts@google.com', | 273 extraRecipients=['blink-infra+alerts@google.com', |
| 274 'chrome-troopers+alerts@google.com'], | 274 'chrome-troopers+alerts@google.com'], |
| 275 ), | 275 ), |
| 276 ]) | 276 ]) |
| 277 | 277 |
| 278 ####### PROJECT IDENTITY | 278 ####### PROJECT IDENTITY |
| 279 | 279 |
| 280 c['projectName'] = ActiveMaster.project_name | 280 c['projectName'] = ActiveMaster.project_name |
| 281 c['buildbotURL'] = ActiveMaster.buildbot_url | 281 c['buildbotURL'] = ActiveMaster.buildbot_url |
| OLD | NEW |