blob: 88a8ee40688f1c41f96f4be27f41efde28683fa1 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "trie",
srcs = ["trie.go"],
importpath = "go.skia.org/infra/go/trie",
visibility = ["//visibility:public"],
deps = ["//go/util"],
)
go_test(
name = "trie_test",
srcs = ["trie_test.go"],
embed = [":trie"],
deps = [
"//go/deepequal/assertdeep",
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
],
)