OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2011 The Chromium 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 # This is a dictionary that maps waterfall dashboard names to cbuildbot_configs. |
| 6 # In order to add a new dict, you must edit this first. |
| 7 NAME_CONFIG_DICT = { |
| 8 'x86 generic PFQ': 'x86-generic-pre-flight-queue', |
| 9 'x86 generic commit queue': 'x86-generic-commit-queue', |
| 10 'arm generic PFQ': 'arm-generic-bin', |
| 11 'tegra2 PFQ': 'arm-tegra2-bin', |
| 12 'x86 generic full': 'x86-generic-full', |
| 13 'arm generic full': 'arm-generic-full', |
| 14 'tegra2 full': 'arm-tegra2-full', |
| 15 'tegra2 seaboard full': 'arm-tegra2-seaboard-full', |
| 16 'x86 pineview full': 'x86-pineview-full', |
| 17 'x86 generic chrome PFQ': 'x86-generic-chrome-pre-flight-queue', |
| 18 'arm generic chrome PFQ': 'arm-generic-chrome-pre-flight-queue', |
| 19 'tegra2 chrome PFQ': 'arm-tegra2-chrome-pre-flight-queue', |
| 20 'chromiumos sdk': 'chromiumos-sdk', |
| 21 'refresh packages': 'refresh-packages', |
| 22 'x86 generic ASAN': 'x86-generic-asan', |
| 23 } |
| 24 |
| 25 # CONFIG_NAME_DICT is an inversion of NAME_CONFIG_DICT |
| 26 CONFIG_NAME_DICT = dict([[v, k] for k, v in NAME_CONFIG_DICT.items()]) |
OLD | NEW |