blob: 7147e841ac05a0adcde0ed7465d98929c206374e (
plain)
1
2
3
4
5
6
7
8
9
10
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
package(licenses = ["notice"])
go_library(
name = "common",
srcs = ["common.go"],
importpath = "gvisor.dev/gvisor/test/runtimes/common",
visibility = ["//:sandbox"],
)
|