blob: bd3a5cce92dc246c4abf0228d4337424c5ab2d88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
load("//tools:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "amutex",
srcs = ["amutex.go"],
visibility = ["//:sandbox"],
deps = [
"//pkg/context",
"//pkg/syserror",
],
)
go_test(
name = "amutex_test",
size = "small",
srcs = ["amutex_test.go"],
library = ":amutex",
deps = ["//pkg/sync"],
)
|