summaryrefslogtreecommitdiffhomepage
path: root/tools/constraintutil/BUILD
blob: 004b708c47975decfb81fcb64781f05fbd48b825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "constraintutil",
    srcs = ["constraintutil.go"],
    marshal = False,
    stateify = False,
    visibility = ["//tools:__subpackages__"],
)

go_test(
    name = "constraintutil_test",
    size = "small",
    srcs = ["constraintutil_test.go"],
    library = ":constraintutil",
)