1licenses(["notice"]) 2 3exports_files([ 4 "LICENSE", 5 "WORKSPACE", 6]) 7 8filegroup( 9 name = "stardoc_rule_doc", 10 testonly = 1, 11 srcs = ["docs/stardoc_rule.md"], 12 visibility = ["//test:__pkg__"], 13) 14 15# Sources needed for release tarball. 16filegroup( 17 name = "distro_srcs", 18 srcs = [ 19 "AUTHORS", 20 "BUILD", 21 "CHANGELOG.md", 22 "CONTRIBUTORS", 23 "LICENSE", 24 "//stardoc:distro_srcs", 25 "//stardoc/proto:distro_srcs", 26 ] + glob(["*.bzl"]), 27 visibility = ["//:__subpackages__"], 28) 29 30# Binaries needed for release tarball. 31filegroup( 32 name = "distro_bins", 33 srcs = [ 34 "//stardoc:distro_bins", 35 ], 36 visibility = ["//:__subpackages__"], 37) 38