| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # This is the buildmaster config file for the 'chromium.perf' bot. It must | 5 # This is the buildmaster config file for the 'chromium.perf' bot. It must |
| 6 # be installed as 'master.cfg' in your buildmaster's base directory | 6 # be installed as 'master.cfg' in your buildmaster's base directory |
| 7 # (although the filename can be changed with the --basedir option to | 7 # (although the filename can be changed with the --basedir option to |
| 8 # 'mktap buildbot master'). | 8 # 'mktap buildbot master'). |
| 9 | 9 |
| 10 # It has one job: define a dictionary named BuildmasterConfig. This | 10 # It has one job: define a dictionary named BuildmasterConfig. This |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 _AddTester('Win 10 Perf', 'win', num_shards=5) | 208 _AddTester('Win 10 Perf', 'win', num_shards=5) |
| 209 _AddTester('Win 8 Perf', 'win', num_shards=5) | 209 _AddTester('Win 8 Perf', 'win', num_shards=5) |
| 210 _AddTester('Win 7 Perf', 'win', num_shards=5, target_bits=32) | 210 _AddTester('Win 7 Perf', 'win', num_shards=5, target_bits=32) |
| 211 _AddTester('Win 7 x64 Perf', 'win', num_shards=5) | 211 _AddTester('Win 7 x64 Perf', 'win', num_shards=5) |
| 212 _AddTester('Win 7 ATI GPU Perf', 'win', num_shards=5) | 212 _AddTester('Win 7 ATI GPU Perf', 'win', num_shards=5) |
| 213 _AddTester('Win 7 Intel GPU Perf', 'win', num_shards=5) | 213 _AddTester('Win 7 Intel GPU Perf', 'win', num_shards=5) |
| 214 _AddTester('Win 7 Nvidia GPU Perf', 'win', num_shards=5) | 214 _AddTester('Win 7 Nvidia GPU Perf', 'win', num_shards=5) |
| 215 | 215 |
| 216 | 216 |
| 217 _AddTester('Mac 10.11 Perf', 'mac', num_shards=5) | 217 _AddTester('Mac 10.11 Perf', 'mac', num_shards=5) |
| 218 _AddTester('Mac 10.10 Perf', 'mac', num_shards=5) | 218 _AddTester('Mac 10.10 Perf', 'mac') |
| 219 _AddTester('Mac Retina Perf', 'mac', num_shards=5) | 219 _AddTester('Mac Retina Perf', 'mac', num_shards=5) |
| 220 _AddTester('Mac HDD Perf', 'mac', num_shards=5) | 220 _AddTester('Mac HDD Perf', 'mac', num_shards=5) |
| 221 _AddTester('Mac Pro 10.11 Perf', 'mac') | 221 _AddTester('Mac Pro 10.11 Perf', 'mac') |
| 222 _AddTester('Mac Air 10.11 Perf', 'mac') | 222 _AddTester('Mac Air 10.11 Perf', 'mac') |
| 223 | 223 |
| 224 | 224 |
| 225 _AddTester('Linux Perf', 'linux', num_shards=5) | 225 _AddTester('Linux Perf', 'linux', num_shards=5) |
| 226 | 226 |
| 227 # End Builders. | 227 # End Builders. |
| 228 # ------------------------------------------------------------------------------ | 228 # ------------------------------------------------------------------------------ |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 | 287 |
| 288 ####### PROJECT IDENTITY | 288 ####### PROJECT IDENTITY |
| 289 | 289 |
| 290 # the 'projectName' string will be used to describe the project that this | 290 # the 'projectName' string will be used to describe the project that this |
| 291 # buildbot is working on. For example, it is used as the title of the | 291 # buildbot is working on. For example, it is used as the title of the |
| 292 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 292 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 293 # from buildbot HTML pages to your project's home page. | 293 # from buildbot HTML pages to your project's home page. |
| 294 | 294 |
| 295 c['projectName'] = ActiveMaster.project_name | 295 c['projectName'] = ActiveMaster.project_name |
| 296 c['projectURL'] = config.Master.project_url | 296 c['projectURL'] = config.Master.project_url |
| OLD | NEW |