summaryrefslogtreecommitdiffhomepage
path: root/pkg/ilist/BUILD
blob: 16a738e8907dd13b15e36cf6ee7815ca17131a4e (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
57
58
59
60
61
62
63
64
65
66
package(licenses = ["notice"])  # Apache 2.0

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
load("//tools/go_generics:defs.bzl", "go_template", "go_template_instance")
load("//tools/go_stateify:defs.bzl", "go_stateify")

go_stateify(
    name = "list_state",
    srcs = [
        "interface_list.go",
    ],
    out = "interface_list_state.go",
    package = "ilist",
)

go_library(
    name = "ilist",
    srcs = [
        "interface_list.go",
        "interface_list_state.go",
    ],
    importpath = "gvisor.googlesource.com/gvisor/pkg/ilist",
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/state",
    ],
)

go_template_instance(
    name = "interface_list",
    out = "interface_list.go",
    package = "ilist",
    template = ":generic_list",
    types = {},
)

# This list is used for benchmarking.
go_template_instance(
    name = "test_list",
    out = "test_list.go",
    package = "ilist",
    prefix = "direct",
    template = ":generic_list",
    types = {
        "Linker": "*direct",
    },
)

go_test(
    name = "list_test",
    size = "small",
    srcs = [
        "list_test.go",
        "test_list.go",
    ],
    embed = [":ilist"],
)

go_template(
    name = "generic_list",
    srcs = [
        "list.go",
    ],
    opt_types = ["Linker"],
    visibility = ["//visibility:public"],
)