mirror of https://github.com/grpc/grpc-java.git
25 lines
579 B
Python
25 lines
579 B
Python
load("@rules_jvm_external//:defs.bzl", "artifact")
|
|
|
|
java_library(
|
|
name = "testing",
|
|
testonly = 1,
|
|
srcs = glob([
|
|
"src/main/java/io/grpc/testing/*.java",
|
|
]),
|
|
resources = glob([
|
|
"src/main/resources/**",
|
|
]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//api",
|
|
"//context",
|
|
"//inprocess",
|
|
"//stub",
|
|
"//util",
|
|
artifact("com.google.code.findbugs:jsr305"),
|
|
artifact("com.google.guava:guava"),
|
|
artifact("com.google.truth:truth"),
|
|
artifact("junit:junit"),
|
|
],
|
|
)
|