blob: ffc9188466729d0fa5591615cee60bf23125fab5 (
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 = "amutex",
srcs = ["amutex.go"],
visibility = ["//:sandbox"],
deps = ["//pkg/syserror"],
)
go_test(
name = "amutex_test",
size = "small",
srcs = ["amutex_test.go"],
library = ":amutex",
deps = ["//pkg/sync"],
)
|