-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathBUILD
More file actions
32 lines (28 loc) · 781 Bytes
/
BUILD
File metadata and controls
32 lines (28 loc) · 781 Bytes
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
# See https://github.com/bazelbuild/bazel/blob/master/src/conditions/BUILD for standard conditions.
# Unfortunately, there is no one for android at the moment.
# Linux is the default platform.
config_setting(
name = "android",
values = {
# same as that of mediapipe
"crosstool_top": "//external:android/crosstool",
},
visibility = ["//visibility:public"],
)
config_setting(
name = "windows",
constraint_values = ["@platforms//os:windows"],
visibility = ["//visibility:public"],
)
config_setting(
name = "darwin",
constraint_values = ["@platforms//os:macos"],
visibility = ["//visibility:public"],
)
filegroup(
name = "readme_file",
srcs = [
"README.md",
],
visibility = ["//visibility:public"],
)