blob: 424c9083159d34d8f7fd63882ae73ece625eacf3 [file]
load("@rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "bloaty",
srcs = ["bloaty.go"],
importpath = "go.skia.org/infra/codesize/go/bloaty",
visibility = ["//visibility:public"],
deps = ["//go/skerr"],
)
go_test(
name = "bloaty_test",
srcs = ["bloaty_test.go"],
embed = [":bloaty"],
deps = [
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)