1# Copyright 2015 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 6# BigQuery constants. 7 8DATASET = 'public' 9BUILDS_TABLE = 'builds' 10CURRENT_BUILDS_TABLE = 'current_builds' 11 12 13# `Default` module constants. 14 15DEFAULT_HISTORY_DURATION_SECONDS = 60 * 60 * 12 16 17 18# `Update` module constants. 19 20BUILDBOT_BASE_URL = 'https://build.chromium.org/p' 21 22 23MASTER_NAMES = ( 24 'chromium.perf', 25 'chromium.perf.fyi', 26 'client.catapult', 27 'tryserver.chromium.perf', 28 'tryserver.client.catapult', 29) 30 31 32# Code organization / deployment constants. 33 34GCLOUD_THIRD_PARTY_LIBRARIES = ( 35 'apiclient', 36 'httplib2', 37 'oauth2client', 38 'six', 39 'uritemplate', 40) 41