OLD | NEW |
| (Empty) |
1 # -*- python -*- | |
2 # ex: set syntax=python: | |
3 | |
4 # Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | |
5 # Use of this source code is governed by a BSD-style license that can be | |
6 # found in the LICENSE file. | |
7 | |
8 # See master.experimental/slaves.cfg for documentation. | |
9 | |
10 | |
11 slaves = [ | |
12 ### NativeClientChrome | |
13 # WINDOWS | |
14 { | |
15 'master': 'NativeClientChrome', | |
16 'builder': ['xp-nacl-chrome'], | |
17 'hostname': 'codf211', | |
18 'os': 'win', | |
19 'version': 'xp', | |
20 }, | |
21 # MAC | |
22 { | |
23 'master': 'NativeClientChrome', | |
24 'builder': ['mac-nacl-chrome'], | |
25 'hostname': 'codf96', | |
26 'os': 'mac', | |
27 'version': 'osx 10.5', | |
28 }, | |
29 # HARDY | |
30 { | |
31 'master': 'NativeClientChrome', | |
32 'builder': ['hardy64-nacl-chrome'], | |
33 'hostname': 'codf210', | |
34 'os': 'linux', | |
35 'version': 'hardy', | |
36 'bits': '64', | |
37 }, | |
38 ] | |
OLD | NEW |