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.
 
 
 

14 lines
348 B

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = ["bufconn.go"],
importpath = "google.golang.org/grpc/test/bufconn",
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
srcs = ["bufconn_test.go"],
embed = [":go_default_library"],
)