mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
33 lines
627 B
Python
33 lines
627 B
Python
load("//tools:defs.bzl", "go_library", "go_test")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_library(
|
|
name = "limits",
|
|
srcs = [
|
|
"context.go",
|
|
"limits.go",
|
|
"linux.go",
|
|
],
|
|
visibility = ["//:sandbox"],
|
|
deps = [
|
|
"//pkg/abi/linux",
|
|
"//pkg/context",
|
|
"//pkg/sync",
|
|
"@org_golang_x_sys//unix:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "limits_test",
|
|
size = "small",
|
|
srcs = [
|
|
"limits_test.go",
|
|
],
|
|
library = ":limits",
|
|
deps = ["@org_golang_x_sys//unix:go_default_library"],
|
|
)
|