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.
19 lines
408 B
19 lines
408 B
# Functional tests for Dagger-gRPC
|
|
|
|
load("@rules_java//java:defs.bzl", "java_proto_library")
|
|
|
|
package(default_visibility = ["//:src"])
|
|
|
|
# TODO(dpb): enable tests once java_grpc_library is ready in bazel:
|
|
# https://github.com/grpc/grpc-java/issues/2756
|
|
|
|
java_proto_library(
|
|
name = "coffee_service_java_proto",
|
|
deps = [":protos"],
|
|
)
|
|
|
|
proto_library(
|
|
name = "protos",
|
|
srcs = glob(["*.proto"]),
|
|
)
|