| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 WebRTCPerf(Master.Master3): | 9 class WebRTCPerf(Master.Master3): |
| 10 project_name = 'WebRTC Perf' | 10 project_name = 'WebRTC Perf' |
| 11 master_port = 20301 | 11 master_port = 20301 |
| 12 slave_port = 30301 | 12 slave_port = 30301 |
| 13 master_port_alt = 25301 | 13 master_port_alt = 25301 |
| 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 = 'webrtc-cb-perf-watchlist@google.com' | 16 from_address = 'webrtc-cb-perf-watchlist@google.com' |
| 17 tree_closing_notification_recipients = ['webrtc-cb-perf-watchlist@google.com'] |
| 18 master_domain = 'webrtc.org' |
| 19 permitted_domains = ('google.com', 'chromium.org', 'webrtc.org') |
| 17 buildbot_url = 'http://build.chromium.org/p/client.webrtc.perf/' | 20 buildbot_url = 'http://build.chromium.org/p/client.webrtc.perf/' |
| 18 service_account_file = 'service-account-webrtc.json' | 21 service_account_file = 'service-account-webrtc.json' |
| 19 buildbucket_bucket = 'master.client.webrtc.perf' | 22 buildbucket_bucket = 'master.client.webrtc.perf' |
| OLD | NEW |