mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
1ceb814544
PiperOrigin-RevId: 513581243
31 lines
608 B
Python
31 lines
608 B
Python
load("//tools:defs.bzl", "go_library", "go_test")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_library(
|
|
name = "linuxerr",
|
|
srcs = [
|
|
"internal.go",
|
|
"linuxerr.go",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//pkg/abi/linux/errno",
|
|
"//pkg/errors",
|
|
"@org_golang_x_sys//unix:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "linuxerr_test",
|
|
srcs = ["linuxerr_test.go"],
|
|
deps = [
|
|
":linuxerr",
|
|
"//pkg/errors",
|
|
"@org_golang_x_sys//unix:go_default_library",
|
|
],
|
|
)
|