| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 'win_rel', | 127 'win_rel', |
| 128 'win_x64_dbg', | 128 'win_x64_dbg', |
| 129 'win_x64_rel', | 129 'win_x64_rel', |
| 130 'win_x64_gyp_dbg', | 130 'win_x64_gyp_dbg', |
| 131 'win_x64_gyp_rel', | 131 'win_x64_gyp_rel', |
| 132 'win_clang_dbg', | 132 'win_clang_dbg', |
| 133 'win_clang_rel', | 133 'win_clang_rel', |
| 134 'win_x64_clang_dbg', | 134 'win_x64_clang_dbg', |
| 135 'win_x64_clang_rel', | 135 'win_x64_clang_rel', |
| 136 'win_asan', | 136 'win_asan', |
| 137 'win_drmemory_light', | |
| 138 'win_drmemory_full', | |
| 139 'win_swarming', | 137 'win_swarming', |
| 140 ], | 138 ], |
| 141 'hostname': 'vm%d-m4' % i, | 139 'hostname': 'vm%d-m4' % i, |
| 142 } for i in range(207, 209) + [133, 212, 234, 263, 363, 407, 495] | 140 } for i in range(207, 209) + [133, 212, 234, 263, 363, 407, 495] |
| 143 ] + [ | 141 ] + [ |
| 144 # Windows bare-metal machines with audio devices and headsets. | 142 # Windows bare-metal machines with audio devices and headsets. |
| 145 { | 143 { |
| 146 'master': 'WebRTCTryServer', | 144 'master': 'WebRTCTryServer', |
| 147 'os': 'win', | 145 'os': 'win', |
| 148 'version': 'win7', | 146 'version': 'win7', |
| 149 'bits': '64', | 147 'bits': '64', |
| 150 'builder': [ | 148 'builder': [ |
| 151 'win_baremetal', | 149 'win_baremetal', |
| 152 ], | 150 ], |
| 153 'hostname': hostname, | 151 'hostname': hostname, |
| 154 } for hostname in ['build143-b4', 'build139-b4'] | 152 } for hostname in ['build143-b4', 'build139-b4'] |
| 155 ] | 153 ] |
| OLD | NEW |