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

package(licenses = ["notice"])

go_library(
    name = "tmutex",
    srcs = ["tmutex.go"],
    visibility = ["//:sandbox"],
)

go_test(
    name = "tmutex_test",
    size = "medium",
    srcs = ["tmutex_test.go"],
    library = ":tmutex",
    deps = ["//pkg/sync"],
)