k3s/vendor/k8s.io/apimachinery/pkg/util/cache/BUILD

49 lines
1.2 KiB
Python
Raw Normal View History

2019-01-12 04:58:27 +00:00
package(default_visibility = ["//visibility:public"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
"go_test",
)
go_test(
name = "go_default_test",
srcs = [
2019-12-12 01:27:03 +00:00
"expiring_test.go",
2019-01-12 04:58:27 +00:00
"lruexpirecache_test.go",
],
embed = [":go_default_library"],
deps = [
"//staging/src/k8s.io/apimachinery/pkg/util/clock:go_default_library",
"//vendor/github.com/golang/groupcache/lru:go_default_library",
2019-12-12 01:27:03 +00:00
"//vendor/github.com/google/uuid:go_default_library",
2019-01-12 04:58:27 +00:00
],
)
go_library(
name = "go_default_library",
srcs = [
2019-12-12 01:27:03 +00:00
"expiring.go",
2019-01-12 04:58:27 +00:00
"lruexpirecache.go",
],
importmap = "k8s.io/kubernetes/vendor/k8s.io/apimachinery/pkg/util/cache",
importpath = "k8s.io/apimachinery/pkg/util/cache",
2019-12-12 01:27:03 +00:00
deps = [
"//staging/src/k8s.io/apimachinery/pkg/util/clock:go_default_library",
"//vendor/github.com/hashicorp/golang-lru:go_default_library",
],
2019-01-12 04:58:27 +00:00
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)