1load("@com_github_grpc_grpc//bazel:python_rules.bzl", "py_grpc_library", "py_proto_library") 2 3# Copyright 2021 The gRPC Authors 4# 5# Licensed under the Apache License, Version 2.0 (the "License"); 6# you may not use this file except in compliance with the License. 7# You may obtain a copy of the License at 8# 9# http://www.apache.org/licenses/LICENSE-2.0 10# 11# Unless required by applicable law or agreed to in writing, software 12# distributed under the License is distributed on an "AS IS" BASIS, 13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14# See the License for the specific language governing permissions and 15# limitations under the License. 16load("@rules_proto//proto:defs.bzl", "proto_library") 17 18proto_library( 19 name = "unary_stream_benchmark_proto", 20 srcs = ["unary_stream_benchmark.proto"], 21 deps = [], 22) 23 24py_proto_library( 25 name = "unary_stream_benchmark_py_pb2", 26 deps = [":unary_stream_benchmark_proto"], 27) 28 29py_grpc_library( 30 name = "unary_stream_benchmark_py_pb2_grpc", 31 srcs = [":unary_stream_benchmark_proto"], 32 deps = [":unary_stream_benchmark_py_pb2"], 33) 34 35py_binary( 36 name = "unary_stream_benchmark", 37 srcs = ["unary_stream_benchmark.py"], 38 python_version = "PY3", 39 srcs_version = "PY3", 40 deps = [ 41 ":unary_stream_benchmark_py_pb2", 42 ":unary_stream_benchmark_py_pb2_grpc", 43 "//src/python/grpcio/grpc:grpcio", 44 ], 45) 46