forked from salesforce/bazel-mystery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
56 lines (47 loc) · 1 KB
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Copyright (c) 2022, salesforce.com, inc.
# All rights reserved.
# SPDX-License-Identifier: BSD-3-Clause
# For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
sh_library(
name = "john",
deps = ["//cars:74383"],
visibility = ["//visibility:public"],
)
sh_library(
name = "amy",
tags = ["female"],
visibility = ["//visibility:public"]
)
sh_library(
name = "james",
visibility = ["//visibility:public"]
)
sh_library(
name = "olivia",
visibility = ["//visibility:public"]
)
sh_library(
name = "michelle",
visibility = ["//visibility:public"]
)
sh_library(
name = "robert",
visibility = ["//visibility:public"]
)
sh_library(
name = "basil",
deps = ["//cars:23245"],
tags = ["tall"],
visibility = ["//visibility:public"],
)
sh_library(
name = "katie",
deps = ["//cars:85465"],
tags = ["small"],
visibility = ["//visibility:public"]
)
sh_library(
name = "mark",
tags = ["small"],
visibility = ["//visibility:public"]
)