forked from bazelbuild/bazel-skylib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
40 lines (34 loc) · 722 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
licenses(["notice"]) # Apache 2.0
package(default_visibility = ["//visibility:public"])
load("//:skylark_library.bzl", "skylark_library")
exports_files([
"LICENSE",
"lib.bzl",
])
filegroup(
name = "test_deps",
testonly = True,
srcs = [
"BUILD",
"//lib:test_deps",
] + glob(["*.bzl"]),
)
skylark_library(
name = "lib",
srcs = ["lib.bzl"],
deps = [
"//lib:collections",
"//lib:dicts",
"//lib:paths",
"//lib:selects",
"//lib:sets",
"//lib:shell",
"//lib:structs",
"//lib:unittest",
"//lib:versions",
],
)
skylark_library(
name = "skylark_library",
srcs = ["skylark_library.bzl"],
)