OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 """ActiveMaster definition.""" | |
6 | |
7 from config_bootstrap import Master | |
8 | |
9 class GpuTryServer(Master.Master4): | |
10 project_name = 'Chromium GPU Try Server' | |
11 master_port = 8021 | |
12 slave_port = 8121 | |
13 master_port_alt = 8221 | |
14 reply_to = 'chrome-troopers+tryserver@google.com' | |
15 base_app_url = 'https://chromium-status.appspot.com' | |
16 tree_status_url = base_app_url + '/status' | |
17 store_revisions_url = base_app_url + '/revisions' | |
18 last_good_url = base_app_url + '/lkgr' | |
19 buildbot_url = 'http://build.chromium.org/p/tryserver.chromium.gpu/' | |
20 service_account_file = 'service-account-chromium-tryserver.json' | |
OLD | NEW |