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 # WebKit test builders using the Skia graphics library. | 5 # WebKit test builders using the Skia graphics library. |
6 | 6 |
7 from master import master_config | 7 from master import master_config |
8 from master.factory import chromium_factory | 8 from master.factory import chromium_factory |
9 | 9 |
10 import config | 10 import master_site_config |
11 | 11 |
12 ActiveMaster = config.Master.ChromiumWebkit | 12 ActiveMaster = master_site_config.ChromiumWebkit |
13 | 13 |
14 defaults = {} | 14 defaults = {} |
15 | 15 |
16 helper = master_config.Helper(defaults) | 16 helper = master_config.Helper(defaults) |
17 B = helper.Builder | 17 B = helper.Builder |
18 T = helper.Triggerable | 18 T = helper.Triggerable |
19 F = helper.Factory | 19 F = helper.Factory |
20 | 20 |
21 def mac(): | 21 def mac(): |
22 return chromium_factory.ChromiumFactory('src/xcodebuild', 'darwin') | 22 return chromium_factory.ChromiumFactory('src/xcodebuild', 'darwin') |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 'layout_test_platform': 'chromium-mac', | 80 'layout_test_platform': 'chromium-mac', |
81 'test_results_server': 'test-results.appspot.com', | 81 'test_results_server': 'test-results.appspot.com', |
82 })) | 82 })) |
83 | 83 |
84 ################################################################################ | 84 ################################################################################ |
85 ## | 85 ## |
86 ################################################################################ | 86 ################################################################################ |
87 | 87 |
88 def Update(_config, _active_master, c): | 88 def Update(_config, _active_master, c): |
89 return helper.Update(c) | 89 return helper.Update(c) |
OLD | NEW |