| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 | 144 |
| 145 # 2. Android | 145 # 2. Android |
| 146 | 146 |
| 147 # 3. Windows | 147 # 3. Windows |
| 148 | 148 |
| 149 c['builders'].append({'name': 'Win 7 Intel GPU Perf (Xeon)', | 149 c['builders'].append({'name': 'Win 7 Intel GPU Perf (Xeon)', |
| 150 'factory': recipe_factory('chromium'), | 150 'factory': recipe_factory('chromium'), |
| 151 'category': '3windows|builder_testers', | 151 'category': '3windows|builder_testers', |
| 152 }) | 152 }) |
| 153 | 153 |
| 154 c['builders'].append({'name': 'Win Power Perf (DELL)', |
| 155 'factory': recipe_factory('chromium'), |
| 156 'category': '3windows|builder_testers', |
| 157 }) |
| 158 |
| 159 c['builders'].append({'name': 'Win Power Perf (HP)', |
| 160 'factory': recipe_factory('chromium'), |
| 161 'category': '3windows|builder_testers', |
| 162 }) |
| 163 |
| 154 # 4. Mac | 164 # 4. Mac |
| 155 | 165 |
| 156 # 5. Linux | 166 # 5. Linux |
| 157 | 167 |
| 158 # 6. Win Clang | 168 # 6. Win Clang |
| 159 | 169 |
| 160 c['builders'].append({ | 170 c['builders'].append({ |
| 161 'name': 'Win Clang Builder', | 171 'name': 'Win Clang Builder', |
| 162 'factory': annotator_factory.AnnotatorFactory(ActiveMaster).BaseFactory( | 172 'factory': annotator_factory.AnnotatorFactory(ActiveMaster).BaseFactory( |
| 163 recipe='chromium', | 173 recipe='chromium', |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 | 257 |
| 248 ####### PROJECT IDENTITY | 258 ####### PROJECT IDENTITY |
| 249 | 259 |
| 250 # 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 |
| 251 # 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 |
| 252 # 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 |
| 253 # from buildbot HTML pages to your project's home page. | 263 # from buildbot HTML pages to your project's home page. |
| 254 | 264 |
| 255 c['projectName'] = ActiveMaster.project_name | 265 c['projectName'] = ActiveMaster.project_name |
| 256 c['projectURL'] = config.Master.project_url | 266 c['projectURL'] = config.Master.project_url |
| OLD | NEW |