| 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') |
| 11 cq_slaves = (range(111, 131) + range(162, 399) + range(427, 453) + | 11 cq_slaves = (range(111, 131) + range(162, 399) + range(427, 453) + |
| 12 range(493, 497) + range(506, 540) + range(590, 600) + | 12 range(493, 497) + range(506, 540) + range(590, 600) + |
| 13 range(621, 651) + range(779, 799) + range(841, 864)) | 13 range(621, 651) + range(779, 799) + range(841, 864)) |
| 14 cq_builders = [ | 14 cq_builders = [ |
| 15 'blimp_linux_dbg', |
| 15 'cast_shell_linux', | 16 'cast_shell_linux', |
| 16 'chromium_presubmit', | 17 'chromium_presubmit', |
| 17 'linux_chromium_archive_rel_ng', | 18 'linux_chromium_archive_rel_ng', |
| 18 'linux_chromium_asan_rel_ng', | 19 'linux_chromium_asan_rel_ng', |
| 19 'linux_chromium_chromeos_asan_rel_ng', | 20 'linux_chromium_chromeos_asan_rel_ng', |
| 20 'linux_chromium_chromeos_compile_dbg_ng', | 21 'linux_chromium_chromeos_compile_dbg_ng', |
| 21 'linux_chromium_chromeos_ozone_rel_ng', | 22 'linux_chromium_chromeos_ozone_rel_ng', |
| 22 'linux_chromium_chromeos_rel_ng', | 23 'linux_chromium_chromeos_rel_ng', |
| 23 'linux_chromium_clobber_rel_ng', | 24 'linux_chromium_clobber_rel_ng', |
| 24 'linux_chromium_compile_dbg_ng', | 25 'linux_chromium_compile_dbg_ng', |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 'builder': ['linux_chromium_browser_side_navigation_rel'], | 128 'builder': ['linux_chromium_browser_side_navigation_rel'], |
| 128 'hostname': 'slave914-c4', | 129 'hostname': 'slave914-c4', |
| 129 'pool': 'linux_chromium_browser_side_navigation_rel', | 130 'pool': 'linux_chromium_browser_side_navigation_rel', |
| 130 } | 131 } |
| 131 ]) | 132 ]) |
| 132 | 133 |
| 133 return result | 134 return result |
| 134 | 135 |
| 135 | 136 |
| 136 slaves = linux() | 137 slaves = linux() |
| OLD | NEW |