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 | 5 |
6 from master import master_config | 6 from master import master_config |
7 from master.factory import chromium_factory | 7 from master.factory import chromium_factory |
8 | 8 |
9 defaults = {} | 9 defaults = {} |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 B('Linux ChromiumOS Builder', 'f_chromiumos_rel', scheduler='s10_webkit_rel', | 33 B('Linux ChromiumOS Builder', 'f_chromiumos_rel', scheduler='s10_webkit_rel', |
34 auto_reboot=False) | 34 auto_reboot=False) |
35 F('f_chromiumos_rel', linux().ChromiumOSWebkitLatestFactory( | 35 F('f_chromiumos_rel', linux().ChromiumOSWebkitLatestFactory( |
36 slave_type='Builder', | 36 slave_type='Builder', |
37 tests=[], | 37 tests=[], |
38 options=['--compiler=goma', | 38 options=['--compiler=goma', |
39 'aura_builder', | 39 'aura_builder', |
40 'base_unittests', | 40 'base_unittests', |
41 'browser_tests', | 41 'browser_tests', |
42 'cacheinvalidation_unittests', | 42 'cacheinvalidation_unittests', |
| 43 'components_unittests', |
43 'compositor_unittests', | 44 'compositor_unittests', |
44 'content_browsertests', | 45 'content_browsertests', |
45 'content_unittests', | 46 'content_unittests', |
46 'crypto_unittests', | 47 'crypto_unittests', |
47 'dbus_unittests', | 48 'dbus_unittests', |
48 'device_unittests', | 49 'device_unittests', |
49 'gpu_unittests', | 50 'gpu_unittests', |
50 'googleurl_unittests', | 51 'googleurl_unittests', |
51 'interactive_ui_tests', | 52 'interactive_ui_tests', |
52 'ipc_tests', | 53 'ipc_tests', |
53 'jingle_unittests', | 54 'jingle_unittests', |
54 'media_unittests', | 55 'media_unittests', |
55 'net_unittests', | 56 'net_unittests', |
56 'ppapi_unittests', | 57 'ppapi_unittests', |
57 'printing_unittests', | 58 'printing_unittests', |
58 'remoting_unittests', | 59 'remoting_unittests', |
59 'sql_unittests', | 60 'sql_unittests', |
60 'sync_unit_tests', | 61 'sync_unit_tests', |
61 'ui_unittests', | 62 'ui_unittests', |
62 'unit_tests', | 63 'unit_tests', |
63 'views_unittests', | 64 'views_unittests', |
64 ], | 65 ], |
65 factory_properties={ | 66 factory_properties={ |
66 'gclient_env': {'GYP_DEFINES': 'chromeos=1'} | 67 'gclient_env': {'GYP_DEFINES': 'chromeos=1'} |
67 })) | 68 })) |
68 | 69 |
69 | 70 |
70 def Update(config, active_master, c): | 71 def Update(config, active_master, c): |
71 return helper.Update(c) | 72 return helper.Update(c) |
OLD | NEW |