Build release tarballs in bazel and add make bazel-release rule

This commit is contained in:
Jeff Grafton
2017-01-13 14:47:06 -08:00
parent 14dd0d3bef
commit bc4b6ac397
17 changed files with 521 additions and 26 deletions

1
third_party/BUILD vendored
View File

@@ -20,6 +20,7 @@ filegroup(
"//third_party/forked/golang/netutil:all-srcs",
"//third_party/forked/golang/reflect:all-srcs",
"//third_party/forked/golang/template:all-srcs",
"//third_party/htpasswd:all-srcs",
],
tags = ["automanaged"],
)

16
third_party/htpasswd/BUILD vendored Normal file
View File

@@ -0,0 +1,16 @@
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)