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

licenses(["notice"])

go_binary(
    name = "go_marshal",
    srcs = ["main.go"],
    visibility = [
        "//:sandbox",
    ],
    deps = [
        "//tools/go_marshal/gomarshal",
    ],
)

config_setting(
    name = "marshal_config_verbose",
    values = {"define": "gomarshal=verbose"},
)