forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
47 lines (43 loc) · 1.33 KB
/
BUILD.bazel
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
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "k8s.io/test-infra/gopherage",
visibility = ["//visibility:private"],
deps = [
"//gopherage/cmd/aggregate:go_default_library",
"//gopherage/cmd/diff:go_default_library",
"//gopherage/cmd/filter:go_default_library",
"//gopherage/cmd/html:go_default_library",
"//gopherage/cmd/junit:go_default_library",
"//gopherage/cmd/merge:go_default_library",
"@com_github_spf13_cobra//:go_default_library",
],
)
go_binary(
name = "gopherage",
embed = [":go_default_library"],
visibility = ["//visibility:public"],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [
":package-srcs",
"//gopherage/cmd/aggregate:all-srcs",
"//gopherage/cmd/diff:all-srcs",
"//gopherage/cmd/filter:all-srcs",
"//gopherage/cmd/html:all-srcs",
"//gopherage/cmd/junit:all-srcs",
"//gopherage/cmd/merge:all-srcs",
"//gopherage/pkg/cov:all-srcs",
"//gopherage/pkg/util:all-srcs",
],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)