mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
d29e59af9f
PiperOrigin-RevId: 291745021
17 lines
291 B
Python
17 lines
291 B
Python
load("//tools:defs.bzl", "go_library", "go_test")
|
|
|
|
package(licenses = ["notice"])
|
|
|
|
go_library(
|
|
name = "binary",
|
|
srcs = ["binary.go"],
|
|
visibility = ["//:sandbox"],
|
|
)
|
|
|
|
go_test(
|
|
name = "binary_test",
|
|
size = "small",
|
|
srcs = ["binary_test.go"],
|
|
library = ":binary",
|
|
)
|