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