| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 optional_builders += [ | 44 optional_builders += [ |
| 45 'linux_arm', | 45 'linux_arm', |
| 46 'linux_chromium_asan_variable', | 46 'linux_chromium_asan_variable', |
| 47 'linux_chromium_cast_variable', | 47 'linux_chromium_cast_variable', |
| 48 'linux_chromium_chromeos_asan_variable', | 48 'linux_chromium_chromeos_asan_variable', |
| 49 'linux_chromium_chromeos_compile_rel_ng', | 49 'linux_chromium_chromeos_compile_rel_ng', |
| 50 'linux_chromium_chromeos_dbg_ng', | 50 'linux_chromium_chromeos_dbg_ng', |
| 51 'linux_chromium_chromeos_msan_rel_ng', | 51 'linux_chromium_chromeos_msan_rel_ng', |
| 52 'linux_chromium_chromeos_variable', | 52 'linux_chromium_chromeos_variable', |
| 53 'linux_chromium_chromeos_variable_chrome', | 53 'linux_chromium_chromeos_variable_chrome', |
| 54 'linux_chromium_clang_upload', | 54 'linux_upload_clang', |
| 55 'linux_chromium_compile_rel_ng', | 55 'linux_chromium_compile_rel_ng', |
| 56 'linux_chromium_dbg_ng', | 56 'linux_chromium_dbg_ng', |
| 57 'linux_chromium_gn_chromeos_variable', | 57 'linux_chromium_gn_chromeos_variable', |
| 58 'linux_chromium_gn_upload', | 58 'linux_chromium_gn_upload', |
| 59 'linux_chromium_msan_rel_ng', | 59 'linux_chromium_msan_rel_ng', |
| 60 'linux_chromium_tsan_rel_ng', | 60 'linux_chromium_tsan_rel_ng', |
| 61 'linux_chromium_practice_rel_ng', | 61 'linux_chromium_practice_rel_ng', |
| 62 'linux_chromium_variable', | 62 'linux_chromium_variable', |
| 63 'linux_chromium_variable_chrome', | 63 'linux_chromium_variable_chrome', |
| 64 'linux_chromium_variable_clobber', | 64 'linux_chromium_variable_clobber', |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 'builder': ['linux_chromium_browser_side_navigation_rel'], | 168 'builder': ['linux_chromium_browser_side_navigation_rel'], |
| 169 'hostname': 'slave914-c4', | 169 'hostname': 'slave914-c4', |
| 170 'pool': 'linux_chromium_browser_side_navigation_rel', | 170 'pool': 'linux_chromium_browser_side_navigation_rel', |
| 171 } | 171 } |
| 172 ]) | 172 ]) |
| 173 | 173 |
| 174 return result | 174 return result |
| 175 | 175 |
| 176 | 176 |
| 177 slaves = linux() | 177 slaves = linux() |
| OLD | NEW |