mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
d0b1d0233d
They don't depend on anything in VFS2, so they should be their own packages. PiperOrigin-RevId: 310416807
18 lines
353 B
Python
18 lines
353 B
Python
load("//tools:defs.bzl", "go_library")
|
|
|
|
licenses(["notice"])
|
|
|
|
go_library(
|
|
name = "timerfd",
|
|
srcs = ["timerfd.go"],
|
|
visibility = ["//pkg/sentry:internal"],
|
|
deps = [
|
|
"//pkg/context",
|
|
"//pkg/sentry/kernel/time",
|
|
"//pkg/sentry/vfs",
|
|
"//pkg/syserror",
|
|
"//pkg/usermem",
|
|
"//pkg/waiter",
|
|
],
|
|
)
|