Files
Lucas ManningandgVisor bot e29e270730 Reorganize tpuproxy code.
Now there is a main tpuproxy directory and two subdirs for each of the
different proxy implementations.

PiperOrigin-RevId: 667688748
2024-08-26 13:17:41 -07:00

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",
],
)