| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', |
| 65 'linux_chromium_webkit_asan_variable', |
| 66 'linux_chromium_webkit_leak_variable', |
| 67 'linux_chromium_webkit_msan_variable', |
| 68 'linux_chromium_webkit_variable', |
| 65 'linux_deterministic', | 69 'linux_deterministic', |
| 66 'linux_ecs_ozone', | 70 'linux_ecs_ozone', |
| 67 'linux_nacl_sdk', | 71 'linux_nacl_sdk', |
| 68 'linux_nacl_sdk_build', | 72 'linux_nacl_sdk_build', |
| 69 'linux_optional_gpu_tests_rel', | 73 'linux_optional_gpu_tests_rel', |
| 70 'linux_site_isolation', | 74 'linux_site_isolation', |
| 71 'linux_valgrind', | 75 'linux_valgrind', |
| 72 ] | 76 ] |
| 73 | 77 |
| 74 optional_32_slaves = [897] | 78 optional_32_slaves = [897] |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 'builder': ['linux_chromium_browser_side_navigation_rel'], | 169 'builder': ['linux_chromium_browser_side_navigation_rel'], |
| 166 'hostname': 'slave914-c4', | 170 'hostname': 'slave914-c4', |
| 167 'pool': 'linux_chromium_browser_side_navigation_rel', | 171 'pool': 'linux_chromium_browser_side_navigation_rel', |
| 168 } | 172 } |
| 169 ]) | 173 ]) |
| 170 | 174 |
| 171 return result | 175 return result |
| 172 | 176 |
| 173 | 177 |
| 174 slaves = linux() | 178 slaves = linux() |
| OLD | NEW |