| 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 import config | 9 import master_site_config |
| 10 | 10 |
| 11 ActiveMaster = config.Master.ChromiumWebkit | 11 ActiveMaster = master_site_config.ChromiumWebkit |
| 12 | 12 |
| 13 defaults = {} | 13 defaults = {} |
| 14 | 14 |
| 15 helper = master_config.Helper(defaults) | 15 helper = master_config.Helper(defaults) |
| 16 B = helper.Builder | 16 B = helper.Builder |
| 17 F = helper.Factory | 17 F = helper.Factory |
| 18 T = helper.Triggerable | 18 T = helper.Triggerable |
| 19 | 19 |
| 20 def linux_android(): | 20 def linux_android(): |
| 21 return chromium_factory.ChromiumFactory('', | 21 return chromium_factory.ChromiumFactory('', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 'android_bot_id': 'webkit-latest-webkit-tests-rel', | 57 'android_bot_id': 'webkit-latest-webkit-tests-rel', |
| 58 'archive_webkit_results': ActiveMaster.is_production_host, | 58 'archive_webkit_results': ActiveMaster.is_production_host, |
| 59 'build_url': android_rel_archive, | 59 'build_url': android_rel_archive, |
| 60 'generate_gtest_json': True, | 60 'generate_gtest_json': True, |
| 61 'test_results_server': 'test-results.appspot.com', | 61 'test_results_server': 'test-results.appspot.com', |
| 62 'blink_config': 'blink', | 62 'blink_config': 'blink', |
| 63 })) | 63 })) |
| 64 | 64 |
| 65 def Update(_config, _active_master, c): | 65 def Update(_config, _active_master, c): |
| 66 return helper.Update(c) | 66 return helper.Update(c) |
| OLD | NEW |