| 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 chromeos_boards = ('x86-generic', 'amd64-generic', 'daisy') | 10 chromeos_boards = ('x86-generic', 'amd64-generic', 'daisy') |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 'master': 'TryServerChromiumLinux', | 181 'master': 'TryServerChromiumLinux', |
| 182 'os': 'linux', | 182 'os': 'linux', |
| 183 'version': 'precise', | 183 'version': 'precise', |
| 184 'bits': '64', | 184 'bits': '64', |
| 185 'builder': ['linux_layout_tests_slimming_paint_v2'], | 185 'builder': ['linux_layout_tests_slimming_paint_v2'], |
| 186 'hostname': 'slave775-c4', | 186 'hostname': 'slave775-c4', |
| 187 'pool': 'linux_layout_tests_slimming_paint_v2', | 187 'pool': 'linux_layout_tests_slimming_paint_v2', |
| 188 } | 188 } |
| 189 ]) | 189 ]) |
| 190 | 190 |
| 191 # Slaves for linux_chromium_headless_dbg. |
| 192 headless_slaves = [426, 497, 776, 864, 865, 872] + range(1069, 1098) |
| 193 for slave in headless_slaves: |
| 194 result.append({ |
| 195 'master': 'TryServerChromiumLinux', |
| 196 'os': 'linux', |
| 197 'version': 'trusty', |
| 198 'bits': 64, |
| 199 'builder': ['linux_chromium_headless_dbg'], |
| 200 'hostname': 'slave%d-c4' % slave, |
| 201 'pool': 'linux_chromium_headless_dbg', |
| 202 }) |
| 203 |
| 191 return result | 204 return result |
| 192 | 205 |
| 193 | 206 |
| 194 slaves = linux() | 207 slaves = linux() |
| OLD | NEW |