|
|
|
@ -801,10 +801,13 @@ cc_test( |
|
|
|
|
"src/google/protobuf/**/*", |
|
|
|
|
# Files for csharp_bootstrap_unittest.cc. |
|
|
|
|
"conformance/**/*", |
|
|
|
|
]) + glob([ |
|
|
|
|
]) + glob( |
|
|
|
|
[ |
|
|
|
|
# Files for csharp_bootstrap_unittest.cc. |
|
|
|
|
"csharp/src/**/*", |
|
|
|
|
], allow_empty=True), |
|
|
|
|
], |
|
|
|
|
allow_empty = True, |
|
|
|
|
), |
|
|
|
|
includes = [ |
|
|
|
|
"src/", |
|
|
|
|
], |
|
|
|
@ -1020,10 +1023,6 @@ py_proto_library( |
|
|
|
|
|
|
|
|
|
py_library( |
|
|
|
|
name = "protobuf_python", |
|
|
|
|
deps = [ |
|
|
|
|
":well_known_types_py_pb2", |
|
|
|
|
":python_srcs", |
|
|
|
|
], |
|
|
|
|
data = select({ |
|
|
|
|
"//conditions:default": [], |
|
|
|
|
":use_fast_cpp_protos": [ |
|
|
|
@ -1031,6 +1030,10 @@ py_library( |
|
|
|
|
":python/google/protobuf/pyext/_message.so", |
|
|
|
|
], |
|
|
|
|
}), |
|
|
|
|
deps = [ |
|
|
|
|
":python_srcs", |
|
|
|
|
":well_known_types_py_pb2", |
|
|
|
|
], |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
# Copy the test proto files from src/google/protobuf to |
|
|
|
@ -1058,8 +1061,8 @@ py_proto_library( |
|
|
|
|
default_runtime = "", |
|
|
|
|
protoc = ":protoc", |
|
|
|
|
srcs_version = "PY2AND3", |
|
|
|
|
deps = [":well_known_types_py_pb2"], |
|
|
|
|
visibility = ["//visibility:public"], |
|
|
|
|
deps = [":well_known_types_py_pb2"], |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
py_proto_library( |
|
|
|
@ -1072,8 +1075,8 @@ py_proto_library( |
|
|
|
|
default_runtime = ":protobuf_python", |
|
|
|
|
protoc = ":protoc", |
|
|
|
|
srcs_version = "PY2AND3", |
|
|
|
|
deps = [":python_common_test_protos"], |
|
|
|
|
visibility = ["//visibility:public"], |
|
|
|
|
deps = [":python_common_test_protos"], |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
py_library( |
|
|
|
@ -1139,12 +1142,14 @@ proto_lang_toolchain( |
|
|
|
|
alias( |
|
|
|
|
name = "objectivec", |
|
|
|
|
actual = "//objectivec", |
|
|
|
|
tags = ["manual"], |
|
|
|
|
visibility = ["//visibility:public"], |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
alias( |
|
|
|
|
name = "protobuf_objc", |
|
|
|
|
actual = "//objectivec", |
|
|
|
|
tags = ["manual"], |
|
|
|
|
visibility = ["//visibility:public"], |
|
|
|
|
) |
|
|
|
|
|
|
|
|
@ -1155,7 +1160,7 @@ alias( |
|
|
|
|
genrule( |
|
|
|
|
name = "generated_protos", |
|
|
|
|
srcs = ["src/google/protobuf/unittest_import.proto"], |
|
|
|
|
outs = ["unittest_gen.proto"], |
|
|
|
|
outs = ["unittest_gen_import.proto"], |
|
|
|
|
cmd = "cat $(SRCS) | sed 's|google/|src/google/|' > $(OUTS)", |
|
|
|
|
) |
|
|
|
|
|
|
|
|
@ -1474,7 +1479,8 @@ internal_gen_kt_protos( |
|
|
|
|
# Files included in all source distributions |
|
|
|
|
pkg_files( |
|
|
|
|
name = "common_dist_files", |
|
|
|
|
srcs = glob([ |
|
|
|
|
srcs = glob( |
|
|
|
|
[ |
|
|
|
|
"*.bzl", |
|
|
|
|
"cmake/*.cmake", |
|
|
|
|
"cmake/*.in", |
|
|
|
@ -1495,7 +1501,9 @@ pkg_files( |
|
|
|
|
"missing", |
|
|
|
|
"protobuf*.pc.in", |
|
|
|
|
"test-driver", |
|
|
|
|
], allow_empty = True) + [ |
|
|
|
|
], |
|
|
|
|
allow_empty = True, |
|
|
|
|
) + [ |
|
|
|
|
"BUILD.bazel", |
|
|
|
|
"CHANGES.txt", |
|
|
|
|
"CMakeLists.txt", |
|
|
|
|