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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 'base_unittests', | 54 'base_unittests', |
55 'browser_tests', | 55 'browser_tests', |
56 'cacheinvalidation_unittests', | 56 'cacheinvalidation_unittests', |
57 'cc_unittests', | 57 'cc_unittests', |
58 'chrome', | 58 'chrome', |
59 'chromedriver2_unittests', | 59 'chromedriver2_unittests', |
60 'components_unittests', | 60 'components_unittests', |
61 'content_browsertests', | 61 'content_browsertests', |
62 'content_unittests', | 62 'content_unittests', |
63 'crypto_unittests', | 63 'crypto_unittests', |
| 64 'dbus_unittests', |
64 'device_unittests', | 65 'device_unittests', |
65 'google_apis_unittests', | 66 'google_apis_unittests', |
66 'gpu_unittests', | 67 'gpu_unittests', |
67 'interactive_ui_tests', | 68 'interactive_ui_tests', |
68 'ipc_tests', | 69 'ipc_tests', |
69 'jingle_unittests', | 70 'jingle_unittests', |
70 'media_unittests', | 71 'media_unittests', |
71 'net_unittests', | 72 'net_unittests', |
72 'ppapi_unittests', | 73 'ppapi_unittests', |
73 'printing_unittests', | 74 'printing_unittests', |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
457 factory_properties={ | 458 factory_properties={ |
458 'gclient_env': { | 459 'gclient_env': { |
459 'GYP_GENERATORS':'ninja', | 460 'GYP_GENERATORS':'ninja', |
460 'GYP_DEFINES': | 461 'GYP_DEFINES': |
461 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' | 462 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' |
462 'test_isolation_mode=noop', | 463 'test_isolation_mode=noop', |
463 }})) | 464 }})) |
464 | 465 |
465 def Update(_config, _active_master, c): | 466 def Update(_config, _active_master, c): |
466 return helper.Update(c) | 467 return helper.Update(c) |
OLD | NEW |