prometheus/vendor/github.com/grpc-ecosystem/grpc-gateway/internal/httprule/BUILD.bazel
Julien Pivotto a17ddcf0f9
update vendor (#6936)
Signed-off-by: Julien Pivotto <roidelapluie@inuits.eu>
2020-03-09 15:27:19 +01:00

33 lines
758 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
package(default_visibility = ["//visibility:public"])
go_library(
name = "go_default_library",
srcs = [
"compile.go",
"parse.go",
"types.go",
],
importpath = "github.com/grpc-ecosystem/grpc-gateway/internal/httprule",
deps = [
"//utilities:go_default_library",
"@com_github_golang_glog//:go_default_library",
],
)
go_test(
name = "go_default_test",
size = "small",
srcs = [
"compile_test.go",
"parse_test.go",
"types_test.go",
],
embed = [":go_default_library"],
deps = [
"//utilities:go_default_library",
"@com_github_golang_glog//:go_default_library",
],
)