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