Files
gvisor/pkg/fdnotifier/BUILD
T
Adin Scannell d29e59af9f Standardize on tools directory.
PiperOrigin-RevId: 291745021
2020-01-27 12:21:00 -08:00

18 lines
335 B
Python

load("//tools:defs.bzl", "go_library")
package(licenses = ["notice"])
go_library(
name = "fdnotifier",
srcs = [
"fdnotifier.go",
"poll_unsafe.go",
],
visibility = ["//:sandbox"],
deps = [
"//pkg/sync",
"//pkg/waiter",
"@org_golang_x_sys//unix:go_default_library",
],
)