bazel-skylib/lib/BUILD

81 lines
1.1 KiB
Python
Raw Permalink Normal View History

load("//:bzl_library.bzl", "bzl_library")
2017-10-10 14:59:31 +00:00
licenses(["notice"])
package(default_visibility = ["//visibility:public"])
2017-10-10 14:59:31 +00:00
filegroup(
name = "test_deps",
2017-10-31 14:02:01 +00:00
testonly = True,
2018-02-20 21:09:20 +00:00
srcs = ["BUILD"] + glob(["*.bzl"]),
2017-10-10 14:59:31 +00:00
)
bzl_library(
name = "collections",
srcs = ["collections.bzl"],
)
bzl_library(
name = "dicts",
srcs = ["dicts.bzl"],
)
bzl_library(
name = "partial",
srcs = ["partial.bzl"],
)
bzl_library(
name = "paths",
srcs = ["paths.bzl"],
)
bzl_library(
name = "selects",
srcs = ["selects.bzl"],
)
bzl_library(
name = "sets",
srcs = [
"old_sets.bzl",
"sets.bzl",
],
)
bzl_library(
name = "new_sets",
srcs = ["new_sets.bzl"],
deps = [":dicts"],
)
bzl_library(
name = "shell",
srcs = ["shell.bzl"],
)
bzl_library(
name = "structs",
srcs = ["structs.bzl"],
)
bzl_library(
name = "types",
srcs = ["types.bzl"],
)
bzl_library(
name = "unittest",
srcs = ["unittest.bzl"],
deps = [
":new_sets",
":sets",
":types",
],
)
2018-02-20 21:11:31 +00:00
bzl_library(
2018-02-20 21:11:31 +00:00
name = "versions",
srcs = ["versions.bzl"],
)