blob: 26ef566d6d2833c5949ca15372b6b6c11d777fef [file] [log] [blame]
load("@io_bazel_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"],
)