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