aboutsummaryrefslogtreecommitdiff
path: root/tests/legacy/examples/external/BUILD.bazel
blob: a56ec6e586107332a868af9664c53d6a6f0dda70 (plain)
1
2
3
4
5
6
7
8
9
10
11
load("@io_bazel_rules_go//go:def.bzl", "go_binary")

go_binary(
    name = "record_log",
    srcs = [
        "main.go",
    ],
    deps = [
        "@com_github_golang_glog//:go_default_library",
    ],
)