blob: 70b18498e2d8a563a829c74fe9e4e465758a043d [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"memrtc.go",
"rtcache.go",
],
importpath = "go.skia.org/infra/go/rtcache",
visibility = ["//visibility:public"],
deps = [
"//go/skerr:go_default_library",
"@com_github_hashicorp_golang_lru//:go_default_library",
],
)
go_test(
name = "go_default_test",
srcs = ["memrtc_test.go"],
embed = [":go_default_library"],
deps = [
"//go/testutils/unittest:go_default_library",
"@com_github_stretchr_testify//assert:go_default_library",
"@com_github_stretchr_testify//require:go_default_library",
],
)