浏览代码

Delete unused files.

Feng Xiao 10 年之前
父节点
当前提交
ae11803d77
共有 1 个文件被更改,包括 0 次插入27 次删除
  1. 0 27
      python/google/protobuf/internal/import_test_package/BUILD

+ 0 - 27
python/google/protobuf/internal/import_test_package/BUILD

@@ -1,27 +0,0 @@
-# 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"],
-)