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