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 from master import master_config | 5 from master import master_config |
6 from master.factory import chromium_factory | 6 from master.factory import chromium_factory |
7 | 7 |
8 defaults = {} | 8 defaults = {} |
9 | 9 |
10 helper = master_config.Helper(defaults) | 10 helper = master_config.Helper(defaults) |
(...skipping 27 matching lines...) Expand all Loading... | |
38 'printing_unittests', | 38 'printing_unittests', |
39 'remoting_unittests', | 39 'remoting_unittests', |
40 'net_unittests', | 40 'net_unittests', |
41 'safe_browsing_tests', | 41 'safe_browsing_tests', |
42 'cacheinvalidation_unittests', | 42 'cacheinvalidation_unittests', |
43 'jingle_unittests', | 43 'jingle_unittests', |
44 'sql_unittests', # from test target unit | 44 'sql_unittests', # from test target unit |
45 'ipc_tests', # from test target unit | 45 'ipc_tests', # from test target unit |
46 'sync_unit_tests', # from test target unit | 46 'sync_unit_tests', # from test target unit |
47 'content_unittests', # from test target unit | 47 'content_unittests', # from test target unit |
48 'ui_unittests', # from test target unit | |
M-A Ruel
2012/06/21 18:57:24
the comment is kinda useless. Do not add it back.
| |
48 'unit_tests', # from test target unit | 49 'unit_tests', # from test target unit |
49 'gfx_unittests', # from test target unit | |
50 'browser_tests', | 50 'browser_tests', |
51 ] | 51 ] |
52 | 52 |
53 | 53 |
54 ################################################################################ | 54 ################################################################################ |
55 ## Release | 55 ## Release |
56 ################################################################################ | 56 ################################################################################ |
57 | 57 |
58 defaults['category'] = '4linux' | 58 defaults['category'] = '4linux' |
59 | 59 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
142 ] | 142 ] |
143 | 143 |
144 linux_aura_options=[ | 144 linux_aura_options=[ |
145 'aura_builder', | 145 'aura_builder', |
146 'base_unittests', | 146 'base_unittests', |
147 'browser_tests', | 147 'browser_tests', |
148 'cacheinvalidation_unittests', | 148 'cacheinvalidation_unittests', |
149 'compositor_unittests', | 149 'compositor_unittests', |
150 'content_unittests', | 150 'content_unittests', |
151 'crypto_unittests', | 151 'crypto_unittests', |
152 'gfx_unittests', | |
153 'googleurl_unittests', | 152 'googleurl_unittests', |
154 'gpu_unittests', | 153 'gpu_unittests', |
155 'interactive_ui_tests', | 154 'interactive_ui_tests', |
156 'ipc_tests', | 155 'ipc_tests', |
157 'jingle_unittests', | 156 'jingle_unittests', |
158 'net_unittests', | 157 'net_unittests', |
159 'media_unittests', | 158 'media_unittests', |
160 'printing_unittests', | 159 'printing_unittests', |
161 'remoting_unittests', | 160 'remoting_unittests', |
162 'safe_browsing_tests', | 161 'safe_browsing_tests', |
163 'sql_unittests', | 162 'sql_unittests', |
163 'ui_unittests', | |
164 ] | 164 ] |
165 | 165 |
166 B('Linux (aura)', 'f_linux_rel_aura', 'compile', 'linux_rel', | 166 B('Linux (aura)', 'f_linux_rel_aura', 'compile', 'linux_rel', |
167 notify_on_missing=True) | 167 notify_on_missing=True) |
168 F('f_linux_rel_aura', linux().ChromiumFactory( | 168 F('f_linux_rel_aura', linux().ChromiumFactory( |
169 target='Release', | 169 target='Release', |
170 slave_type='BuilderTester', | 170 slave_type='BuilderTester', |
171 options=['--compiler=goma'] + linux_aura_options, | 171 options=['--compiler=goma'] + linux_aura_options, |
172 tests=linux_aura_tests, | 172 tests=linux_aura_tests, |
173 factory_properties={'gclient_env': {'GYP_DEFINES': 'use_aura=1'}})) | 173 factory_properties={'gclient_env': {'GYP_DEFINES': 'use_aura=1'}})) |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
263 factory_properties={ | 263 factory_properties={ |
264 'gclient_env': { | 264 'gclient_env': { |
265 'GYP_DEFINES': | 265 'GYP_DEFINES': |
266 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' | 266 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' |
267 'test_isolation_mode=noop', | 267 'test_isolation_mode=noop', |
268 }})) | 268 }})) |
269 | 269 |
270 | 270 |
271 def Update(config, active_master, c): | 271 def Update(config, active_master, c): |
272 return helper.Update(c) | 272 return helper.Update(c) |
OLD | NEW |