| 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', | 15 'linux_gn', |
| 16 'linux_gn_rel', | 16 'linux_gn_rel', |
| 17 'linux_asan', | 17 'linux_asan', |
| 18 'linux_memcheck', | 18 'linux_memcheck', |
| 19 'linux_msan', | 19 'linux_msan', |
| 20 'linux_tsan2', | 20 'linux_tsan2', |
| 21 'linux_ubsan', | 21 'linux_ubsan', |
| 22 'linux_ubsan_vptr', | 22 'linux_ubsan_vptr', |
| 23 'android', | 23 'android', |
| 24 'android_rel', | 24 'android_rel', |
| 25 'android_gn', | 25 'android_gn', |
| 26 'android_gn_rel', | 26 'android_gn_rel', |
| 27 'android_clang', | 27 'android_clang', |
| 28 'android_arm64', | 28 'android_arm64', |
| 29 'android_x86', |
| 30 'android_x64', |
| 31 'android_mips', |
| 29 ], | 32 ], |
| 30 'hostname': 'slave%d-c4' % i, | 33 'hostname': 'slave%d-c4' % i, |
| 31 } for i in range(498, 500) + [139] | 34 } for i in range(498, 500) + [139] |
| 32 ] + [ | 35 ] + [ |
| 33 # Mac. | 36 # Mac. |
| 34 { | 37 { |
| 35 'master': 'LibyuvTryServer', | 38 'master': 'LibyuvTryServer', |
| 36 'os': 'mac', | 39 'os': 'mac', |
| 37 'version': '10.8', | 40 'version': '10.8', |
| 38 'bits': '64', | 41 'bits': '64', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 62 'win_x64_rel', | 65 'win_x64_rel', |
| 63 'win_x64_gn', | 66 'win_x64_gn', |
| 64 'win_x64_gn_rel', | 67 'win_x64_gn_rel', |
| 65 'win_clang', | 68 'win_clang', |
| 66 'win_clang_rel', | 69 'win_clang_rel', |
| 67 'win_x64_clang_rel', | 70 'win_x64_clang_rel', |
| 68 ], | 71 ], |
| 69 'hostname': 'vm%d-m4' % i, | 72 'hostname': 'vm%d-m4' % i, |
| 70 } for i in [152, 789] | 73 } for i in [152, 789] |
| 71 ] | 74 ] |
| OLD | NEW |