• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package(default_visibility = ["//visibility:public"])
2
3py_library(
4    name = "testing",
5    srcs = ["__init__.py"],
6    deps = [
7        # ":_application_common",
8        ":_server_application",
9    ],
10)
11
12# TODO(ghostwriternr): To be added later.
13# py_library(
14#     name = "_application_common",
15#     srcs = ["_application_common.py",],
16#     deps = [
17#         "//src/python/grpcio_tests/tests/testing/proto:requests",
18#         "//src/python/grpcio_tests/tests/testing/proto:services",
19#     ],
20#     imports = ["../../",],
21# )
22
23py_library(
24    name = "_server_application",
25    srcs = ["_server_application.py"],
26    imports = ["../../"],
27)
28