You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
566 B
Python
28 lines
566 B
Python
4 years ago
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||
|
|
||
|
package(default_visibility = ["//visibility:public"])
|
||
|
|
||
|
go_library(
|
||
2 years ago
|
name = "utilities",
|
||
4 years ago
|
srcs = [
|
||
|
"doc.go",
|
||
|
"pattern.go",
|
||
|
"readerfactory.go",
|
||
|
"trie.go",
|
||
|
],
|
||
2 years ago
|
importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/utilities",
|
||
4 years ago
|
)
|
||
|
|
||
|
go_test(
|
||
2 years ago
|
name = "utilities_test",
|
||
4 years ago
|
size = "small",
|
||
|
srcs = ["trie_test.go"],
|
||
2 years ago
|
deps = [":utilities"],
|
||
|
)
|
||
|
|
||
|
alias(
|
||
|
name = "go_default_library",
|
||
|
actual = ":utilities",
|
||
|
visibility = ["//visibility:public"],
|
||
4 years ago
|
)
|