| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import collections | 5 import collections |
| 6 | 6 |
| 7 from . import steps | 7 from . import steps |
| 8 | 8 |
| 9 | 9 |
| 10 _builders = collections.defaultdict(dict) | 10 _builders = collections.defaultdict(dict) |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 for shard_index in xrange(num_host_shards): | 117 for shard_index in xrange(num_host_shards): |
| 118 builder_name = '%s (%d)' % (name, shard_index + 1) | 118 builder_name = '%s (%d)' % (name, shard_index + 1) |
| 119 SPEC['builders'][builder_name] = _TestSpec( | 119 SPEC['builders'][builder_name] = _TestSpec( |
| 120 'chromium_perf', parent_builder, perf_id, platform, target_bits, | 120 'chromium_perf', parent_builder, perf_id, platform, target_bits, |
| 121 max_battery_temp, shard_index, num_host_shards, num_device_shards) | 121 max_battery_temp, shard_index, num_host_shards, num_device_shards) |
| 122 | 122 |
| 123 | 123 |
| 124 _AddBuildSpec('Android Builder', 'android', target_bits=32) | 124 _AddBuildSpec('Android Builder', 'android', target_bits=32) |
| 125 _AddBuildSpec('Android arm64 Builder', 'android') | 125 _AddBuildSpec('Android arm64 Builder', 'android') |
| 126 _AddBuildSpec('Win Builder', 'win', target_bits=32) | 126 _AddBuildSpec('Win Builder', 'win', target_bits=32) |
| 127 _AddBuildSpec('Win x64 Builder', 'win') | 127 _AddBuildSpec('Win x64 Builder', 'win', add_to_bisect=True) |
| 128 _AddBuildSpec('Mac Builder', 'mac') | 128 _AddBuildSpec('Mac Builder', 'mac', add_to_bisect=True) |
| 129 _AddBuildSpec('Linux Builder', 'linux', add_to_bisect=True) | 129 _AddBuildSpec('Linux Builder', 'linux', add_to_bisect=True) |
| 130 | 130 |
| 131 | 131 |
| 132 _AddTestSpec('Android Galaxy S5 Perf', 'android-galaxy-s5', 'android', | 132 _AddTestSpec('Android Galaxy S5 Perf', 'android-galaxy-s5', 'android', |
| 133 target_bits=32, num_device_shards=7, num_host_shards=3) | 133 target_bits=32, num_device_shards=7, num_host_shards=3) |
| 134 _AddTestSpec('Android Nexus5 Perf', 'android-nexus5', 'android', | 134 _AddTestSpec('Android Nexus5 Perf', 'android-nexus5', 'android', |
| 135 target_bits=32, num_device_shards=7, num_host_shards=3) | 135 target_bits=32, num_device_shards=7, num_host_shards=3) |
| 136 _AddTestSpec('Android Nexus5X Perf', 'android-nexus5X', 'android', | 136 _AddTestSpec('Android Nexus5X Perf', 'android-nexus5X', 'android', |
| 137 target_bits=32, num_device_shards=7, num_host_shards=3) | 137 target_bits=32, num_device_shards=7, num_host_shards=3) |
| 138 _AddTestSpec('Android Nexus6 Perf', 'android-nexus6', 'android', | 138 _AddTestSpec('Android Nexus6 Perf', 'android-nexus6', 'android', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 168 _AddTestSpec('Mac 10.10 Perf', 'chromium-rel-mac10', 'mac', | 168 _AddTestSpec('Mac 10.10 Perf', 'chromium-rel-mac10', 'mac', |
| 169 num_host_shards=5) | 169 num_host_shards=5) |
| 170 _AddTestSpec('Mac Retina Perf', 'chromium-rel-mac-retina', 'mac', | 170 _AddTestSpec('Mac Retina Perf', 'chromium-rel-mac-retina', 'mac', |
| 171 num_host_shards=5) | 171 num_host_shards=5) |
| 172 _AddTestSpec('Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac', | 172 _AddTestSpec('Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac', |
| 173 num_host_shards=5) | 173 num_host_shards=5) |
| 174 | 174 |
| 175 | 175 |
| 176 _AddTestSpec('Linux Perf', 'linux-release', 'linux', | 176 _AddTestSpec('Linux Perf', 'linux-release', 'linux', |
| 177 num_host_shards=5) | 177 num_host_shards=5) |
| OLD | NEW |