blob: 8ef718d6009652c281612f503877c6ee9950ce14 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
go_library(
name = "ts_lib",
srcs = ["main.go"],
importpath = "go.skia.org/infra/tree_status/go/types/ts",
visibility = ["//visibility:private"],
deps = [
"//go/sklog",
"//go/util",
"//tree_status/go/types",
"@com_github_skia_dev_go2ts//:go2ts",
],
)
go_binary(
name = "ts",
embed = [":ts_lib"],
visibility = ["//visibility:public"],
)