You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
1.0 KiB

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["service.go"],
importpath = "google.golang.org/grpc/channelz/service",
visibility = ["//visibility:public"],
deps = [
"//:go_default_library",
"//channelz/grpc_channelz_v1:go_default_library",
"//connectivity:go_default_library",
"//internal/channelz:go_default_library",
"@com_github_golang_protobuf//ptypes:go_default_library",
"@io_bazel_rules_go//proto/wkt:wrappers_go_proto",
"@org_golang_x_net//context:go_default_library",
],
)
go_test(
name = "go_default_test",
srcs = ["service_test.go"],
embed = [":go_default_library"],
deps = [
"//channelz/grpc_channelz_v1:go_default_library",
"//connectivity:go_default_library",
"//internal/channelz:go_default_library",
"@com_github_golang_protobuf//ptypes:go_default_library",
"@org_golang_x_net//context:go_default_library",
],
)