blob: 7cd89e6391b1cf161fdd2ee475fcb9f57423e38b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
load("//tools:defs.bzl", "go_library")
licenses(["notice"])
go_library(
name = "marshal",
srcs = [
"marshal.go",
"marshal_impl_util.go",
],
visibility = [
"//:sandbox",
],
deps = ["//pkg/hostarch"],
)
|