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