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