blob: 5a2e0c192c81d2ec55c9a004c9de548f194f11eb [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
go_library(
name = "bloaty_treemap_lib",
srcs = ["main.go"],
embedsrcs = ["template.html"],
importpath = "go.skia.org/infra/codesize/go/bloaty_treemap",
visibility = ["//visibility:private"],
deps = ["//codesize/go/bloaty"],
)
go_binary(
name = "bloaty_treemap",
embed = [":bloaty_treemap_lib"],
visibility = ["//visibility:public"],
)