summaryrefslogtreecommitdiffhomepage
path: root/pkg/eventfd/BUILD
blob: 02407cb993d8fba587ed950c8c46b17e16cc9c6a (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 = "eventfd",
    srcs = [
        "eventfd.go",
    ],
    visibility = ["//:sandbox"],
    deps = [
        "//pkg/hostarch",
        "//pkg/tcpip/link/rawfile",
        "@org_golang_x_sys//unix:go_default_library",
    ],
)

go_test(
    name = "eventfd_test",
    srcs = ["eventfd_test.go"],
    library = ":eventfd",
)