| 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 def distribute_slaves(slave_numbers, builders, os_ver, pool=None, gce=False): | 7 def distribute_slaves(slave_numbers, builders, os_ver, pool=None, gce=False): |
| 8 hostname_format = 'vm%d-m4' if not gce else 'slave%d-c4' | 8 hostname_format = 'vm%d-m4' if not gce else 'slave%d-c4' |
| 9 return [ | 9 return [ |
| 10 { | 10 { |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 'win_chromium_dbg_ng', | 62 'win_chromium_dbg_ng', |
| 63 'win_chromium_syzyasan_rel', | 63 'win_chromium_syzyasan_rel', |
| 64 'win_chromium_variable', | 64 'win_chromium_variable', |
| 65 'win_optional_gpu_tests_rel', | 65 'win_optional_gpu_tests_rel', |
| 66 # directory: win_archive | 66 # directory: win_archive |
| 67 'win_chromium_variable_archive', | 67 'win_chromium_variable_archive', |
| 68 # directory: win_chrome | 68 # directory: win_chrome |
| 69 'win_chromium_variable_chrome', | 69 'win_chromium_variable_chrome', |
| 70 # directory: win_gn | 70 # directory: win_gn |
| 71 'win_chromium_variable_gn', | 71 'win_chromium_variable_gn', |
| 72 # directory: win_layout |
| 73 'win_chromium_variable_webkit_layout', |
| 74 # directory: win_webkit |
| 75 'win_chromium_variable_webkit_builder', |
| 76 'win_chromium_variable_webkit_win7_builder', |
| 77 'win_chromium_variable_webkit_win7_builder_x64', |
| 72 # directory: win_nacl_sdk | 78 # directory: win_nacl_sdk |
| 73 'win_nacl_sdk', | 79 'win_nacl_sdk', |
| 74 # directory: win_nacl_sdk_build | 80 # directory: win_nacl_sdk_build |
| 75 'win_nacl_sdk_build', | 81 'win_nacl_sdk_build', |
| 76 ] | 82 ] |
| 77 optional_pool_chromium = distribute_slaves( | 83 optional_pool_chromium = distribute_slaves( |
| 78 optional_slaves_chromium, | 84 optional_slaves_chromium, |
| 79 optional_builders_chromium, | 85 optional_builders_chromium, |
| 80 'win7', | 86 'win7', |
| 81 'win_optional_chromium') | 87 'win_optional_chromium') |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 cq_pool + | 150 cq_pool + |
| 145 optional_pool + | 151 optional_pool + |
| 146 win8_pool + | 152 win8_pool + |
| 147 win_pgo_pool + | 153 win_pgo_pool + |
| 148 experimental_pool + | 154 experimental_pool + |
| 149 clang_win_pool + | 155 clang_win_pool + |
| 150 clang_win_cq_pool) | 156 clang_win_cq_pool) |
| 151 | 157 |
| 152 | 158 |
| 153 slaves = windows() | 159 slaves = windows() |
| OLD | NEW |