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