mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
2862b0b1be
PiperOrigin-RevId: 292021389
34 lines
729 B
Python
34 lines
729 B
Python
load("//tools:defs.bzl", "go_library", "go_test")
|
|
|
|
licenses(["notice"])
|
|
|
|
go_library(
|
|
name = "devtmpfs",
|
|
srcs = ["devtmpfs.go"],
|
|
visibility = ["//pkg/sentry:internal"],
|
|
deps = [
|
|
"//pkg/abi/linux",
|
|
"//pkg/context",
|
|
"//pkg/fspath",
|
|
"//pkg/sentry/fsimpl/tmpfs",
|
|
"//pkg/sentry/kernel/auth",
|
|
"//pkg/sentry/vfs",
|
|
"//pkg/sync",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "devtmpfs_test",
|
|
size = "small",
|
|
srcs = ["devtmpfs_test.go"],
|
|
library = ":devtmpfs",
|
|
deps = [
|
|
"//pkg/abi/linux",
|
|
"//pkg/fspath",
|
|
"//pkg/sentry/contexttest",
|
|
"//pkg/sentry/fsimpl/tmpfs",
|
|
"//pkg/sentry/kernel/auth",
|
|
"//pkg/sentry/vfs",
|
|
],
|
|
)
|