Fixing reordered proto library includes

pull/10399/head
Mike Kruskal 2 years ago
parent 0d43511582
commit ba6d17354f
  1. 9
      BUILD.bazel

@ -451,8 +451,9 @@ internal_objc_proto_library(
testonly = 1,
srcs = ["//src/google/protobuf:test_messages_proto3.proto"],
includes = [
"src",
"src/google/protobuf",
# The above must come first.
"src",
],
proto_deps = [":well_known_protos"],
visibility = [
@ -478,8 +479,9 @@ internal_php_proto_library(
"Protobuf_test_messages/Proto3/TestAllTypesProto3/NestedMessage.php",
],
includes = [
"src",
"src/google/protobuf",
# The above must come first.
"src",
],
proto_deps = [":well_known_protos"],
visibility = [
@ -504,8 +506,9 @@ internal_ruby_proto_library(
testonly = 1,
srcs = ["//src/google/protobuf:test_messages_proto3.proto"],
includes = [
"src",
"src/google/protobuf",
# The above must come first.
"src",
],
proto_deps = [":well_known_protos"],
visibility = [

Loading…
Cancel
Save