summaryrefslogtreecommitdiffhomepage
path: root/pkg/sync/atomicptrtest/BUILD
blob: 4fa959df05c6e5bc9da75f8578b4ba2c8969391a (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
package(licenses = ["notice"])  # Apache 2.0

load("//tools/go_stateify:defs.bzl", "go_library", "go_test")
load("//tools/go_generics:defs.bzl", "go_template_instance")

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

go_library(
    name = "atomicptr",
    srcs = ["atomicptr_int.go"],
    importpath = "gvisor.googlesource.com/gvisor/pkg/sync/atomicptr",
)

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