OLD | NEW |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS 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 """Dictionary of configuration types for cbuildbot. | 5 """Dictionary of configuration types for cbuildbot. |
6 | 6 |
7 Each dictionary entry is in turn a dictionary of config_param->value. | 7 Each dictionary entry is in turn a dictionary of config_param->value. |
8 | 8 |
9 config_param's: | 9 config_param's: |
10 board -- The board of the image to build. | 10 board -- The board of the image to build. |
(...skipping 30 matching lines...) Expand all Loading... |
41 'unittests' : True, | 41 'unittests' : True, |
42 'smoke_bvt' : True, | 42 'smoke_bvt' : True, |
43 } | 43 } |
44 config['x86_pineview_bin'] = { | 44 config['x86_pineview_bin'] = { |
45 'board' : 'x86-pineview', | 45 'board' : 'x86-pineview', |
46 'uprev' : True, | 46 'uprev' : True, |
47 'master' : False, | 47 'master' : False, |
48 'important' : False, | 48 'important' : False, |
49 'hostname' : 'codf200.jail', | 49 'hostname' : 'codf200.jail', |
50 'unittests': True, | 50 'unittests': True, |
51 'smoke_bvt' : True, | |
52 } | 51 } |
53 config['arm_tegra2_bin'] = { | 52 config['arm_tegra2_bin'] = { |
54 'board' : 'tegra2', | 53 'board' : 'tegra2', |
55 'uprev' : True, | 54 'uprev' : True, |
56 'master' : False, | 55 'master' : False, |
57 'important' : False, | 56 'important' : False, |
58 'hostname' : 'codg172.jail', | 57 'hostname' : 'codg172.jail', |
59 'unittests' : False, | 58 'unittests' : False, |
60 } | 59 } |
61 config['arm_voguev210_bin'] = { | 60 config['arm_voguev210_bin'] = { |
(...skipping 21 matching lines...) Expand all Loading... |
83 'unittests' : False, | 82 'unittests' : False, |
84 } | 83 } |
85 config['arm_generic_bin'] = { | 84 config['arm_generic_bin'] = { |
86 'board' : 'arm-generic', | 85 'board' : 'arm-generic', |
87 'uprev' : True, | 86 'uprev' : True, |
88 'master' : False, | 87 'master' : False, |
89 'important' : False, | 88 'important' : False, |
90 'hostname' : 'codg175.jail', | 89 'hostname' : 'codg175.jail', |
91 'unittests' : False, | 90 'unittests' : False, |
92 } | 91 } |
OLD | NEW |