ceph-csi/vendor/k8s.io/kubernetes/test/e2e/generated/BUILD

47 lines
1003 B
Python
Raw Normal View History

2018-01-09 18:57:14 +00:00
package(default_visibility = ["//visibility:public"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
)
2018-07-18 14:47:22 +00:00
load("//build:bindata.bzl", "go_bindata")
2018-01-09 18:57:14 +00:00
go_library(
name = "go_default_library",
srcs = [
"bindata.go",
"gobindata_util.go",
"main.go",
],
importpath = "k8s.io/kubernetes/test/e2e/generated",
deps = [
2018-11-26 18:23:56 +00:00
"//vendor/k8s.io/klog:go_default_library",
2018-01-09 18:57:14 +00:00
],
)
2018-07-18 14:47:22 +00:00
# IMPORTANT: if you make any changes here, you must also update hack/generate-bindata.sh.
go_bindata(
2018-01-09 18:57:14 +00:00
name = "bindata",
srcs = [
"//test/e2e/testing-manifests:all-srcs",
2018-07-18 14:47:22 +00:00
"//test/fixtures:all-srcs",
"//test/images:all-srcs",
2018-01-09 18:57:14 +00:00
],
outs = ["bindata.go"],
2018-07-18 14:47:22 +00:00
compress = True,
include_metadata = False,
2018-01-09 18:57:14 +00:00
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)