blob: dc763f1bba5d5349b88c77cfea032915f3d67b11 [file] [log] [blame]
joychen3cb228e2013-06-12 12:13:13 -07001# Copyright (c) 2013 The Chromium OS 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"""Module contains constants shared across all other devserver modules."""
6
7#### Google Storage locations and names. ####
8# TODO (joyc) move the google storage filenames of artfacts here
joychenf8f07e22013-07-12 17:45:51 -07009GS_IMAGE_DIR = 'gs://chromeos-image-archive'
10GS_LATEST_MASTER = GS_IMAGE_DIR + '/%(board)s-%(suffix)s/LATEST-master'
11IMAGE_DIR = '%(board)s-%(suffix)s/%(version)s'
12
13GS_RELEASES_DIR = 'gs://chromeos-releases'
14GS_CHANNEL_DIR = GS_RELEASES_DIR + '/%(channel)s-channel/%(board)s/'
15
16VERSION_RE = 'R?[-0-9\.]+'
joychen3cb228e2013-06-12 12:13:13 -070017
18#### Local storage locations and names. ####
19AUTOTEST_DIR = 'autotest'
joychen7c2054a2013-07-25 11:14:07 -070020UPDATE_FILE = 'update.gz'
joychen921e1fb2013-06-28 11:12:20 -070021IMAGE_FILE = "chromiumos_image.bin"
22BASE_IMAGE_FILE = 'chromiumos_base_image.bin'
23TEST_IMAGE_FILE = 'chromiumos_test_image.bin'
24RECOVERY_IMAGE_FILE = 'recovery_image.bin'