| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 | 257 |
| 258 ####### PROJECT IDENTITY | 258 ####### PROJECT IDENTITY |
| 259 | 259 |
| 260 # the 'projectName' string will be used to describe the project that this | 260 # the 'projectName' string will be used to describe the project that this |
| 261 # buildbot is working on. For example, it is used as the title of the | 261 # buildbot is working on. For example, it is used as the title of the |
| 262 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 262 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 263 # from buildbot HTML pages to your project's home page. | 263 # from buildbot HTML pages to your project's home page. |
| 264 | 264 |
| 265 c['projectName'] = ActiveMaster.project_name | 265 c['projectName'] = ActiveMaster.project_name |
| 266 c['projectURL'] = config.Master.project_url | 266 c['projectURL'] = config.Master.project_url |
| 267 c['changeHorizon'] = 6000 |
| OLD | NEW |