Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 """ActiveMaster definition.""" | |
| 6 | |
| 7 from config_bootstrap import Master | |
| 8 | |
| 9 class WebRTCPerf(Master.Master3): | |
| 10 project_name = 'WebRTC Perf' | |
| 11 master_port = 20301 | |
|
kjellander_chromium
2016/06/01 18:11:40
These ports were generated with
$ scripts/tools/ma
ghost stip (do not use)
2016/06/01 18:43:49
I think friedman@ has to screen the ports now? Thi
friedman
2016/06/01 18:46:57
1-10 used to be reserved but no one had a valid re
| |
| 12 slave_port = 30301 | |
| 13 master_port_alt = 25301 | |
| 14 server_url = 'http://webrtc.googlecode.com' | |
| 15 project_url = 'http://webrtc.googlecode.com' | |
| 16 from_address = 'webrtc-cb-perf-watchlist@google.com' | |
| 17 buildbot_url = 'http://build.chromium.org/p/client.webrtc.perf/' | |
| 18 service_account_file = 'service-account-webrtc.json' | |
| 19 buildbucket_bucket = 'master.client.webrtc.perf' | |
| OLD | NEW |