mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Now there is a main tpuproxy directory and two subdirs for each of the different proxy implementations. PiperOrigin-RevId: 667688748
21 lines
410 B
Python
21 lines
410 B
Python
load("//tools:defs.bzl", "go_library")
|
|
|
|
package(default_applicable_licenses = ["//:license"])
|
|
|
|
licenses(["notice"])
|
|
|
|
go_library(
|
|
name = "util",
|
|
srcs = [
|
|
"ioctl_unsafe.go",
|
|
"util.go",
|
|
],
|
|
visibility = [
|
|
"//pkg/sentry:internal",
|
|
],
|
|
deps = [
|
|
"@org_golang_x_exp//constraints:go_default_library",
|
|
"@org_golang_x_sys//unix:go_default_library",
|
|
],
|
|
)
|