OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 | 3 |
4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
7 | 7 |
8 # This is an list of dictionaries to describe slaves. | 8 # This is an list of dictionaries to describe slaves. |
9 # This list is intentionally flat to be easy to filter arbitrarily. | 9 # This list is intentionally flat to be easy to filter arbitrarily. |
10 | 10 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 'V8 Android Arm64 - builder'], | 81 'V8 Android Arm64 - builder'], |
82 'hostname': 'vm361-m3', | 82 'hostname': 'vm361-m3', |
83 'os': 'linux', | 83 'os': 'linux', |
84 'version': 'precise', | 84 'version': 'precise', |
85 'bits': '64', | 85 'bits': '64', |
86 }, | 86 }, |
87 { | 87 { |
88 'master': 'V8', | 88 'master': 'V8', |
89 'builder': ['V8 Arm - builder', | 89 'builder': ['V8 Arm - builder', |
90 'V8 Arm - debug builder', | 90 'V8 Arm - debug builder', |
91 'V8 Mips - builder'], | 91 'V8 Mips - builder', |
| 92 'V8 Linux - x87 - nosnap - debug builder'], |
92 'hostname': 'vm358-m3', | 93 'hostname': 'vm358-m3', |
93 'os': 'linux', | 94 'os': 'linux', |
94 'version': 'trusty', | 95 'version': 'trusty', |
95 'bits': '64', | 96 'bits': '64', |
96 }, | 97 }, |
97 { | 98 { |
98 # Note: 'vm363-m3' has special dependencies for GCMole installed. | 99 # Note: 'vm363-m3' has special dependencies for GCMole installed. |
99 'master': 'V8', | 100 'master': 'V8', |
100 'builder': 'V8 Linux - gcmole', | 101 'builder': 'V8 Linux - gcmole', |
101 'hostname': 'vm363-m3', # Fast VM. | 102 'hostname': 'vm363-m3', # Fast VM. |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 'V8 Mac', | 486 'V8 Mac', |
486 'V8 Mac - debug', | 487 'V8 Mac - debug', |
487 'V8 Mac64', | 488 'V8 Mac64', |
488 'V8 Mac64 - debug', | 489 'V8 Mac64 - debug', |
489 ], | 490 ], |
490 'hostname': 'vm%d-m3' % vm, | 491 'hostname': 'vm%d-m3' % vm, |
491 'os': 'mac', | 492 'os': 'mac', |
492 'version': '10.6', | 493 'version': '10.6', |
493 'bits': '64', | 494 'bits': '64', |
494 }) | 495 }) |
OLD | NEW |