| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 _AddTester('Android Nexus5 Perf', 'android', num_shards=3, target_bits=32) | 177 _AddTester('Android Nexus5 Perf', 'android', num_shards=3, target_bits=32) |
| 178 _AddTester('Android Nexus5X Perf', 'android', num_shards=3) | 178 _AddTester('Android Nexus5X Perf', 'android', num_shards=3) |
| 179 _AddTester('Android Nexus6 Perf', 'android', num_shards=3, target_bits=32) | 179 _AddTester('Android Nexus6 Perf', 'android', num_shards=3, target_bits=32) |
| 180 _AddTester('Android Nexus7v2 Perf', 'android', num_shards=3, target_bits=32) | 180 _AddTester('Android Nexus7v2 Perf', 'android', num_shards=3, target_bits=32) |
| 181 _AddTester('Android Nexus9 Perf', 'android', num_shards=3) | 181 _AddTester('Android Nexus9 Perf', 'android', num_shards=3) |
| 182 _AddTester('Android One Perf', 'android', num_shards=3, target_bits=32) | 182 _AddTester('Android One Perf', 'android', num_shards=3, target_bits=32) |
| 183 _AddTester('Android Nexus5X WebView Perf', 'android', num_shards=3) | 183 _AddTester('Android Nexus5X WebView Perf', 'android', num_shards=3) |
| 184 | 184 |
| 185 | 185 |
| 186 _AddTester('Win Zenbook Perf', 'win', num_shards=5) | 186 _AddTester('Win Zenbook Perf', 'win', num_shards=5) |
| 187 _AddTester('Win 10 High-DPI Perf', 'win', num_shards=5) |
| 187 _AddTester('Win 10 Perf', 'win', num_shards=5) | 188 _AddTester('Win 10 Perf', 'win', num_shards=5) |
| 188 _AddTester('Win 8 Perf', 'win', num_shards=5) | 189 _AddTester('Win 8 Perf', 'win', num_shards=5) |
| 189 _AddTester('Win 7 Perf', 'win', num_shards=5, target_bits=32) | 190 _AddTester('Win 7 Perf', 'win', num_shards=5, target_bits=32) |
| 190 _AddTester('Win 7 x64 Perf', 'win', num_shards=5) | 191 _AddTester('Win 7 x64 Perf', 'win', num_shards=5) |
| 191 _AddTester('Win 7 ATI GPU Perf', 'win', num_shards=5) | 192 _AddTester('Win 7 ATI GPU Perf', 'win', num_shards=5) |
| 192 _AddTester('Win 7 Intel GPU Perf', 'win', num_shards=5) | 193 _AddTester('Win 7 Intel GPU Perf', 'win', num_shards=5) |
| 193 _AddTester('Win 7 Nvidia GPU Perf', 'win', num_shards=5) | 194 _AddTester('Win 7 Nvidia GPU Perf', 'win', num_shards=5) |
| 194 | 195 |
| 195 | 196 |
| 196 _AddTester('Mac 10.11 Perf', 'mac', num_shards=5) | 197 _AddTester('Mac 10.11 Perf', 'mac', num_shards=5) |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 | 265 |
| 265 ####### PROJECT IDENTITY | 266 ####### PROJECT IDENTITY |
| 266 | 267 |
| 267 # the 'projectName' string will be used to describe the project that this | 268 # the 'projectName' string will be used to describe the project that this |
| 268 # buildbot is working on. For example, it is used as the title of the | 269 # buildbot is working on. For example, it is used as the title of the |
| 269 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 270 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 270 # from buildbot HTML pages to your project's home page. | 271 # from buildbot HTML pages to your project's home page. |
| 271 | 272 |
| 272 c['projectName'] = ActiveMaster.project_name | 273 c['projectName'] = ActiveMaster.project_name |
| 273 c['projectURL'] = config.Master.project_url | 274 c['projectURL'] = config.Master.project_url |
| OLD | NEW |