| 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_gcc', |
| 17 'linux_asan', | 18 'linux_asan', |
| 18 'linux_memcheck', | 19 'linux_memcheck', |
| 19 'linux_msan', | 20 'linux_msan', |
| 20 'linux_tsan2', | 21 'linux_tsan2', |
| 21 'linux_ubsan', | 22 'linux_ubsan', |
| 22 'linux_ubsan_vptr', | 23 'linux_ubsan_vptr', |
| 23 'android', | 24 'android', |
| 24 'android_rel', | 25 'android_rel', |
| 25 'android_gn', | 26 'android_gn', |
| 26 'android_gn_rel', | 27 'android_gn_rel', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 'win_x64_rel', | 66 'win_x64_rel', |
| 66 'win_x64_gn', | 67 'win_x64_gn', |
| 67 'win_x64_gn_rel', | 68 'win_x64_gn_rel', |
| 68 'win_clang', | 69 'win_clang', |
| 69 'win_clang_rel', | 70 'win_clang_rel', |
| 70 'win_x64_clang_rel', | 71 'win_x64_clang_rel', |
| 71 ], | 72 ], |
| 72 'hostname': 'vm%d-m4' % i, | 73 'hostname': 'vm%d-m4' % i, |
| 73 } for i in [152, 789] | 74 } for i in [152, 789] |
| 74 ] | 75 ] |
| OLD | NEW |