summaryrefslogtreecommitdiffhomepage
path: root/pkg/fdchannel/BUILD
blob: d240132e5f4d0e5ab66d94fd210ce10a0186ce08 (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
load("//tools:defs.bzl", "go_library", "go_test")

licenses(["notice"])

go_library(
    name = "fdchannel",
    srcs = ["fdchannel_unsafe.go"],
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/gohacks",
        "@org_golang_x_sys//unix:go_default_library",
    ],
)

go_test(
    name = "fdchannel_test",
    size = "small",
    srcs = ["fdchannel_test.go"],
    library = ":fdchannel",
    deps = [
        "//pkg/sync",
        "@org_golang_x_sys//unix:go_default_library",
    ],
)