summaryrefslogtreecommitdiffhomepage
path: root/pkg/sync/atomicptr/BUILD
blob: a6a7f01acd9cb31cf55318d0d67234597d16394b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
load("//tools:defs.bzl", "go_library", "go_test")
load("//tools/go_generics:defs.bzl", "go_template", "go_template_instance")

package(licenses = ["notice"])

go_template(
    name = "generic_atomicptr",
    srcs = ["generic_atomicptr_unsafe.go"],
    types = [
        "Value",
    ],
    visibility = ["//:sandbox"],
)

go_template_instance(
    name = "atomicptr_int",
    out = "atomicptr_int_unsafe.go",
    package = "atomicptr",
    suffix = "Int",
    template = ":generic_atomicptr",
    types = {
        "Value": "int",
    },
)

go_library(
    name = "atomicptr",
    srcs = ["atomicptr_int_unsafe.go"],
)

go_test(
    name = "atomicptr_test",
    size = "small",
    srcs = ["atomicptr_test.go"],
    library = ":atomicptr",
)