| 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 slaves = [ | 5 slaves = [ |
| 6 # Linux 32-bit. | 6 # Linux 32-bit. |
| 7 { | 7 { |
| 8 'master': 'Libyuv', | 8 'master': 'Libyuv', |
| 9 'os': 'linux', | 9 'os': 'linux', |
| 10 'version': 'precise', | 10 'version': 'precise', |
| 11 'bits': '32', | 11 'bits': '32', |
| 12 'builder': [ | 12 'builder': [ |
| 13 'Linux32 Debug', | 13 'Linux32 Debug', |
| 14 'Linux32 Release', | 14 'Linux32 Release', |
| 15 ], | 15 ], |
| 16 'hostname': 'vm321-m3', | 16 'hostname': 'vm321-m3', |
| 17 } | 17 } |
| 18 ] + [ | 18 ] + [ |
| 19 # Linux 64-bit. | 19 # Linux 64-bit. |
| 20 { | 20 { |
| 21 'master': 'Libyuv', | 21 'master': 'Libyuv', |
| 22 'os': 'linux', | 22 'os': 'linux', |
| 23 'version': 'precise', | 23 'version': 'precise', |
| 24 'bits': '64', | 24 'bits': '64', |
| 25 'builder': [ | 25 'builder': [ |
| 26 'Linux64 Debug', | 26 'Linux64 Debug', |
| 27 'Linux64 Release', | 27 'Linux64 Release', |
| 28 'Linux64 Debug (GN)', | 28 'Linux64 Debug (GN)', |
| 29 'Linux64 Release (GN)', | 29 'Linux64 Release (GN)', |
| 30 # TODO(kjellander): Add when trybot is green (crbug.com/625889). |
| 31 #'Linux GCC', |
| 30 'Linux Asan', | 32 'Linux Asan', |
| 31 'Linux Memcheck', | 33 'Linux Memcheck', |
| 32 'Linux MSan', | 34 'Linux MSan', |
| 33 'Linux Tsan v2', | 35 'Linux Tsan v2', |
| 34 'Linux UBSan', | 36 'Linux UBSan', |
| 35 'Linux UBSan vptr', | 37 'Linux UBSan vptr', |
| 36 'Android Debug', | 38 'Android Debug', |
| 37 'Android Release', | 39 'Android Release', |
| 38 'Android Debug (GN)', | 40 'Android Debug (GN)', |
| 39 'Android Release (GN)', | 41 'Android Release (GN)', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 'Win32 Debug (Clang)', | 90 'Win32 Debug (Clang)', |
| 89 'Win32 Release (Clang)', | 91 'Win32 Release (Clang)', |
| 90 'Win64 Debug (Clang)', | 92 'Win64 Debug (Clang)', |
| 91 'Win64 Release (Clang)', | 93 'Win64 Release (Clang)', |
| 92 'Win64 Debug (GN)', | 94 'Win64 Debug (GN)', |
| 93 'Win64 Release (GN)', | 95 'Win64 Release (GN)', |
| 94 ], | 96 ], |
| 95 'hostname': 'vm%d-m3' % i, | 97 'hostname': 'vm%d-m3' % i, |
| 96 } for i in [32, 324] | 98 } for i in [32, 324] |
| 97 ] | 99 ] |
| OLD | NEW |