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