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