| 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 # Pool the builders over all the slave machines, as a WebRTC checkout is only | 5 # Pool the builders over all the slave machines, as a WebRTC checkout is only |
| 6 # about 1.5 GB including source code and compiled artifacts. | 6 # about 1.5 GB including source code and compiled artifacts. |
| 7 slaves = [ | 7 slaves = [ |
| 8 # Linux. | 8 # Linux. |
| 9 { | 9 { |
| 10 'master': 'WebRTCTryServer', | 10 'master': 'WebRTCTryServer', |
| 11 'os': 'linux', | 11 'os': 'linux', |
| 12 'version': 'precise', | 12 'version': 'precise', |
| 13 'bits': '64', | 13 'bits': '64', |
| 14 'builder': [ | 14 'builder': [ |
| 15 'android', | 15 'android', |
| 16 'android_rel', | 16 'android_rel', |
| 17 'android_clang', | 17 'android_clang', |
| 18 'linux', | 18 'linux', |
| 19 'linux_rel', | 19 'linux_rel', |
| 20 'linux_asan', | 20 'linux_asan', |
| 21 'linux_memcheck', | 21 'linux_memcheck', |
| 22 'linux_tsan', | 22 'linux_tsan', |
| 23 'linux_tsan2', |
| 23 ], | 24 ], |
| 24 'hostname': 'vm%d-m4' % i, | 25 'hostname': 'vm%d-m4' % i, |
| 25 } for i in range(159, 164) + [196, 201] | 26 } for i in range(159, 164) + [196, 201] |
| 26 ] + [ | 27 ] + [ |
| 27 # Linux bare-metal machines with Android devices. | 28 # Linux bare-metal machines with Android devices. |
| 28 { | 29 { |
| 29 'master': 'WebRTCTryServer', | 30 'master': 'WebRTCTryServer', |
| 30 'os': 'linux', | 31 'os': 'linux', |
| 31 'version': 'precise', | 32 'version': 'precise', |
| 32 'bits': '64', | 33 'bits': '64', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 # Windows. | 82 # Windows. |
| 82 { | 83 { |
| 83 'master': 'WebRTCTryServer', | 84 'master': 'WebRTCTryServer', |
| 84 'os': 'win', | 85 'os': 'win', |
| 85 'version': 'win7', | 86 'version': 'win7', |
| 86 'bits': '64', | 87 'bits': '64', |
| 87 'builder': [ | 88 'builder': [ |
| 88 'win', | 89 'win', |
| 89 'win_rel', | 90 'win_rel', |
| 90 'win_x64_rel', | 91 'win_x64_rel', |
| 92 'win_asan', |
| 91 ], | 93 ], |
| 92 'hostname': 'vm%d-m4' % i, | 94 'hostname': 'vm%d-m4' % i, |
| 93 } for i in range(207, 209) + [212, 234] | 95 } for i in range(207, 209) + [212, 234] |
| 94 ] + [ | 96 ] + [ |
| 95 # Windows bare-metal machines with audio devices and headsets. | 97 # Windows bare-metal machines with audio devices and headsets. |
| 96 { | 98 { |
| 97 'master': 'WebRTCTryServer', | 99 'master': 'WebRTCTryServer', |
| 98 'os': 'win', | 100 'os': 'win', |
| 99 'version': 'win7', | 101 'version': 'win7', |
| 100 'bits': '64', | 102 'bits': '64', |
| 101 'builder': [ | 103 'builder': [ |
| 102 'win_baremetal', | 104 'win_baremetal', |
| 103 ], | 105 ], |
| 104 'hostname': 'build23-a4', | 106 'hostname': 'build23-a4', |
| 105 } | 107 } |
| 106 ] | 108 ] |
| OLD | NEW |