blob: 9705770c8b53af5daa040368116878f9118c8375 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "extract",
srcs = ["extract.go"],
importpath = "go.skia.org/infra/comments/go/extract",
visibility = ["//visibility:public"],
)
go_test(
name = "extract_test",
srcs = ["extract_test.go"],
embed = [":extract"],
deps = [
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
],
)