| 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)', |
| 29 'Linux64 Release (GN)', |
| 28 'Linux Asan', | 30 'Linux Asan', |
| 29 'Linux Memcheck', | 31 'Linux Memcheck', |
| 30 'Linux MSan', | 32 'Linux MSan', |
| 31 'Linux Tsan v2', | 33 'Linux Tsan v2', |
| 32 'Linux UBSan', | 34 'Linux UBSan', |
| 33 'Linux UBSan vptr', | 35 'Linux UBSan vptr', |
| 34 'Android Debug', | 36 'Android Debug', |
| 35 'Android Release', | 37 'Android Release', |
| 38 'Android Debug (GN)', |
| 39 'Android Release (GN)', |
| 36 'Android Clang Debug', | 40 'Android Clang Debug', |
| 37 'Android ARM64 Debug', | 41 'Android ARM64 Debug', |
| 38 ], | 42 ], |
| 39 'hostname': 'vm%d-m3' % i, | 43 'hostname': 'vm%d-m3' % i, |
| 40 } for i in range(322, 324) | 44 } for i in range(322, 324) |
| 41 ] + [ | 45 ] + [ |
| 42 # Mac. | 46 # Mac. |
| 43 { | 47 { |
| 44 'master': 'Libyuv', | 48 'master': 'Libyuv', |
| 45 'os': 'mac', | 49 'os': 'mac', |
| 46 'version': '10.7', | 50 'version': '10.7', |
| 47 'bits': '64', | 51 'bits': '64', |
| 48 'builder': [ | 52 'builder': [ |
| 49 'Mac64 Debug', | 53 'Mac64 Debug', |
| 50 'Mac64 Release', | 54 'Mac64 Release', |
| 55 'Mac64 Debug (GN)', |
| 56 'Mac64 Release (GN)', |
| 51 'Mac Asan', | 57 'Mac Asan', |
| 52 'iOS Debug', | 58 'iOS Debug', |
| 53 'iOS Release', | 59 'iOS Release', |
| 54 'iOS ARM64 Debug', | 60 'iOS ARM64 Debug', |
| 55 'iOS ARM64 Release', | 61 'iOS ARM64 Release', |
| 56 ], | 62 ], |
| 57 'hostname': 'vm694-m3', | 63 'hostname': 'vm694-m3', |
| 58 }, | 64 }, |
| 59 ] + [ | 65 ] + [ |
| 60 # Windows. | 66 # Windows. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 73 'Win64 Debug (VS2012)', | 79 'Win64 Debug (VS2012)', |
| 74 'Win64 Release (VS2012)', | 80 'Win64 Release (VS2012)', |
| 75 'Win32 Debug (VS2013)', | 81 'Win32 Debug (VS2013)', |
| 76 'Win32 Release (VS2013)', | 82 'Win32 Release (VS2013)', |
| 77 'Win64 Debug (VS2013)', | 83 'Win64 Debug (VS2013)', |
| 78 'Win64 Release (VS2013)', | 84 'Win64 Release (VS2013)', |
| 79 'Win32 Debug (Clang)', | 85 'Win32 Debug (Clang)', |
| 80 'Win32 Release (Clang)', | 86 'Win32 Release (Clang)', |
| 81 'Win64 Debug (Clang)', | 87 'Win64 Debug (Clang)', |
| 82 'Win64 Release (Clang)', | 88 'Win64 Release (Clang)', |
| 89 'Win64 Debug (GN)', |
| 90 'Win64 Release (GN)', |
| 83 ], | 91 ], |
| 84 'hostname': 'vm324-m3', | 92 'hostname': 'vm324-m3', |
| 85 } | 93 } |
| 86 ] | 94 ] |
| OLD | NEW |