blob: 7ad6f911c93fdac0d4bb2df120628116cbb91c6b [file] [log] [blame] [edit]
load("@rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "taskname",
srcs = [
"mock_task_name_schema.go",
"task_name_schema.go",
"task_name_schema_gen.go",
],
importpath = "go.skia.org/infra/go/taskname",
visibility = ["//visibility:public"],
deps = ["@com_github_stretchr_testify//mock"],
)
go_test(
name = "taskname_test",
srcs = ["task_name_schema_test.go"],
embed = [":taskname"],
deps = ["@com_github_stretchr_testify//require"],
)