summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/link/rawfile/BUILD
blob: 4efd7c45efc83075c17364a5f2a5d1499c4294bf (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
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "rawfile",
    srcs = [
        "blockingpoll_amd64.s",
        "blockingpoll_arm64.s",
        "blockingpoll_noyield_unsafe.go",
        "blockingpoll_yield_unsafe.go",
        "errors.go",
        "rawfile_unsafe.go",
    ],
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/tcpip",
        "@org_golang_x_sys//unix:go_default_library",
    ],
)

go_test(
    name = "rawfile_test",
    srcs = [
        "errors_test.go",
    ],
    library = "rawfile",
    deps = [
        "//pkg/tcpip",
        "@com_github_google_go_cmp//cmp:go_default_library",
        "@org_golang_x_sys//unix:go_default_library",
    ],
)