blob: cabe9f465755fab0c9a887970f2804574ea604c3 [file] [log] [blame]
licenses(["notice"]) # Apache 2.0
package(default_visibility = ["//visibility:public"])
load("//:bzl_library.bzl", "bzl_library")
exports_files([
"LICENSE",
"lib.bzl",
])
filegroup(
name = "test_deps",
testonly = True,
srcs = [
"BUILD",
"//lib:test_deps",
] + glob(["*.bzl"]),
)
bzl_library(
name = "lib",
srcs = ["lib.bzl"],
deprecation = (
"lib.bzl will go away in the future, please directly depend on the" +
" module(s) needed as it is more efficient."
),
deps = [
"//lib:collections",
"//lib:dicts",
"//lib:new_sets",
"//lib:partial",
"//lib:paths",
"//lib:selects",
"//lib:sets",
"//lib:shell",
"//lib:structs",
"//lib:types",
"//lib:unittest",
"//lib:versions",
],
)
bzl_library(
name = "bzl_library",
srcs = ["bzl_library.bzl"],
)