| 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 mac(): | 9 def mac(): |
| 10 cq_slaves = ( | 10 cq_slaves = ( |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 optional3_slaves = ['build190-m4'] | 43 optional3_slaves = ['build190-m4'] |
| 44 optional3_builders = [ | 44 optional3_builders = [ |
| 45 'mac_chromium_variable_10.10', | 45 'mac_chromium_variable_10.10', |
| 46 'mac_chromium_variable_10.10_layout', | 46 'mac_chromium_variable_10.10_layout', |
| 47 ] | 47 ] |
| 48 | 48 |
| 49 optional4_slaves = ['vm1026-m4'] | 49 optional4_slaves = ['vm1026-m4'] |
| 50 optional4_builders = [ | 50 optional4_builders = [ |
| 51 'mac_chromium_archive_rel_ng', | 51 'mac_chromium_archive_rel_ng', |
| 52 'mac_chromium_asan_rel_ng', | 52 'mac_chromium_asan_rel_ng', |
| 53 'mac_deterministic', | |
| 54 'mac_chromium_asan_variable', | 53 'mac_chromium_asan_variable', |
| 55 'mac_chromium_variable_chrome', | 54 'mac_chromium_variable_chrome', |
| 56 'mac_chromium_variable_gn', | 55 'mac_chromium_variable_gn', |
| 57 'mac_chromium_variable_layout', | 56 'mac_chromium_variable_layout', |
| 58 ] | 57 ] |
| 59 | 58 |
| 60 out = [] | 59 out = [] |
| 61 out.extend( | 60 out.extend( |
| 62 { | 61 { |
| 63 'master': 'TryServerChromiumMac', | 62 'master': 'TryServerChromiumMac', |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 'pool': 'ios_cq_rel', | 189 'pool': 'ios_cq_rel', |
| 191 } for slave in cq_slaves_rel] | 190 } for slave in cq_slaves_rel] |
| 192 | 191 |
| 193 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on | 192 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on |
| 194 # the bots. | 193 # the bots. |
| 195 | 194 |
| 196 return compile_slaves_dbg + compile_slaves_rel | 195 return compile_slaves_dbg + compile_slaves_rel |
| 197 | 196 |
| 198 | 197 |
| 199 slaves = mac() + ios() | 198 slaves = mac() + ios() |
| OLD | NEW |