Alex Miller | 511a9e3 | 2012-07-03 09:16:47 -0700 | [diff] [blame] | 1 | # Copyright (c) 2012 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 | |
| 6 | """Module containing the constants to be reused throughout suite_scheduler.""" |
| 7 | |
| 8 | |
| 9 | class Labels: |
| 10 | """Constants related to label names. |
| 11 | |
| 12 | @var BOARD_PREFIX The string with which board labels are prefixed. |
| 13 | @var POOL_PREFIX The stright with which pool labels are prefixed.""" |
| 14 | BOARD_PREFIX = 'board:' |
| 15 | POOL_PREFIX = 'pool:' |
Dan Shi | a25e0d4 | 2015-07-23 15:00:04 -0700 | [diff] [blame] | 16 | |
| 17 | |
| 18 | class Builds: |
| 19 | """Constants related to build type. |
| 20 | |
| 21 | @var FIRMWARE_RW: The string indicating the given build is used to update |
| 22 | RW firmware. |
| 23 | @var CROS: The string indicating the given build is used to update ChromeOS. |
| 24 | """ |
| 25 | FIRMWARE_RW = 'firmware_rw' |
Dan Shi | b49bb8b | 2016-03-01 15:29:27 -0800 | [diff] [blame^] | 26 | FIRMWARE_RO = 'firmware_ro' |
| 27 | CROS = 'cros' |