aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests/testing/BUILD.bazel
blob: 9bdd616c5693fdb28926828e7f1b05004472de15 (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
package(default_visibility = ["//visibility:public"])

py_library(
    name = "testing",
    srcs = ["__init__.py",],
    deps = [
        # ":_application_common",
        ":_server_application",
    ],
)

# TODO(ghostwriternr): To be added later.
# py_library(
#     name = "_application_common",
#     srcs = ["_application_common.py",],
#     deps = [
#         "//src/python/grpcio_tests/tests/testing/proto:requests",
#         "//src/python/grpcio_tests/tests/testing/proto:services",
#     ],
#     imports = ["../../",],
# )

py_library(
    name = "_server_application",
    srcs = ["_server_application.py",],
    imports = ["../../",],
)