aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_defs
diff options
context:
space:
mode:
authorGravatar Nathan Herring <nherring@google.com>2017-11-02 12:35:16 -0400
committerGravatar John Cater <jcater@google.com>2017-11-03 09:52:56 -0400
commit97f0290cc1197311d60f45d49f7c52b70f879a18 (patch)
tree5f1f38463eae7deef510d86c6c44d4bc69dfb8e4 /tools/build_defs
parent975f19adf29b4585887a3584a2cf4f2b868c32dd (diff)
Export hash.bzl.
This allows Skylib `skylark_library` users to use `hash.bzl` as a file dependency without the base Bazel rules having to import the actual `skylark_library` rule from Skylib. Closes #4000. PiperOrigin-RevId: 174337147
Diffstat (limited to 'tools/build_defs')
-rw-r--r--tools/build_defs/hash/BUILD5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/build_defs/hash/BUILD b/tools/build_defs/hash/BUILD
index 878ce002da..f06f5deffe 100644
--- a/tools/build_defs/hash/BUILD
+++ b/tools/build_defs/hash/BUILD
@@ -16,3 +16,8 @@ py_binary(
srcs = ["sha256.py"],
visibility = ["//visibility:public"],
)
+
+exports_files(
+ ["hash.bzl"],
+ visibility = ["//visibility:public"],
+)