mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
0f328beb0d
Support is limited to the functionality that exists in VFS1. Updates #2923 #1035 PiperOrigin-RevId: 317981417
17 lines
332 B
Python
17 lines
332 B
Python
load("//tools:defs.bzl", "go_library")
|
|
|
|
licenses(["notice"])
|
|
|
|
go_library(
|
|
name = "ttydev",
|
|
srcs = ["ttydev.go"],
|
|
visibility = ["//pkg/sentry:internal"],
|
|
deps = [
|
|
"//pkg/abi/linux",
|
|
"//pkg/context",
|
|
"//pkg/sentry/fsimpl/devtmpfs",
|
|
"//pkg/sentry/vfs",
|
|
"//pkg/usermem",
|
|
],
|
|
)
|