| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 c['builders'].append({'name': 'Win Builder FYI', | 159 c['builders'].append({'name': 'Win Builder FYI', |
| 160 'factory': m_remote_run_chromium_src('chromium'), | 160 'factory': m_remote_run_chromium_src('chromium'), |
| 161 'category': '3windows|builders', | 161 'category': '3windows|builders', |
| 162 }) | 162 }) |
| 163 | 163 |
| 164 c['builders'].append({'name': 'Win 10 Low-End Perf Tests', | 164 c['builders'].append({'name': 'Win 10 Low-End Perf Tests', |
| 165 'factory': m_remote_run_chromium_src('chromium'), | 165 'factory': m_remote_run_chromium_src('chromium'), |
| 166 'category': '3windows|builder_testers', | 166 'category': '3windows|builder_testers', |
| 167 }) | 167 }) |
| 168 | 168 |
| 169 c['builders'].append({'name': 'Win 10 4 Core Low-End Perf Tests', |
| 170 'factory': m_remote_run_chromium_src('chromium'), |
| 171 'category': '3windows|builder_testers', |
| 172 }) |
| 173 |
| 169 c['builders'].append({'name': 'Win 7 Intel GPU Perf (Xeon)', | 174 c['builders'].append({'name': 'Win 7 Intel GPU Perf (Xeon)', |
| 170 'factory': m_remote_run_chromium_src('chromium'), | 175 'factory': m_remote_run_chromium_src('chromium'), |
| 171 'category': '3windows|builder_testers', | 176 'category': '3windows|builder_testers', |
| 172 }) | 177 }) |
| 173 | 178 |
| 174 c['builders'].append({'name': 'Win Power High-DPI Perf', | 179 c['builders'].append({'name': 'Win Power High-DPI Perf', |
| 175 'factory': m_remote_run_chromium_src('chromium'), | 180 'factory': m_remote_run_chromium_src('chromium'), |
| 176 'category': '3windows|builder_testers', | 181 'category': '3windows|builder_testers', |
| 177 }) | 182 }) |
| 178 | 183 |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 ####### PROJECT IDENTITY | 267 ####### PROJECT IDENTITY |
| 263 | 268 |
| 264 # the 'projectName' string will be used to describe the project that this | 269 # 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 | 270 # 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 | 271 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 267 # from buildbot HTML pages to your project's home page. | 272 # from buildbot HTML pages to your project's home page. |
| 268 | 273 |
| 269 c['projectName'] = ActiveMaster.project_name | 274 c['projectName'] = ActiveMaster.project_name |
| 270 c['projectURL'] = config.Master.project_url | 275 c['projectURL'] = config.Master.project_url |
| 271 c['changeHorizon'] = 6000 | 276 c['changeHorizon'] = 6000 |
| OLD | NEW |