mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
d29e59af9f
PiperOrigin-RevId: 291745021
23 lines
367 B
Python
23 lines
367 B
Python
load("//tools:defs.bzl", "go_library")
|
|
|
|
package(licenses = ["notice"])
|
|
|
|
go_library(
|
|
name = "usage",
|
|
srcs = [
|
|
"cpu.go",
|
|
"io.go",
|
|
"memory.go",
|
|
"memory_unsafe.go",
|
|
"usage.go",
|
|
],
|
|
visibility = [
|
|
"//:sandbox",
|
|
],
|
|
deps = [
|
|
"//pkg/bits",
|
|
"//pkg/memutil",
|
|
"//pkg/sync",
|
|
],
|
|
)
|