| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 'linux_chromium_variable_clobber', | 62 'linux_chromium_variable_clobber', |
| 63 'linux_chromium_webkit_asan_variable', | 63 'linux_chromium_webkit_asan_variable', |
| 64 'linux_chromium_webkit_leak_variable', | 64 'linux_chromium_webkit_leak_variable', |
| 65 'linux_chromium_webkit_msan_variable', | 65 'linux_chromium_webkit_msan_variable', |
| 66 'linux_chromium_webkit_variable', | 66 'linux_chromium_webkit_variable', |
| 67 'linux_ecs_ozone', | 67 'linux_ecs_ozone', |
| 68 'linux_nacl_sdk', | 68 'linux_nacl_sdk', |
| 69 'linux_nacl_sdk_build', | 69 'linux_nacl_sdk_build', |
| 70 'linux_optional_gpu_tests_rel', | 70 'linux_optional_gpu_tests_rel', |
| 71 'linux_site_isolation', | 71 'linux_site_isolation', |
| 72 'linux_valgrind', | |
| 73 ] | 72 ] |
| 74 | 73 |
| 75 optional_32_slaves = [897] | 74 optional_32_slaves = [897] |
| 76 optional_32_builders = [ | 75 optional_32_builders = [ |
| 77 'linux_chromium_variable_32', | 76 'linux_chromium_variable_32', |
| 78 'linux_chromium_variable_32_chrome', | 77 'linux_chromium_variable_32_chrome', |
| 79 'linux_chromium_variable_32_clobber', | 78 'linux_chromium_variable_32_clobber', |
| 80 ] | 79 ] |
| 81 | 80 |
| 82 # Super beefy machines. | 81 # Super beefy machines. |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 'builder': ['linux_chromium_browser_side_navigation_rel'], | 172 'builder': ['linux_chromium_browser_side_navigation_rel'], |
| 174 'hostname': 'slave914-c4', | 173 'hostname': 'slave914-c4', |
| 175 'pool': 'linux_chromium_browser_side_navigation_rel', | 174 'pool': 'linux_chromium_browser_side_navigation_rel', |
| 176 } | 175 } |
| 177 ]) | 176 ]) |
| 178 | 177 |
| 179 return result | 178 return result |
| 180 | 179 |
| 181 | 180 |
| 182 slaves = linux() | 181 slaves = linux() |
| OLD | NEW |