| 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 15 matching lines...) Expand all Loading... |
| 26 'browser_tests', | 26 'browser_tests', |
| 27 'cacheinvalidation_unittests', | 27 'cacheinvalidation_unittests', |
| 28 'cc_unittests', | 28 'cc_unittests', |
| 29 'chromedriver_tests', | 29 'chromedriver_tests', |
| 30 'chromedriver2_unittests', | 30 'chromedriver2_unittests', |
| 31 'components_unittests', | 31 'components_unittests', |
| 32 'content_browsertests', | 32 'content_browsertests', |
| 33 'content_unittests', | 33 'content_unittests', |
| 34 'crypto_unittests', | 34 'crypto_unittests', |
| 35 'device_unittests', | 35 'device_unittests', |
| 36 'events_unittests', |
| 36 'gpu_unittests', | 37 'gpu_unittests', |
| 37 'jingle_unittests', | 38 'jingle_unittests', |
| 38 'media_unittests', | 39 'media_unittests', |
| 39 'net_unittests', | 40 'net_unittests', |
| 40 'ppapi_unittests', | 41 'ppapi_unittests', |
| 41 'printing_unittests', | 42 'printing_unittests', |
| 42 'remoting_unittests', | 43 'remoting_unittests', |
| 43 'sync_integration_tests', | 44 'sync_integration_tests', |
| 44 'sync_unit_tests', | 45 'sync_unit_tests', |
| 45 'ui_unittests', | 46 'ui_unittests', |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 'app_list_unittests', | 190 'app_list_unittests', |
| 190 'aura', | 191 'aura', |
| 191 'base_unittests', | 192 'base_unittests', |
| 192 'browser_tests', | 193 'browser_tests', |
| 193 'cacheinvalidation_unittests', | 194 'cacheinvalidation_unittests', |
| 194 'compositor', | 195 'compositor', |
| 195 'content_browsertests', | 196 'content_browsertests', |
| 196 'content_unittests', | 197 'content_unittests', |
| 197 'crypto_unittests', | 198 'crypto_unittests', |
| 198 'device_unittests', | 199 'device_unittests', |
| 200 'events', |
| 199 'googleurl', | 201 'googleurl', |
| 200 'gpu', | 202 'gpu', |
| 201 'interactive_ui_tests', | 203 'interactive_ui_tests', |
| 202 'ipc_tests', | 204 'ipc_tests', |
| 203 'jingle', | 205 'jingle', |
| 204 'media', | 206 'media', |
| 205 'net', | 207 'net', |
| 206 'ppapi_unittests', | 208 'ppapi_unittests', |
| 207 'printing', | 209 'printing', |
| 208 'remoting', | 210 'remoting', |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 factory_properties={ | 456 factory_properties={ |
| 455 'gclient_env': { | 457 'gclient_env': { |
| 456 'GYP_GENERATORS':'ninja', | 458 'GYP_GENERATORS':'ninja', |
| 457 'GYP_DEFINES': | 459 'GYP_DEFINES': |
| 458 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' | 460 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' |
| 459 'test_isolation_mode=noop', | 461 'test_isolation_mode=noop', |
| 460 }})) | 462 }})) |
| 461 | 463 |
| 462 def Update(_config, _active_master, c): | 464 def Update(_config, _active_master, c): |
| 463 return helper.Update(c) | 465 return helper.Update(c) |
| OLD | NEW |