aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/proto/grpc/testing/proto2/BUILD.bazel
blob: c4c4f004efb8fe52a2b650b106b4097d84159501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
load("@grpc_python_dependencies//:requirements.bzl", "requirement")
load("@org_pubref_rules_protobuf//python:rules.bzl", "py_proto_library")

package(default_visibility = ["//visibility:public"])

py_proto_library(
    name = "empty2_proto",
    protos = [
        "empty2.proto",
    ],
    with_grpc = True,
    deps = [
        requirement('protobuf'),
    ],
)

py_proto_library(
    name = "empty2_extensions_proto",
    protos = [
        "empty2_extensions.proto",
    ],
    proto_deps = [
        ":empty2_proto",
    ],
    with_grpc = True,
    deps = [
        requirement('protobuf'),
    ],
)