| 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 from buildbot.process.properties import WithProperties | 8 from buildbot.process.properties import WithProperties |
| 9 from buildbot.scheduler import Nightly | 9 from buildbot.scheduler import Nightly |
| 10 from buildbot.scheduler import Triggerable | 10 from buildbot.scheduler import Triggerable |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 | 48 |
| 49 ####### FACTORIES | 49 ####### FACTORIES |
| 50 | 50 |
| 51 F = annotator_factory.AnnotatorFactory().BaseFactory | 51 F = annotator_factory.AnnotatorFactory().BaseFactory |
| 52 | 52 |
| 53 def m_remote_run_chromium_src(recipe, **kwargs): | 53 def m_remote_run_chromium_src(recipe, **kwargs): |
| 54 return remote_run_factory.RemoteRunFactory( | 54 return remote_run_factory.RemoteRunFactory( |
| 55 active_master=ActiveMaster, | 55 active_master=ActiveMaster, |
| 56 repository='https://chromium.googlesource.com/chromium/src.git', | 56 repository='https://chromium.googlesource.com/chromium/tools/build.git', |
| 57 recipe=recipe, | 57 recipe=recipe, |
| 58 factory_properties={'path_config': 'kitchen'}, | 58 factory_properties={'path_config': 'kitchen'}, |
| 59 use_gitiles=True, | 59 use_gitiles=True, |
| 60 **kwargs) | 60 **kwargs) |
| 61 | 61 |
| 62 | 62 |
| 63 ####### BUILDER SPECS | 63 ####### BUILDER SPECS |
| 64 | 64 |
| 65 CATEGORY_RELEASE = '1Release|release' | 65 CATEGORY_RELEASE = '1Release|release' |
| 66 CATEGORY_LAYOUT = '2Layout|chromium' | 66 CATEGORY_LAYOUT = '2Layout|chromium' |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 mail_notifier_cfg.Update(config, ActiveMaster, c) | 307 mail_notifier_cfg.Update(config, ActiveMaster, c) |
| 308 | 308 |
| 309 # Adjust the buildCaches to be 3x the number of slaves per builder. | 309 # Adjust the buildCaches to be 3x the number of slaves per builder. |
| 310 c['autoBuildCacheRatio'] = 3 | 310 c['autoBuildCacheRatio'] = 3 |
| 311 | 311 |
| 312 | 312 |
| 313 ####### PROJECT IDENTITY | 313 ####### PROJECT IDENTITY |
| 314 | 314 |
| 315 c['projectName'] = ActiveMaster.project_name | 315 c['projectName'] = ActiveMaster.project_name |
| 316 c['projectURL'] = config.Master.project_url | 316 c['projectURL'] = config.Master.project_url |
| OLD | NEW |