| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 # used by gatekeeper to determine which steps it should | 120 # used by gatekeeper to determine which steps it should |
| 121 # look for to close the tree. | 121 # look for to close the tree. |
| 122 # | 122 # |
| 123 | 123 |
| 124 # 1. Builders | 124 # 1. Builders |
| 125 | 125 |
| 126 # 2. Android | 126 # 2. Android |
| 127 | 127 |
| 128 c['builders'].append({ | 128 c['builders'].append({ |
| 129 'name': 'Android Galaxy S5 Perf (1)', | 129 'name': 'Android Galaxy S5 Perf (1)', |
| 130 'factory': m_remote_run('android/perf'), | 130 'factory': m_remote_run('chromium'), |
| 131 'category': '2android|builder_testers', | 131 'category': '2android|builder_testers', |
| 132 'triggered': True, | 132 'triggered': True, |
| 133 }) | 133 }) |
| 134 | 134 |
| 135 c['builders'].append({ | 135 c['builders'].append({ |
| 136 'name': 'Android Power Nexus 5X Perf (1)', | 136 'name': 'Android Power Nexus 5X Perf (1)', |
| 137 'factory': m_remote_run('android/perf'), | 137 'factory': m_remote_run('android/perf'), |
| 138 'category': '2android|builder_testers', | 138 'category': '2android|builder_testers', |
| 139 'triggered': True, | 139 'triggered': True, |
| 140 }) | 140 }) |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 ####### PROJECT IDENTITY | 236 ####### PROJECT IDENTITY |
| 237 | 237 |
| 238 # the 'projectName' string will be used to describe the project that this | 238 # the 'projectName' string will be used to describe the project that this |
| 239 # buildbot is working on. For example, it is used as the title of the | 239 # buildbot is working on. For example, it is used as the title of the |
| 240 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 240 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 241 # from buildbot HTML pages to your project's home page. | 241 # from buildbot HTML pages to your project's home page. |
| 242 | 242 |
| 243 c['projectName'] = ActiveMaster.project_name | 243 c['projectName'] = ActiveMaster.project_name |
| 244 c['projectURL'] = config.Master.project_url | 244 c['projectURL'] = config.Master.project_url |
| 245 c['changeHorizon'] = 6000 | 245 c['changeHorizon'] = 6000 |
| OLD | NEW |