aboutsummaryrefslogtreecommitdiff
path: root/python/google/protobuf/internal/import_test_package/BUILD
blob: 90e59505b72f4dc19e85d5813133f38d204aba0a (plain) (blame)
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
# Description:
#   An example package that contains nested protos that are imported from
#   __init__.py. See testPackageInitializationImport in reflection_test.py for
#   details.

package(
    default_visibility = ["//net/proto2/python/internal:__pkg__"],
)

proto_library(
    name = "inner_proto",
    srcs = ["inner.proto"],
    py_api_version = 2,
)

proto_library(
    name = "outer_proto",
    srcs = ["outer.proto"],
    py_api_version = 2,
    deps = [":inner_proto"],
)

py_library(
    name = "import_test_package",
    srcs = ["__init__.py"],
    deps = [":outer_proto"],
)