blob: 9bb89e1dae51149febfdb4429d4b9cdfae21d7e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
load("//tools/go_marshal:defs.bzl", "go_library")
package(licenses = ["notice"])
go_library(
name = "external",
testonly = 1,
srcs = ["external.go"],
importpath = "gvisor.dev/gvisor/tools/go_marshal/test/external",
visibility = ["//tools/go_marshal/test:gomarshal_test"],
)
|