OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 gitiles_poller |
5 from master import master_config | 6 from master import master_config |
6 from master import master_utils | 7 from master import master_utils |
7 from master.factory import chromium_factory | 8 from master.factory import chromium_factory |
8 | 9 |
9 import master_site_config | 10 import master_site_config |
10 ActiveMaster = master_site_config.ChromiumFYI | 11 ActiveMaster = master_site_config.ChromiumFYI |
11 | 12 |
12 defaults = {} | 13 defaults = {} |
13 | 14 |
14 helper = master_config.Helper(defaults) | 15 helper = master_config.Helper(defaults) |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 'target_arch=x64'), | 72 'target_arch=x64'), |
72 'GYP_GENERATORS': 'ninja', | 73 'GYP_GENERATORS': 'ninja', |
73 }, | 74 }, |
74 'late_cf_archive_build': ActiveMaster.is_production_host, | 75 'late_cf_archive_build': ActiveMaster.is_production_host, |
75 'cf_archive_name': 'drmemory_x64', | 76 'cf_archive_name': 'drmemory_x64', |
76 'gs_acl': 'public-read', | 77 'gs_acl': 'public-read', |
77 'gs_bucket': 'gs://chromium-browser-drfuzz/chromium_win64', | 78 'gs_bucket': 'gs://chromium-browser-drfuzz/chromium_win64', |
78 })) | 79 })) |
79 | 80 |
80 def Update(_update_config, _active_master, c): | 81 def Update(_update_config, _active_master, c): |
| 82 lkgr_poller = gitiles_poller.GitilesPoller( |
| 83 'https://chromium.googlesource.com/chromium/src', |
| 84 branches=['lkgr']) |
| 85 c['change_source'].append(lkgr_poller) |
81 return helper.Update(c) | 86 return helper.Update(c) |
OLD | NEW |