| 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 import DEPS | 9 import DEPS |
| 10 CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX | 10 CHROMIUM_CONFIG_CTX = DEPS['chromium'].CONFIG_CTX |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 for shard_index in xrange(num_host_shards): | 126 for shard_index in xrange(num_host_shards): |
| 127 builder_name = '%s (%d)' % (name, shard_index + 1) | 127 builder_name = '%s (%d)' % (name, shard_index + 1) |
| 128 SPEC['builders'][builder_name] = TestSpec( | 128 SPEC['builders'][builder_name] = TestSpec( |
| 129 'chromium_perf', parent_buildername, perf_id, platform, target_bits, | 129 'chromium_perf', parent_buildername, perf_id, platform, target_bits, |
| 130 shard_index, num_host_shards, num_device_shards) | 130 shard_index, num_host_shards, num_device_shards) |
| 131 | 131 |
| 132 | 132 |
| 133 _AddBuildSpec('Android Builder', 'android', target_bits=32) | 133 _AddBuildSpec('Android Builder', 'android', target_bits=32) |
| 134 _AddBuildSpec('Android arm64 Builder', 'android') | 134 _AddBuildSpec('Android arm64 Builder', 'android') |
| 135 _AddBuildSpec('Win Builder', 'win', target_bits=32) | 135 _AddBuildSpec('Win Builder', 'win', target_bits=32) |
| 136 _AddBuildSpec('Win x64 Builder', 'win') | 136 _AddBuildSpec('Win x64 Builder', 'win', add_to_bisect=True) |
| 137 _AddBuildSpec('Mac Builder', 'mac') | 137 _AddBuildSpec('Mac Builder', 'mac', add_to_bisect=True) |
| 138 _AddBuildSpec('Linux Builder', 'linux', add_to_bisect=True) | 138 _AddBuildSpec('Linux Builder', 'linux', add_to_bisect=True) |
| 139 | 139 |
| 140 | 140 |
| 141 _AddTestSpec('Android Galaxy S5 Perf', 'android-galaxy-s5', 'android', | 141 _AddTestSpec('Android Galaxy S5 Perf', 'android-galaxy-s5', 'android', |
| 142 target_bits=32, num_device_shards=7, num_host_shards=3) | 142 target_bits=32, num_device_shards=7, num_host_shards=3) |
| 143 _AddTestSpec('Android Nexus5 Perf', 'android-nexus5', 'android', | 143 _AddTestSpec('Android Nexus5 Perf', 'android-nexus5', 'android', |
| 144 target_bits=32, num_device_shards=7, num_host_shards=3) | 144 target_bits=32, num_device_shards=7, num_host_shards=3) |
| 145 _AddTestSpec('Android Nexus5X Perf', 'android-nexus5X', 'android', | 145 _AddTestSpec('Android Nexus5X Perf', 'android-nexus5X', 'android', |
| 146 target_bits=32, num_device_shards=7, num_host_shards=3) | 146 target_bits=32, num_device_shards=7, num_host_shards=3) |
| 147 _AddTestSpec('Android Nexus6 Perf', 'android-nexus6', 'android', | 147 _AddTestSpec('Android Nexus6 Perf', 'android-nexus6', 'android', |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 _AddTestSpec('Mac 10.10 Perf', 'chromium-rel-mac10', 'mac', | 179 _AddTestSpec('Mac 10.10 Perf', 'chromium-rel-mac10', 'mac', |
| 180 num_host_shards=5) | 180 num_host_shards=5) |
| 181 _AddTestSpec('Mac Retina Perf', 'chromium-rel-mac-retina', 'mac', | 181 _AddTestSpec('Mac Retina Perf', 'chromium-rel-mac-retina', 'mac', |
| 182 num_host_shards=5) | 182 num_host_shards=5) |
| 183 _AddTestSpec('Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac', | 183 _AddTestSpec('Mac HDD Perf', 'chromium-rel-mac-hdd', 'mac', |
| 184 num_host_shards=5) | 184 num_host_shards=5) |
| 185 | 185 |
| 186 | 186 |
| 187 _AddTestSpec('Linux Perf', 'linux-release', 'linux', | 187 _AddTestSpec('Linux Perf', 'linux-release', 'linux', |
| 188 num_host_shards=5) | 188 num_host_shards=5) |
| OLD | NEW |