k3s/test/e2e/generated/BUILD

47 lines
1014 B
Python
Raw Normal View History

2016-10-19 21:42:06 +00:00
package(default_visibility = ["//visibility:public"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
)
2018-04-12 00:24:51 +00:00
load("//build:bindata.bzl", "go_bindata")
2016-10-19 21:42:06 +00:00
go_library(
name = "go_default_library",
2016-10-27 15:58:43 +00:00
srcs = [
2017-08-09 22:45:29 +00:00
"bindata.go",
"gobindata_util.go",
2016-10-27 15:58:43 +00:00
"main.go",
],
2017-10-12 20:52:10 +00:00
importpath = "k8s.io/kubernetes/test/e2e/generated",
deps = [
2017-02-01 00:41:54 +00:00
"//vendor/github.com/golang/glog:go_default_library",
],
)
2018-04-12 01:49:38 +00:00
# IMPORTANT: if you make any changes here, you must also update hack/generate-bindata.sh.
2018-04-12 00:24:51 +00:00
go_bindata(
name = "bindata",
srcs = [
"//test/e2e/testing-manifests:all-srcs",
2018-04-12 00:24:51 +00:00
"//test/fixtures:all-srcs",
"//test/images:all-srcs",
],
outs = ["bindata.go"],
2018-04-12 00:24:51 +00:00
compress = True,
include_metadata = False,
2016-10-19 21:42:06 +00:00
)
2017-01-03 22:40:41 +00:00
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)