| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright 2014 The Chromium Authors. All rights reserved. | 3 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # See master.experimental/slaves.cfg for documentation. | 7 # See master.experimental/slaves.cfg for documentation. |
| 8 | 8 |
| 9 def linux(): | 9 def linux(): |
| 10 linux_arm_testers = [9] | 10 linux_arm_testers = [9] |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 | 147 |
| 148 | 148 |
| 149 def android(): | 149 def android(): |
| 150 perf_bisect_builders = [726, 727, 728, 729] | 150 perf_bisect_builders = [726, 727, 728, 729] |
| 151 compile_slaves = [ | 151 compile_slaves = [ |
| 152 { | 152 { |
| 153 'master': 'TryServerChromiumLinux', | 153 'master': 'TryServerChromiumLinux', |
| 154 'builder': ['android_clang_dbg_recipe', | 154 'builder': ['android_clang_dbg_recipe', |
| 155 'android_x86_dbg_recipe', | 155 'android_x86_dbg_recipe', |
| 156 'android_arm64_dbg_recipe', | 156 'android_arm64_dbg_recipe', |
| 157 'android_compile_dbg', |
| 157 'android_compile_rel'], | 158 'android_compile_rel'], |
| 158 'hostname': 'slave%d-c4' % i, | 159 'hostname': 'slave%d-c4' % i, |
| 159 'os': 'linux', | 160 'os': 'linux', |
| 160 'version': 'precise', | 161 'version': 'precise', |
| 161 'bits': '64', | 162 'bits': '64', |
| 162 } for i in range(101, 121) + range(453, 492) + range(749, 767) | 163 } for i in range(101, 121) + range(453, 492) + range(749, 767) |
| 163 ] | 164 ] |
| 164 | 165 |
| 165 test_slaves = [ | 166 test_slaves = [ |
| 166 { | 167 { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 185 'os': 'linux', | 186 'os': 'linux', |
| 186 'version': 'precise', | 187 'version': 'precise', |
| 187 'bits': '64', | 188 'bits': '64', |
| 188 } for i in range(520, 540) | 189 } for i in range(520, 540) |
| 189 ] | 190 ] |
| 190 | 191 |
| 191 return compile_slaves + test_slaves + aosp_slaves | 192 return compile_slaves + test_slaves + aosp_slaves |
| 192 | 193 |
| 193 | 194 |
| 194 slaves = linux() + android() | 195 slaves = linux() + android() |
| OLD | NEW |