mirror of
https://github.com/bazelbuild/bazel-skylib
synced 2024-11-30 10:41:18 +00:00
17 lines
254 B
Python
17 lines
254 B
Python
licenses(["notice"])
|
|
|
|
exports_files([
|
|
"LICENSE",
|
|
"lib.bzl",
|
|
])
|
|
|
|
filegroup(
|
|
name = "test_deps",
|
|
srcs = [
|
|
"BUILD",
|
|
"//lib:test_deps",
|
|
] + glob(["*.bzl"]),
|
|
testonly = True,
|
|
visibility = ["//visibility:public"],
|
|
)
|