• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2021 The gRPC Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14load("@com_github_grpc_grpc//bazel:python_rules.bzl", "py_grpc_library", "py_proto_library")
15load("@rules_proto//proto:defs.bzl", "proto_library")
16load("@rules_python//python:defs.bzl", "py_binary")
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