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