| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 """ActiveMaster definition.""" | 5 """ActiveMaster definition.""" |
| 6 | 6 |
| 7 from config_bootstrap import Master | 7 from config_bootstrap import Master |
| 8 | 8 |
| 9 class ChromiumWebRTCFYI(Master.Master1): | 9 class ChromiumWebRTCFYI(Master.Master1): |
| 10 project_name = 'Chromium WebRTC FYI' | 10 project_name = 'Chromium WebRTC FYI' |
| 11 master_port = 8056 | 11 master_port = 8056 |
| 12 slave_port = 8156 | 12 slave_port = 8156 |
| 13 master_port_alt = 8256 | 13 master_port_alt = 8256 |
| 14 server_url = 'http://webrtc.googlecode.com' | 14 server_url = 'http://webrtc.googlecode.com' |
| 15 project_url = 'http://webrtc.googlecode.com' | 15 project_url = 'http://webrtc.googlecode.com' |
| 16 from_address = 'chromium-webrtc-cb-fyi-watchlist@google.com' | 16 from_address = 'chromium-webrtc-cb-fyi-watchlist@google.com' |
| 17 master_domain = 'webrtc.org' | 17 master_domain = 'webrtc.org' |
| 18 permitted_domains = ('google.com', 'chromium.org', 'webrtc.org') | 18 permitted_domains = ('google.com', 'chromium.org', 'webrtc.org') |
| 19 base_app_url = 'https://webrtc-status.appspot.com' | 19 base_app_url = 'https://webrtc-status.appspot.com' |
| 20 tree_status_url = base_app_url + '/status' | 20 tree_status_url = base_app_url + '/status' |
| 21 store_revisions_url = base_app_url + '/revisions' | 21 store_revisions_url = base_app_url + '/revisions' |
| 22 last_good_url = base_app_url + '/lkgr' | 22 last_good_url = base_app_url + '/lkgr' |
| 23 buildbot_url = 'http://build.chromium.org/p/chromium.webrtc.fyi/' | 23 buildbot_url = 'http://build.chromium.org/p/chromium.webrtc.fyi/' |
| 24 service_account_file = 'service-account-webrtc.json' | 24 service_account_file = 'service-account-webrtc.json' |
| 25 buildbucket_bucket = 'master.chromium.webrtc.fyi' | 25 buildbucket_bucket = 'master.chromium.webrtc.fyi' |
| 26 pubsub_service_account_file = 'service-account-luci-milo.json' |
| 27 pubsub_topic = 'projects/luci-milo/topics/public-buildbot' |
| 28 name = 'chromium.webrtc.fyi' |
| OLD | NEW |