forked from google/nucleus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
38 lines (32 loc) · 769 Bytes
/
BUILD
File metadata and controls
38 lines (32 loc) · 769 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
33
34
35
36
37
38
load("//tools:zip_dir.bzl", "zip_dir")
# KEEP THIS LINE to import nucleus.bzl externally
package(
default_visibility = [
"//visibility:public",
],
)
# TODO(thomaswc): Add smoke tests for Nucleus.
filegroup(
name = "libraries",
srcs = [
"//third_party/nucleus",
"//third_party/nucleus:nucleus_py",
],
)
exports_files(["LICENSE"])
filegroup(
name = "licenses",
srcs = [
":LICENSE",
"//third_party:abseil_cpp.LICENSE", # TODO(b/69856150)
"@com_google_protobuf//:LICENSE",
"@com_googlesource_code_re2//:LICENSE",
"@htslib//:LICENSE",
"@org_tensorflow//:LICENSE",
],
)
zip_dir(
name = "licenses_zip",
srcs = [":licenses"],
zipname = "licenses.zip",
)