summaryrefslogtreecommitdiffhomepage
path: root/tools/verity/BUILD
blob: 77d16359cfb715c516f1fe02cc5bc35d3a968e3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
load("//tools:defs.bzl", "go_binary")

licenses(["notice"])

go_binary(
    name = "measure_tool",
    srcs = [
        "measure_tool.go",
        "measure_tool_unsafe.go",
    ],
    pure = True,
    deps = [
        "//pkg/abi/linux",
    ],
)