
miekg dependency was forking some of the golang standard library. We can fork it directly into the third_party folder respecting the LICENSE.
29 lines
669 B
Python
29 lines
669 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/golang/expansion:all-srcs",
|
|
"//third_party/forked/golang/net:all-srcs",
|
|
"//third_party/forked/golang/reflect:all-srcs",
|
|
"//third_party/forked/golang/template:all-srcs",
|
|
"//third_party/forked/gonum/graph:all-srcs",
|
|
],
|
|
tags = ["automanaged"],
|
|
)
|