blob: 623ad78948ccdc94fa45d1988dff7bfa2d6e9bed [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
Chris Sosa968a1062013-08-02 17:42:50 -07009CHANNELS = 'canary', 'dev', 'beta', 'stable'
joychenf8f07e22013-07-12 17:45:51 -070010GS_IMAGE_DIR = 'gs://chromeos-image-archive'
11GS_LATEST_MASTER = GS_IMAGE_DIR + '/%(board)s-%(suffix)s/LATEST-master'
12IMAGE_DIR = '%(board)s-%(suffix)s/%(version)s'
13
14GS_RELEASES_DIR = 'gs://chromeos-releases'
15GS_CHANNEL_DIR = GS_RELEASES_DIR + '/%(channel)s-channel/%(board)s/'
16
17VERSION_RE = 'R?[-0-9\.]+'
joychen3cb228e2013-06-12 12:13:13 -070018
19#### Local storage locations and names. ####
20AUTOTEST_DIR = 'autotest'
joychen921e1fb2013-06-28 11:12:20 -070021BASE_IMAGE_FILE = 'chromiumos_base_image.bin'
joychen25d25972013-07-30 14:54:16 -070022IMAGE_FILE = 'chromiumos_image.bin'
beepsc3d0f872013-07-31 21:50:40 -070023FACTORY_IMAGE_FILE = 'factory_test/chromiumos_factory_image.bin'
joychen25d25972013-07-30 14:54:16 -070024RECOVERY_IMAGE_FILE = 'recovery_image.bin'
25STATEFUL_UPDATE_FILE = 'stateful.tgz'
joychen921e1fb2013-06-28 11:12:20 -070026TEST_IMAGE_FILE = 'chromiumos_test_image.bin'
joychen25d25972013-07-30 14:54:16 -070027
28#### Update files
29CACHE_DIR = 'cache'
30METADATA_FILE = 'update.meta'
31STATEFUL_FILE = 'stateful.tgz'
32UPDATE_FILE = 'update.gz'