| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 slaves = [ | 5 slaves = [ |
| 6 # Linux. | 6 # Linux. |
| 7 { | 7 { |
| 8 'master': 'WebRTCTryServer', | 8 'master': 'WebRTCTryServer', |
| 9 'os': 'linux', | 9 'os': 'linux', |
| 10 'version': 'trusty', | 10 'version': 'trusty', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 'linux_gyp_rel', | 34 'linux_gyp_rel', |
| 35 'linux_libfuzzer_rel', | 35 'linux_libfuzzer_rel', |
| 36 'linux_arm', | 36 'linux_arm', |
| 37 'linux_asan', | 37 'linux_asan', |
| 38 'linux_memcheck', | 38 'linux_memcheck', |
| 39 'linux_msan', | 39 'linux_msan', |
| 40 'linux_swarming', | 40 'linux_swarming', |
| 41 'linux_tsan2', | 41 'linux_tsan2', |
| 42 'linux_ubsan', | 42 'linux_ubsan', |
| 43 'linux_ubsan_vptr', | 43 'linux_ubsan_vptr', |
| 44 ], |
| 45 'hostname': 'slave%d-c4' % i, |
| 46 } for i in range(719, 726) + range(837, 841) + range(1210, 1220) |
| 47 ] + [ |
| 48 { |
| 49 'master': 'WebRTCTryServer', |
| 50 'os': 'linux', |
| 51 'version': 'trusty', |
| 52 'bits': '64', |
| 53 'builder': [ |
| 44 'presubmit', | 54 'presubmit', |
| 45 ], | 55 ], |
| 46 'hostname': 'slave%d-c4' % i, | 56 'hostname': 'slave%d-c4' % i, |
| 47 } for i in range(719, 726) + range(777, 779) + range(837, 841) | 57 } for i in range(777, 779) |
| 48 ] + [ | 58 ] + [ |
| 49 # Linux bare-metal machines with audio devices and headsets. | 59 # Linux bare-metal machines with audio devices and headsets. |
| 50 { | 60 { |
| 51 'master': 'WebRTCTryServer', | 61 'master': 'WebRTCTryServer', |
| 52 'os': 'linux', | 62 'os': 'linux', |
| 53 'version': 'trusty', | 63 'version': 'trusty', |
| 54 'bits': '64', | 64 'bits': '64', |
| 55 'builder': [ | 65 'builder': [ |
| 56 'linux_baremetal', | 66 'linux_baremetal', |
| 57 ], | 67 ], |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 'master': 'WebRTCTryServer', | 154 'master': 'WebRTCTryServer', |
| 145 'os': 'win', | 155 'os': 'win', |
| 146 'version': 'win7', | 156 'version': 'win7', |
| 147 'bits': '64', | 157 'bits': '64', |
| 148 'builder': [ | 158 'builder': [ |
| 149 'win_baremetal', | 159 'win_baremetal', |
| 150 ], | 160 ], |
| 151 'hostname': hostname, | 161 'hostname': hostname, |
| 152 } for hostname in ['build143-b4', 'build139-b4'] | 162 } for hostname in ['build143-b4', 'build139-b4'] |
| 153 ] | 163 ] |
| OLD | NEW |