| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 from master import master_config | |
| 6 from master.factory import chromium_factory | |
| 7 | |
| 8 import master_site_config | |
| 9 | |
| 10 ActiveMaster = master_site_config.ChromiumWebkit | |
| 11 | |
| 12 defaults = {} | |
| 13 | |
| 14 helper = master_config.Helper(defaults) | |
| 15 B = helper.Builder | |
| 16 F = helper.Factory | |
| 17 | |
| 18 def linux(): | |
| 19 return chromium_factory.ChromiumFactory('src/out', 'linux2') | |
| 20 | |
| 21 defaults['category'] = 'deps' | |
| 22 | |
| 23 ################################################################################ | |
| 24 ## Release | |
| 25 ################################################################################ | |
| 26 | |
| 27 # | |
| 28 # Linux Rel Builder | |
| 29 # | |
| 30 B('WebKit Linux (deps)', 'f_webkit_linux_rel', | |
| 31 scheduler='global_deps_scheduler') | |
| 32 F('f_webkit_linux_rel', linux().ChromiumFactory( | |
| 33 tests=chromium_factory.blink_tests, | |
| 34 options=[ | |
| 35 '--build-tool=ninja', | |
| 36 '--compiler=goma', | |
| 37 '--', | |
| 38 'blink_tests', | |
| 39 ], | |
| 40 factory_properties={ | |
| 41 'additional_expectations': [ | |
| 42 ['content', 'test', 'test_expectations.txt'], | |
| 43 ], | |
| 44 'archive_webkit_results': ActiveMaster.is_production_host, | |
| 45 'gclient_env': { | |
| 46 'GYP_GENERATORS':'ninja', | |
| 47 }, | |
| 48 'generate_gtest_json': True, | |
| 49 'test_results_server': 'test-results.appspot.com', | |
| 50 })) | |
| 51 | |
| 52 def Update(_config, _active_master, c): | |
| 53 return helper.Update(c) | |
| OLD | NEW |