forked from google/deepvariant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
46 lines (40 loc) · 995 Bytes
/
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
load("//tools:zip_dir.bzl", "zip_dir")
package(
default_visibility = [
"//visibility:public",
],
)
test_suite(
name = "smoke_tests",
tests = [
"//deepvariant/core:smoke_tests",
"//deepvariant/environment_tests:smoke_tests",
"//deepvariant/testing:smoke_tests",
],
)
filegroup(
name = "binaries",
srcs = [
"//deepvariant:binaries",
],
)
exports_files(["LICENSE"])
filegroup(
name = "licenses",
srcs = [
":LICENSE",
"//third_party:abseil_cpp.LICENSE", # redacted
"//third_party:boost.LICENSE",
"//third_party:tensorflow_models.LICENSE", # redacted
"@com_google_protobuf//:LICENSE",
"@com_googlesource_code_re2//:LICENSE",
"@htslib//:LICENSE",
"@libssw//:README.md", # SSW license embedded in the README.
"@org_tensorflow//:LICENSE",
],
)
zip_dir(
name = "licenses_zip",
srcs = [":licenses"],
zipname = "licenses.zip",
)