| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2014 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 # This is the buildmaster config file for the 'chromium' bot. It must | 8 # This is the buildmaster config file for the 'chromium' bot. It must |
| 9 # be installed as 'master.cfg' in your buildmaster's base directory | 9 # be installed as 'master.cfg' in your buildmaster's base directory |
| 10 # (although the filename can be changed with the --basedir option to | 10 # (although the filename can be changed with the --basedir option to |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 revision_getter = master_utils.ConditionalProperty( | 64 revision_getter = master_utils.ConditionalProperty( |
| 65 lambda build: build.getProperty('revision'), | 65 lambda build: build.getProperty('revision'), |
| 66 WithProperties('%(revision)s'), | 66 WithProperties('%(revision)s'), |
| 67 'master') | 67 'master') |
| 68 | 68 |
| 69 def m_remote_run_chromium_src(recipe, **kwargs): | 69 def m_remote_run_chromium_src(recipe, **kwargs): |
| 70 kwargs.setdefault('revision', revision_getter) | 70 kwargs.setdefault('revision', revision_getter) |
| 71 return remote_run_factory.RemoteRunFactory( | 71 return remote_run_factory.RemoteRunFactory( |
| 72 active_master=ActiveMaster, | 72 active_master=ActiveMaster, |
| 73 repository='https://chromium.googlesource.com/chromium/src.git', | 73 repository='https://chromium.googlesource.com/chromium/tools/build.git', |
| 74 recipe=recipe, | 74 recipe=recipe, |
| 75 factory_properties={'path_config': 'kitchen'}, | 75 factory_properties={'path_config': 'kitchen'}, |
| 76 use_gitiles=True, | 76 use_gitiles=True, |
| 77 **kwargs) | 77 **kwargs) |
| 78 | 78 |
| 79 | 79 |
| 80 # ------------------------------------------------------------------------------ | 80 # ------------------------------------------------------------------------------ |
| 81 # Change Sources. | 81 # Change Sources. |
| 82 | 82 |
| 83 # Polls config.Master.trunk_url for changes | 83 # Polls config.Master.trunk_url for changes |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 ####### PROJECT IDENTITY | 262 ####### PROJECT IDENTITY |
| 263 | 263 |
| 264 # the 'projectName' string will be used to describe the project that this | 264 # the 'projectName' string will be used to describe the project that this |
| 265 # buildbot is working on. For example, it is used as the title of the | 265 # buildbot is working on. For example, it is used as the title of the |
| 266 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 266 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 267 # from buildbot HTML pages to your project's home page. | 267 # from buildbot HTML pages to your project's home page. |
| 268 | 268 |
| 269 c['projectName'] = ActiveMaster.project_name | 269 c['projectName'] = ActiveMaster.project_name |
| 270 c['projectURL'] = config.Master.project_url | 270 c['projectURL'] = config.Master.project_url |
| 271 c['changeHorizon'] = 6000 | 271 c['changeHorizon'] = 6000 |
| OLD | NEW |