Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright 2013 The Chromium Authors. All rights reserved. | 4 # Copyright 2013 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 21 matching lines...) Expand all Loading... | |
| 32 #'vm_host': string, | 32 #'vm_host': string, |
| 33 | 33 |
| 34 # (Optional) VM datastore if a vm. | 34 # (Optional) VM datastore if a vm. |
| 35 #'vm_host_datastore': number, | 35 #'vm_host_datastore': number, |
| 36 | 36 |
| 37 # (Optional) Random notes. | 37 # (Optional) Random notes. |
| 38 #'notes': string, | 38 #'notes': string, |
| 39 #}, | 39 #}, |
| 40 { | 40 { |
| 41 'master': 'V8Branches', | 41 'master': 'V8Branches', |
| 42 'builder': 'Auto-tag', | |
| 43 'hostname': 'vm365-m3', | |
|
tandrii(chromium)
2015/09/04 12:51:07
and use it here. Good.
| |
| 44 'os': 'linux', | |
| 45 'version': 'precise', | |
| 46 'bits': '32', | |
| 47 }, | |
| 48 { | |
| 49 'master': 'V8Branches', | |
| 42 'builder': ['V8 arm - sim - roll branch', | 50 'builder': ['V8 arm - sim - roll branch', |
| 43 'V8 arm - sim - roll branch - debug', | 51 'V8 arm - sim - roll branch - debug', |
| 44 'V8 arm - sim - stable branch', | 52 'V8 arm - sim - stable branch', |
| 45 'V8 arm - sim - stable branch - debug', | 53 'V8 arm - sim - stable branch - debug', |
| 46 'V8 arm - sim - beta branch', | 54 'V8 arm - sim - beta branch', |
| 47 'V8 arm - sim - beta branch - debug'], | 55 'V8 arm - sim - beta branch - debug'], |
| 48 'hostname': 'vm328-m3', | 56 'hostname': 'vm328-m3', |
| 49 'os': 'linux', | 57 'os': 'linux', |
| 50 'version': 'precise', | 58 'version': 'precise', |
| 51 'bits': '64', | 59 'bits': '64', |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 71 'V8 mipsel - sim - beta branch', | 79 'V8 mipsel - sim - beta branch', |
| 72 'V8 mips64el - sim - beta branch', | 80 'V8 mips64el - sim - beta branch', |
| 73 'V8 ppc - sim - beta branch', | 81 'V8 ppc - sim - beta branch', |
| 74 'V8 ppc64 - sim - beta branch'], | 82 'V8 ppc64 - sim - beta branch'], |
| 75 'hostname': 'vm336-m3', | 83 'hostname': 'vm336-m3', |
| 76 'os': 'linux', | 84 'os': 'linux', |
| 77 'version': 'precise', | 85 'version': 'precise', |
| 78 'bits': '64', | 86 'bits': '64', |
| 79 }, | 87 }, |
| 80 ] | 88 ] |
| OLD | NEW |