| 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 import config | 8 import master_site_config |
| 9 | 9 |
| 10 ActiveMaster = config.Master.Chromium | 10 ActiveMaster = master_site_config.Chromium |
| 11 | 11 |
| 12 defaults = {} | 12 defaults = {} |
| 13 | 13 |
| 14 helper = master_config.Helper(defaults) | 14 helper = master_config.Helper(defaults) |
| 15 B = helper.Builder | 15 B = helper.Builder |
| 16 D = helper.Dependent | 16 D = helper.Dependent |
| 17 F = helper.Factory | 17 F = helper.Factory |
| 18 S = helper.Scheduler | 18 S = helper.Scheduler |
| 19 T = helper.Triggerable | 19 T = helper.Triggerable |
| 20 | 20 |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 'gs_bucket': 'gs://chromium-browser-snapshots', | 155 'gs_bucket': 'gs://chromium-browser-snapshots', |
| 156 'perf_id': 'android-release', | 156 'perf_id': 'android-release', |
| 157 'show_perf_results': True, | 157 'show_perf_results': True, |
| 158 }, | 158 }, |
| 159 annotation_script='src/build/android/buildbot/bb_run_bot.py', | 159 annotation_script='src/build/android/buildbot/bb_run_bot.py', |
| 160 )) | 160 )) |
| 161 | 161 |
| 162 | 162 |
| 163 def Update(_config, active_master, c): | 163 def Update(_config, active_master, c): |
| 164 return helper.Update(c) | 164 return helper.Update(c) |
| OLD | NEW |