| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 'printing', | 159 'printing', |
| 160 'remoting', | 160 'remoting', |
| 161 'sandbox_linux_unittests', | 161 'sandbox_linux_unittests', |
| 162 'ui_unittests', | 162 'ui_unittests', |
| 163 'unit_sql', | 163 'unit_sql', |
| 164 'unit_sync', | 164 'unit_sync', |
| 165 'unit_unit', | 165 'unit_unit', |
| 166 'webkit_compositor_bindings_unittests', | 166 'webkit_compositor_bindings_unittests', |
| 167 ], | 167 ], |
| 168 factory_properties={'sharded_tests': sharded_tests, | 168 factory_properties={'sharded_tests': sharded_tests, |
| 169 'window_manager': 'False', |
| 169 'generate_gtest_json': True})) | 170 'generate_gtest_json': True})) |
| 170 | 171 |
| 171 B('Linux Sync', | 172 B('Linux Sync', |
| 172 'rel_sync', | 173 'rel_sync', |
| 173 'testers', | 174 'testers', |
| 174 'linux_rel_trigger', | 175 'linux_rel_trigger', |
| 175 notify_on_missing=True) | 176 notify_on_missing=True) |
| 176 F('rel_sync', linux_tester().ChromiumFactory( | 177 F('rel_sync', linux_tester().ChromiumFactory( |
| 177 slave_type='Tester', | 178 slave_type='Tester', |
| 178 build_url=rel_archive, | 179 build_url=rel_archive, |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 factory_properties={ | 457 factory_properties={ |
| 457 'gclient_env': { | 458 'gclient_env': { |
| 458 'GYP_GENERATORS':'ninja', | 459 'GYP_GENERATORS':'ninja', |
| 459 'GYP_DEFINES': | 460 'GYP_DEFINES': |
| 460 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' | 461 'clang=1 clang_use_chrome_plugins=1 fastbuild=1 ' |
| 461 'test_isolation_mode=noop', | 462 'test_isolation_mode=noop', |
| 462 }})) | 463 }})) |
| 463 | 464 |
| 464 def Update(_config, _active_master, c): | 465 def Update(_config, _active_master, c): |
| 465 return helper.Update(c) | 466 return helper.Update(c) |
| OLD | NEW |