Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(630)

Unified Diff: scripts/common/cros_chromite.py

Issue 1068263003: CrOS: Update public waterfall to auto-configure. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Updated from comments. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/common/cros_chromite.py
diff --git a/scripts/common/cros_chromite.py b/scripts/common/cros_chromite.py
index c3a35b200ac912f208cd4b5eee4b0cadf1c994d8..f87c21fd23f82527730b5e5e98d609db355549a6 100755
--- a/scripts/common/cros_chromite.py
+++ b/scripts/common/cros_chromite.py
@@ -72,14 +72,17 @@ class ChromiteTarget(object):
various configuration parameters.
"""
- PRE_CQ_LAUNCHER = 'pre-cq-launcher'
- PRE_CQ = 'pre-cq'
- PFQ = 'pfq'
- PALADIN = 'paladin'
+ ASAN = 'asan'
ghost stip (do not use) 2015/04/10 22:47:04 reviewer note: this is not merely an alphabetic ch
CANARY = 'canary'
+ FACTORY = 'factory'
FIRMWARE = 'firmware'
+ FULL = 'full'
INCREMENTAL = 'incremental'
- FACTORY = 'factory'
+ PALADIN = 'paladin'
+ PFQ = 'pfq'
+ PRE_CQ = 'pre-cq'
+ PRE_CQ_LAUNCHER = 'pre-cq-launcher'
+ REFRESH_PACKAGES = 'refresh-packages'
SDK = 'sdk'
TOOLCHAIN = 'toolchain'
@@ -96,13 +99,16 @@ class ChromiteTarget(object):
# Maps configuration name suffixes to target type constants.
# (see Categorize)
SUFFIX_MAP = collections.OrderedDict((
- (PRE_CQ, ('pre-cq',)),
- (PFQ, ('chrome-pfq', 'chromium-pfq',)),
- (PALADIN, ('paladin',)),
+ (ASAN, ('asan',)),
(CANARY, ('release', 'release-group',)),
+ (FACTORY, ('factory',)),
(FIRMWARE, ('firmware',)),
+ (FULL, ('full',)),
(INCREMENTAL, ('incremental',)),
- (FACTORY, ('factory',)),
+ (PALADIN, ('paladin',)),
+ (PFQ, ('chrome-pfq', 'chromium-pfq',)),
+ (PRE_CQ, ('pre-cq',)),
+ (REFRESH_PACKAGES, ('refresh-packages',)),
(SDK, ('sdk',)),
(TOOLCHAIN, ('toolchain-major', 'toolchain-minor',)),
))

Powered by Google App Engine
This is Rietveld 408576698