summaryrefslogtreecommitdiffhomepage
path: root/tools/go_marshal/primitive/BUILD
blob: cc08ba63a61c4d266e91f6bc4451f42038a36e5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
load("//tools:defs.bzl", "go_library")

licenses(["notice"])

go_library(
    name = "primitive",
    srcs = [
        "primitive.go",
    ],
    marshal = True,
    visibility = [
        "//:sandbox",
    ],
    deps = [
        "//pkg/usermem",
        "//tools/go_marshal/marshal",
    ],
)