blob: dc9137abdac1becde0cd2dbd41cdc8bc7f9c5d8e [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["human.go"],
importpath = "go.skia.org/infra/go/human",
visibility = ["//visibility:public"],
deps = ["//go/sklog:go_default_library"],
)
go_test(
name = "go_default_test",
srcs = ["human_test.go"],
embed = [":go_default_library"],
deps = ["//go/testutils/unittest:go_default_library"],
)