mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
33 lines
896 B
Python
33 lines
896 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"])
|
|
|
|
filegroup(
|
|
name = "package-srcs",
|
|
srcs = glob(
|
|
["**"],
|
|
exclude = [
|
|
"etcd*/**",
|
|
"etcd*.tar.gz",
|
|
],
|
|
),
|
|
visibility = ["//visibility:private"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-srcs",
|
|
srcs = [
|
|
":package-srcs",
|
|
"//third_party/forked/etcd221/pkg/fileutil:all-srcs",
|
|
"//third_party/forked/etcd221/wal:all-srcs",
|
|
"//third_party/forked/etcd237/pkg/fileutil:all-srcs",
|
|
"//third_party/forked/etcd237/wal:all-srcs",
|
|
"//third_party/forked/golang/expansion:all-srcs",
|
|
"//third_party/forked/golang/reflect:all-srcs",
|
|
"//third_party/forked/golang/template:all-srcs",
|
|
"//third_party/forked/gonum/graph:all-srcs",
|
|
"//third_party/go-srcimporter:all-srcs",
|
|
],
|
|
tags = ["automanaged"],
|
|
)
|