blob: 9293f25cbd7fc9379ba47b8e1262f3007572f27d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
package(licenses = ["notice"])
go_library(
name = "gtest",
srcs = ["gtest.go"],
importpath = "gvisor.dev/gvisor/test/syscalls/gtest",
visibility = [
"//test:__subpackages__",
],
)
|