blob: 6d8b5f818e4a16f6c0aefc78490413e55c8e8aa8 (
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/errors/linuxerr",
],
)
go_test(
name = "amutex_test",
size = "small",
srcs = ["amutex_test.go"],
library = ":amutex",
deps = ["//pkg/sync"],
)
|