summaryrefslogtreecommitdiffhomepage
path: root/pkg/bits/BUILD
blob: 0c2dde4f8b387c7bdfeeaaabe59c7ffe596dd7be (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
load("//tools/go_stateify:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

load("//tools/go_generics:defs.bzl", "go_template", "go_template_instance")

go_library(
    name = "bits",
    srcs = [
        "bits.go",
        "bits32.go",
        "bits64.go",
        "uint64_arch_amd64.go",
        "uint64_arch_amd64_asm.s",
        "uint64_arch_generic.go",
    ],
    importpath = "gvisor.dev/gvisor/pkg/bits",
    visibility = ["//:sandbox"],
)

go_template(
    name = "bits_template",
    srcs = ["bits_template.go"],
    types = [
        "T",
    ],
)

go_template_instance(
    name = "bits64",
    out = "bits64.go",
    package = "bits",
    suffix = "64",
    template = ":bits_template",
    types = {
        "T": "uint64",
    },
)

go_template_instance(
    name = "bits32",
    out = "bits32.go",
    package = "bits",
    suffix = "32",
    template = ":bits_template",
    types = {
        "T": "uint32",
    },
)

go_test(
    name = "bits_test",
    size = "small",
    srcs = ["uint64_test.go"],
    embed = [":bits"],
)