| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 | 52 |
| 53 return out | 53 return out |
| 54 | 54 |
| 55 | 55 |
| 56 def ios(): | 56 def ios(): |
| 57 compile_slaves = [ | 57 compile_slaves = [ |
| 58 { | 58 { |
| 59 'master': 'TryServerChromiumMac', | 59 'master': 'TryServerChromiumMac', |
| 60 'builder': [ | 60 'builder': [ |
| 61 'ios_dbg_simulator', | 61 'ios_dbg_simulator', |
| 62 'ios_rel_device_ng', 'ios_dbg_simulator_ng', 'ios_rel_device_ninja_ng' | 62 'ios_dbg_simulator_ninja', |
| 63 'ios_rel_device', |
| 64 'ios_rel_device_ninja', |
| 65 'ios_rel_device_ng', |
| 66 'ios_dbg_simulator_ng', |
| 67 'ios_rel_device_ninja_ng' |
| 63 ], | 68 ], |
| 64 'hostname': 'build%d-a4' % i, | 69 'hostname': 'build%d-a4' % i, |
| 65 'os': 'mac', | 70 'os': 'mac', |
| 66 'version': '10.8', | 71 'version': '10.8', |
| 67 } for i in range(79, 82) + range(83, 99) # Skip 82. http://crbug.com/395099. | 72 } for i in range(79, 82) + range(83, 99) # Skip 82. http://crbug.com/395099. |
| 68 ] | 73 ] |
| 69 | 74 |
| 70 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on | 75 # TODO(lliabraa): Add test_slaves once we're actually running iOS tests on |
| 71 # the bots. | 76 # the bots. |
| 72 | 77 |
| 73 return compile_slaves | 78 return compile_slaves |
| 74 | 79 |
| 75 | 80 |
| 76 slaves = mac() + ios() | 81 slaves = mac() + ios() |
| OLD | NEW |