blob: 3d0e934aa43e58c3981933bafcfb81e178d96e37 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "local",
srcs = ["local.go"],
importpath = "go.skia.org/infra/go/cache/local",
visibility = ["//visibility:public"],
deps = [
"//go/cache",
"//go/skerr",
"@com_github_hashicorp_golang_lru//:golang-lru",
],
)
go_test(
name = "local_test",
srcs = ["local_test.go"],
embed = [":local"],
deps = [
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)