blob: c25f46bb7fed28488d6fe2111bf92cb84bf4efc7 [file] [log] [blame]
Copybara854996b2021-09-07 19:36:02 +00001// 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
5import 'shared/typedef.js';
6
7/** @type {ProjectName} */
8export const NAME = 'projects/chromium';
9
10/** @type {Project} */
11export 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} */
19export const NAME_2 = 'projects/monorail';
20
21/** @type {Project} */
22export const PROJECT_2 = Object.freeze({
23 name: NAME_2,
24 displayName: 'mOnOrAiL',
25 summary: 'Best issue tracker.',
26 thumbnailUrl: 'dogtrain.gif',
27});