blob: d53b0d16aceb09fd8a55372025b5b1720ca78165 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["codesearch.go"],
importpath = "go.skia.org/infra/go/codesearch",
visibility = ["//visibility:public"],
deps = [
"//go/httputils:go_default_library",
"//go/skerr:go_default_library",
"//go/util:go_default_library",
],
)
go_test(
name = "go_default_test",
srcs = ["codesearch_test.go"],
embed = [":go_default_library"],
deps = [
"//go/testutils/unittest:go_default_library",
"@com_github_stretchr_testify//assert:go_default_library",
],
)