aboutsummaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authorTony Allevato <allevato@google.com>2017-10-10 07:59:31 -0700
committerTony Allevato <allevato@google.com>2017-10-10 07:59:31 -0700
commit82b3ad6e9ef45cb8e2c2316bf4007278bcba2f99 (patch)
tree326f1232c87dc2a1566e25dd17eae5a746694197 /BUILD
downloadbazel-skylib-82b3ad6e9ef45cb8e2c2316bf4007278bcba2f99.tar.gz
Initial check-in.
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD16
1 files changed, 16 insertions, 0 deletions
diff --git a/BUILD b/BUILD
new file mode 100644
index 0000000..c73e51f
--- /dev/null
+++ b/BUILD
@@ -0,0 +1,16 @@
+licenses(["notice"])
+
+exports_files([
+ "LICENSE",
+ "lib.bzl",
+])
+
+filegroup(
+ name = "test_deps",
+ srcs = [
+ "BUILD",
+ "//lib:test_deps",
+ ] + glob(["*.bzl"]),
+ test_only = True,
+ visibility = ["//visibility:public"],
+)