blob: 292a4a7b838021d197a14def346f4579d96152e9 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
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"],
)