| 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 30 matching lines...) Expand all Loading... |
| 41 def m_remote_run(recipe, **kwargs): | 41 def m_remote_run(recipe, **kwargs): |
| 42 return remote_run_factory.RemoteRunFactory( | 42 return remote_run_factory.RemoteRunFactory( |
| 43 active_master=ActiveMaster, | 43 active_master=ActiveMaster, |
| 44 repository='https://chromium.googlesource.com/chromium/tools/build.git', | 44 repository='https://chromium.googlesource.com/chromium/tools/build.git', |
| 45 recipe=recipe, | 45 recipe=recipe, |
| 46 factory_properties={'path_config': 'kitchen'}, | 46 factory_properties={'path_config': 'kitchen'}, |
| 47 **kwargs) | 47 **kwargs) |
| 48 | 48 |
| 49 ####### DATABASE | 49 ####### DATABASE |
| 50 | 50 |
| 51 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host) | 51 config.DatabaseSetup(c) |
| 52 | 52 |
| 53 | 53 |
| 54 ####### CHANGE SOURCES | 54 ####### CHANGE SOURCES |
| 55 INFRA_REPO_URL = 'https://chromium.googlesource.com/infra/infra' | 55 INFRA_REPO_URL = 'https://chromium.googlesource.com/infra/infra' |
| 56 | 56 |
| 57 c['change_source'].extend([ | 57 c['change_source'].extend([ |
| 58 gitiles_poller.GitilesPoller('https://chromium.googlesource.com/infra/infra'), | 58 gitiles_poller.GitilesPoller('https://chromium.googlesource.com/infra/infra'), |
| 59 ]) | 59 ]) |
| 60 | 60 |
| 61 ####### BUILDERS | 61 ####### BUILDERS |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 sendToInterestedUsers=False, | 256 sendToInterestedUsers=False, |
| 257 extraRecipients=['blink-infra+alerts@google.com', | 257 extraRecipients=['blink-infra+alerts@google.com', |
| 258 'chrome-troopers+alerts@google.com'], | 258 'chrome-troopers+alerts@google.com'], |
| 259 ), | 259 ), |
| 260 ]) | 260 ]) |
| 261 | 261 |
| 262 ####### PROJECT IDENTITY | 262 ####### PROJECT IDENTITY |
| 263 | 263 |
| 264 c['projectName'] = ActiveMaster.project_name | 264 c['projectName'] = ActiveMaster.project_name |
| 265 c['buildbotURL'] = ActiveMaster.buildbot_url | 265 c['buildbotURL'] = ActiveMaster.buildbot_url |
| OLD | NEW |