summaryrefslogtreecommitdiffhomepage
path: root/pkg/fdchannel/BUILD
blob: d9104ef023c68b9b5442c8cd9c93b9c61507e51e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
load("//tools:defs.bzl", "go_library", "go_test")

licenses(["notice"])

go_library(
    name = "fdchannel",
    srcs = ["fdchannel_unsafe.go"],
    visibility = ["//visibility:public"],
)

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