| 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_gyp', |
| 16 'linux_gn_rel', | 16 'linux_gyp_rel', |
| 17 'linux_gcc', | 17 'linux_gcc', |
| 18 'linux_asan', | 18 'linux_asan', |
| 19 'linux_memcheck', | 19 'linux_memcheck', |
| 20 'linux_msan', | 20 'linux_msan', |
| 21 'linux_tsan2', | 21 'linux_tsan2', |
| 22 'linux_ubsan', | 22 'linux_ubsan', |
| 23 'linux_ubsan_vptr', | 23 'linux_ubsan_vptr', |
| 24 'android_gn', | 24 'android_gyp', |
| 25 'android_gn_rel', | 25 'android_gyp_rel', |
| 26 'android_clang', | 26 'android_clang', |
| 27 'android_x86', | 27 'android_x86', |
| 28 'android_x64', | 28 'android_x64', |
| 29 'android_mips', | 29 'android_mips', |
| 30 ], | 30 ], |
| 31 'hostname': 'slave%d-c4' % i, | 31 'hostname': 'slave%d-c4' % i, |
| 32 } for i in range(498, 500) + [139] | 32 } for i in range(498, 500) + [139] |
| 33 ] + [ | 33 ] + [ |
| 34 # Linux 64-bit machine with Android device connected. | 34 # Linux 64-bit machine with Android device connected. |
| 35 { | 35 { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 46 } | 46 } |
| 47 ] + [ # Mac. | 47 ] + [ # Mac. |
| 48 { | 48 { |
| 49 'master': 'LibyuvTryServer', | 49 'master': 'LibyuvTryServer', |
| 50 'os': 'mac', | 50 'os': 'mac', |
| 51 'version': '10.8', | 51 'version': '10.8', |
| 52 'bits': '64', | 52 'bits': '64', |
| 53 'builder': [ | 53 'builder': [ |
| 54 'mac', | 54 'mac', |
| 55 'mac_rel', | 55 'mac_rel', |
| 56 'mac_gn', | 56 'mac_gyp', |
| 57 'mac_gn_rel', | 57 'mac_gyp_rel', |
| 58 'mac_asan', | 58 'mac_asan', |
| 59 'ios', | 59 'ios', |
| 60 'ios_rel', | 60 'ios_rel', |
| 61 'ios_arm64', | 61 'ios_arm64', |
| 62 'ios_arm64_rel', | 62 'ios_arm64_rel', |
| 63 ], | 63 ], |
| 64 'hostname': 'vm%d-m4' % i, | 64 'hostname': 'vm%d-m4' % i, |
| 65 } for i in [153, 749] | 65 } for i in [153, 749] |
| 66 ] + [ | 66 ] + [ |
| 67 # Windows. | 67 # Windows. |
| 68 { | 68 { |
| 69 'master': 'LibyuvTryServer', | 69 'master': 'LibyuvTryServer', |
| 70 'os': 'win', | 70 'os': 'win', |
| 71 'version': 'win7', | 71 'version': 'win7', |
| 72 'bits': '64', | 72 'bits': '64', |
| 73 'builder': [ | 73 'builder': [ |
| 74 'win', | 74 'win', |
| 75 'win_rel', | 75 'win_rel', |
| 76 'win_x64_rel', | 76 'win_x64_rel', |
| 77 'win_x64_gn', | 77 'win_x64_gyp', |
| 78 'win_x64_gn_rel', | 78 'win_x64_gyp_rel', |
| 79 'win_clang', | 79 'win_clang', |
| 80 'win_clang_rel', | 80 'win_clang_rel', |
| 81 'win_x64_clang_rel', | 81 'win_x64_clang_rel', |
| 82 ], | 82 ], |
| 83 'hostname': 'vm%d-m4' % i, | 83 'hostname': 'vm%d-m4' % i, |
| 84 } for i in [152, 789] | 84 } for i in [152, 789] |
| 85 ] | 85 ] |
| OLD | NEW |