Check in gVisor.

PiperOrigin-RevId: 194583126
Change-Id: Ica1d8821a90f74e7e745962d71801c598c652463
This commit is contained in:
Googler
2018-04-28 01:44:26 -04:00
committed by Adin Scannell
parent f70210e742
commit d02b74a5dc
1034 changed files with 185323 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package(licenses = ["notice"]) # Apache 2.0
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "binary",
srcs = ["binary.go"],
importpath = "gvisor.googlesource.com/gvisor/pkg/binary",
visibility = ["//:sandbox"],
)
go_test(
name = "binary_test",
size = "small",
srcs = ["binary_test.go"],
embed = [":binary"],
)