| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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': 'LibyuvTryServer', | 8 'master': 'LibyuvTryServer', |
| 9 'os': 'linux', | 9 'os': 'linux', |
| 10 'version': 'precise', | 10 'version': 'precise', |
| 11 'bits': '64', | 11 'bits': '64', |
| 12 'builder': [ | 12 'builder': [ |
| 13 'linux', | 13 'linux', |
| 14 'linux_rel', | 14 'linux_rel', |
| 15 'linux_gn', |
| 16 'linux_gn_rel', |
| 15 'linux_asan', | 17 'linux_asan', |
| 16 'linux_memcheck', | 18 'linux_memcheck', |
| 17 'linux_msan', | 19 'linux_msan', |
| 18 'linux_tsan2', | 20 'linux_tsan2', |
| 19 'linux_ubsan', | 21 'linux_ubsan', |
| 20 'linux_ubsan_vptr', | 22 'linux_ubsan_vptr', |
| 21 'android', | 23 'android', |
| 22 'android_rel', | 24 'android_rel', |
| 25 'android_gn', |
| 26 'android_gn_rel', |
| 23 'android_clang', | 27 'android_clang', |
| 24 'android_arm64', | 28 'android_arm64', |
| 25 ], | 29 ], |
| 26 'hostname': 'slave%d-c4' % i, | 30 'hostname': 'slave%d-c4' % i, |
| 27 } for i in xrange(498, 500) | 31 } for i in xrange(498, 500) |
| 28 ] + [ | 32 ] + [ |
| 29 # Mac. | 33 # Mac. |
| 30 { | 34 { |
| 31 'master': 'LibyuvTryServer', | 35 'master': 'LibyuvTryServer', |
| 32 'os': 'mac', | 36 'os': 'mac', |
| 33 'version': '10.8', | 37 'version': '10.8', |
| 34 'bits': '64', | 38 'bits': '64', |
| 35 'builder': [ | 39 'builder': [ |
| 36 'mac', | 40 'mac', |
| 37 'mac_rel', | 41 'mac_rel', |
| 42 'mac_gn', |
| 43 'mac_gn_rel', |
| 38 'mac_asan', | 44 'mac_asan', |
| 39 'ios', | 45 'ios', |
| 40 'ios_rel', | 46 'ios_rel', |
| 41 'ios_arm64', | 47 'ios_arm64', |
| 42 'ios_arm64_rel', | 48 'ios_arm64_rel', |
| 43 ], | 49 ], |
| 44 'hostname': 'vm749-m4', | 50 'hostname': 'vm749-m4', |
| 45 }, | 51 }, |
| 46 ] + [ | 52 ] + [ |
| 47 # Windows. | 53 # Windows. |
| 48 { | 54 { |
| 49 'master': 'LibyuvTryServer', | 55 'master': 'LibyuvTryServer', |
| 50 'os': 'win', | 56 'os': 'win', |
| 51 'version': 'win7', | 57 'version': 'win7', |
| 52 'bits': '64', | 58 'bits': '64', |
| 53 'builder': [ | 59 'builder': [ |
| 54 'win', | 60 'win', |
| 55 'win_rel', | 61 'win_rel', |
| 56 'win_x64_rel', | 62 'win_x64_rel', |
| 63 'win_x64_gn', |
| 64 'win_x64_gn_rel', |
| 57 'win_clang', | 65 'win_clang', |
| 58 'win_clang_rel', | 66 'win_clang_rel', |
| 59 'win_x64_clang_rel', | 67 'win_x64_clang_rel', |
| 60 ], | 68 ], |
| 61 'hostname': 'vm789-m4', | 69 'hostname': 'vm789-m4', |
| 62 } | 70 } |
| 63 ] | 71 ] |
| OLD | NEW |