blob: 0d0a8d066f8e682061fff7725cd8cd482d6cdc2c [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "bugs",
srcs = [
"bugs.go",
"open_issues.go",
],
importpath = "go.skia.org/infra/bugs-central/go/bugs",
visibility = ["//visibility:public"],
deps = [
"//bugs-central/go/types",
"//go/sklog",
],
)
go_test(
name = "bugs_test",
srcs = ["open_issues_test.go"],
embed = [":bugs"],
deps = [
"//bugs-central/go/types",
"//go/testutils/unittest",
"@com_github_stretchr_testify//require",
],
)