Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 1 | // Copyright 2019 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 | import 'shared/typedef.js'; |
| 6 | |
| 7 | /** @type {ProjectName} */ |
| 8 | export const NAME = 'projects/chromium'; |
| 9 | |
| 10 | /** @type {Project} */ |
| 11 | export const PROJECT = Object.freeze({ |
| 12 | name: NAME, |
| 13 | displayName: 'Chromium', |
| 14 | summary: 'A great open source project.', |
| 15 | thumbnailUrl: 'chromium.png', |
| 16 | }); |
| 17 | |
| 18 | /** @type {ProjectName} */ |
| 19 | export const NAME_2 = 'projects/monorail'; |
| 20 | |
| 21 | /** @type {Project} */ |
| 22 | export const PROJECT_2 = Object.freeze({ |
| 23 | name: NAME_2, |
| 24 | displayName: 'mOnOrAiL', |
| 25 | summary: 'Best issue tracker.', |
| 26 | thumbnailUrl: 'dogtrain.gif', |
| 27 | }); |