Work around windows path length limitations by moving immutable -> full in open source (new generator paths) and shortening long file names.

Re-enable windows bazel test.

PiperOrigin-RevId: 633224191
pull/16736/head
Sandy Zhang 10 months ago committed by Copybara-Service
parent 904266db57
commit ce026abf92
  1. 2
      .github/workflows/test_bazel.yml
  2. 2
      src/google/protobuf/compiler/java/BUILD.bazel
  3. 2
      src/google/protobuf/compiler/java/file.cc
  4. 6
      src/google/protobuf/compiler/java/full/BUILD.bazel
  5. 2
      src/google/protobuf/compiler/java/full/enum.cc
  6. 0
      src/google/protobuf/compiler/java/full/enum.h
  7. 2
      src/google/protobuf/compiler/java/full/enum_field.cc
  8. 2
      src/google/protobuf/compiler/java/full/enum_field.h
  9. 2
      src/google/protobuf/compiler/java/full/extension.cc
  10. 0
      src/google/protobuf/compiler/java/full/extension.h
  11. 0
      src/google/protobuf/compiler/java/full/field_generator.h
  12. 8
      src/google/protobuf/compiler/java/full/generator_factory.cc
  13. 0
      src/google/protobuf/compiler/java/full/generator_factory.h
  14. 12
      src/google/protobuf/compiler/java/full/make_field_gens.cc
  15. 8
      src/google/protobuf/compiler/java/full/make_field_gens.h
  16. 2
      src/google/protobuf/compiler/java/full/map_field.cc
  17. 2
      src/google/protobuf/compiler/java/full/map_field.h
  18. 10
      src/google/protobuf/compiler/java/full/message.cc
  19. 2
      src/google/protobuf/compiler/java/full/message.h
  20. 10
      src/google/protobuf/compiler/java/full/message_builder.cc
  21. 2
      src/google/protobuf/compiler/java/full/message_builder.h
  22. 2
      src/google/protobuf/compiler/java/full/message_field.cc
  23. 2
      src/google/protobuf/compiler/java/full/message_field.h
  24. 2
      src/google/protobuf/compiler/java/full/primitive_field.cc
  25. 2
      src/google/protobuf/compiler/java/full/primitive_field.h
  26. 2
      src/google/protobuf/compiler/java/full/service.cc
  27. 0
      src/google/protobuf/compiler/java/full/service.h
  28. 2
      src/google/protobuf/compiler/java/full/string_field.cc
  29. 2
      src/google/protobuf/compiler/java/full/string_field.h
  30. 6
      src/google/protobuf/compiler/java/lite/BUILD.bazel
  31. 2
      src/google/protobuf/compiler/java/lite/generator_factory.cc
  32. 2
      src/google/protobuf/compiler/java/lite/make_field_gens.cc
  33. 6
      src/google/protobuf/compiler/java/lite/make_field_gens.h
  34. 2
      src/google/protobuf/compiler/java/lite/message.cc
  35. 2
      src/google/protobuf/compiler/java/lite/message_builder.cc
  36. 4
      src/google/protobuf/compiler/objectivec/BUILD.bazel
  37. 2
      src/google/protobuf/compiler/objectivec/enum.cc
  38. 2
      src/google/protobuf/compiler/objectivec/message.cc
  39. 2
      src/google/protobuf/compiler/objectivec/text_format_decode_data_unittest.cc
  40. 2
      src/google/protobuf/compiler/objectivec/tf_decode_data.cc
  41. 6
      src/google/protobuf/compiler/objectivec/tf_decode_data.h
  42. 2
      src/google/protobuf/compiler/rust/accessors/BUILD.bazel
  43. 2
      src/google/protobuf/compiler/rust/accessors/accessors.cc
  44. 0
      src/google/protobuf/compiler/rust/accessors/generator.h
  45. 2
      src/google/protobuf/compiler/rust/accessors/map.cc
  46. 2
      src/google/protobuf/compiler/rust/accessors/repeated_field.cc
  47. 2
      src/google/protobuf/compiler/rust/accessors/singular_message.cc
  48. 2
      src/google/protobuf/compiler/rust/accessors/singular_scalar.cc
  49. 2
      src/google/protobuf/compiler/rust/accessors/singular_string.cc
  50. 2
      src/google/protobuf/compiler/rust/accessors/unsupported_field.cc

@ -47,8 +47,6 @@ jobs:
- name: Run tests
uses: protocolbuffers/protobuf-ci/bazel@v3
# TODO Silence this until we have a fix.
if: runner.os != 'Windows' || matrix.bzlmod
with:
credentials: ${{ secrets.GAR_SERVICE_ACCOUNT }}
bazel-cache: examples

@ -128,7 +128,7 @@ cc_library(
"//src/google/protobuf/compiler:code_generator",
"//src/google/protobuf/compiler:retention",
"//src/google/protobuf/compiler:versions",
"//src/google/protobuf/compiler/java/immutable",
"//src/google/protobuf/compiler/java/full",
"//src/google/protobuf/compiler/java/lite",
"//src/google/protobuf/io",
"//src/google/protobuf/io:printer",

@ -25,7 +25,7 @@
#include "google/protobuf/compiler/java/generator_common.h"
#include "google/protobuf/compiler/java/generator_factory.h"
#include "google/protobuf/compiler/java/helpers.h"
#include "google/protobuf/compiler/java/immutable/generator_factory.h"
#include "google/protobuf/compiler/java/full/generator_factory.h"
#include "google/protobuf/compiler/java/lite/generator_factory.h"
#include "google/protobuf/compiler/java/name_resolver.h"
#include "google/protobuf/compiler/java/options.h"

@ -46,8 +46,8 @@ cc_library(
cc_library(
name = "mfg",
srcs = ["make_field_generators.cc"],
hdrs = ["make_field_generators.h"],
srcs = ["make_field_gens.cc"],
hdrs = ["make_field_gens.h"],
strip_include_prefix = "/src",
deps = [
":fg",
@ -94,7 +94,7 @@ cc_library(
)
cc_library(
name = "immutable",
name = "full",
srcs = [
"extension.cc",
"generator_factory.cc",

@ -9,7 +9,7 @@
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
#include "google/protobuf/compiler/java/immutable/enum.h"
#include "google/protobuf/compiler/java/full/enum.h"
#include <algorithm>
#include <cmath>

@ -9,7 +9,7 @@
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
#include "google/protobuf/compiler/java/immutable/enum_field.h"
#include "google/protobuf/compiler/java/full/enum_field.h"
#include <cstdint>
#include <string>

@ -15,7 +15,7 @@
#include <string>
#include "absl/container/flat_hash_map.h"
#include "google/protobuf/compiler/java/immutable/field_generator.h"
#include "google/protobuf/compiler/java/full/field_generator.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/io/printer.h"

@ -9,7 +9,7 @@
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
#include "google/protobuf/compiler/java/immutable/extension.h"
#include "google/protobuf/compiler/java/full/extension.h"
#include "google/protobuf/compiler/java/context.h"
#include "google/protobuf/compiler/java/doc_comment.h"

@ -12,10 +12,10 @@
#include <memory>
#include "google/protobuf/compiler/java/context.h"
#include "google/protobuf/compiler/java/immutable/enum.h"
#include "google/protobuf/compiler/java/immutable/extension.h"
#include "google/protobuf/compiler/java/immutable/message.h"
#include "google/protobuf/compiler/java/immutable/service.h"
#include "google/protobuf/compiler/java/full/enum.h"
#include "google/protobuf/compiler/java/full/extension.h"
#include "google/protobuf/compiler/java/full/message.h"
#include "google/protobuf/compiler/java/full/service.h"
#include "google/protobuf/descriptor.h"
namespace google {

@ -15,12 +15,12 @@
#include "google/protobuf/compiler/java/context.h"
#include "google/protobuf/compiler/java/generator_common.h"
#include "google/protobuf/compiler/java/helpers.h"
#include "google/protobuf/compiler/java/immutable/enum_field.h"
#include "google/protobuf/compiler/java/immutable/field_generator.h"
#include "google/protobuf/compiler/java/immutable/map_field.h"
#include "google/protobuf/compiler/java/immutable/message_field.h"
#include "google/protobuf/compiler/java/immutable/primitive_field.h"
#include "google/protobuf/compiler/java/immutable/string_field.h"
#include "google/protobuf/compiler/java/full/enum_field.h"
#include "google/protobuf/compiler/java/full/field_generator.h"
#include "google/protobuf/compiler/java/full/map_field.h"
#include "google/protobuf/compiler/java/full/message_field.h"
#include "google/protobuf/compiler/java/full/primitive_field.h"
#include "google/protobuf/compiler/java/full/string_field.h"
#include "google/protobuf/descriptor.h"
namespace google {

@ -5,12 +5,12 @@
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#ifndef GOOGLE_PROTOBUF_COMPILER_JAVA_IMMUTABLE_MAKE_FIELD_GENERATORS_H__
#define GOOGLE_PROTOBUF_COMPILER_JAVA_IMMUTABLE_MAKE_FIELD_GENERATORS_H__
#ifndef GOOGLE_PROTOBUF_COMPILER_JAVA_IMMUTABLE_MAKE_FIELD_GENS_H__
#define GOOGLE_PROTOBUF_COMPILER_JAVA_IMMUTABLE_MAKE_FIELD_GENS_H__
#include "google/protobuf/compiler/java/context.h"
#include "google/protobuf/compiler/java/generator_common.h"
#include "google/protobuf/compiler/java/immutable/field_generator.h"
#include "google/protobuf/compiler/java/full/field_generator.h"
#include "google/protobuf/descriptor.h"
namespace google {
@ -26,4 +26,4 @@ FieldGeneratorMap<ImmutableFieldGenerator> MakeImmutableFieldGenerators(
} // namespace protobuf
} // namespace google
#endif // GOOGLE_PROTOBUF_COMPILER_JAVA_IMMUTABLE_MAKE_FIELD_GENERATORS_H__
#endif // GOOGLE_PROTOBUF_COMPILER_JAVA_IMMUTABLE_MAKE_FIELD_GENS_H__

@ -5,7 +5,7 @@
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#include "google/protobuf/compiler/java/immutable/map_field.h"
#include "google/protobuf/compiler/java/full/map_field.h"
#include <string>

@ -9,7 +9,7 @@
#define GOOGLE_PROTOBUF_COMPILER_JAVA_MAP_FIELD_H__
#include "google/protobuf/compiler/java/context.h"
#include "google/protobuf/compiler/java/immutable/field_generator.h"
#include "google/protobuf/compiler/java/full/field_generator.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/io/printer.h"

@ -9,7 +9,7 @@
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
#include "google/protobuf/compiler/java/immutable/message.h"
#include "google/protobuf/compiler/java/full/message.h"
#include <algorithm>
#include <cstdint>
@ -28,10 +28,10 @@
#include "google/protobuf/compiler/java/field_common.h"
#include "google/protobuf/compiler/java/generator_common.h"
#include "google/protobuf/compiler/java/helpers.h"
#include "google/protobuf/compiler/java/immutable/enum.h"
#include "google/protobuf/compiler/java/immutable/extension.h"
#include "google/protobuf/compiler/java/immutable/make_field_generators.h"
#include "google/protobuf/compiler/java/immutable/message_builder.h"
#include "google/protobuf/compiler/java/full/enum.h"
#include "google/protobuf/compiler/java/full/extension.h"
#include "google/protobuf/compiler/java/full/make_field_gens.h"
#include "google/protobuf/compiler/java/full/message_builder.h"
#include "google/protobuf/compiler/java/message_serialization.h"
#include "google/protobuf/compiler/java/name_resolver.h"
#include "google/protobuf/descriptor.h"

@ -17,7 +17,7 @@
#include <vector>
#include "google/protobuf/compiler/java/generator_factory.h"
#include "google/protobuf/compiler/java/immutable/field_generator.h"
#include "google/protobuf/compiler/java/full/field_generator.h"
#include "google/protobuf/descriptor.h"
namespace google {

@ -9,7 +9,7 @@
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
#include "google/protobuf/compiler/java/immutable/message_builder.h"
#include "google/protobuf/compiler/java/full/message_builder.h"
#include <cstdint>
#include <memory>
@ -27,10 +27,10 @@
#include "google/protobuf/compiler/java/field_common.h"
#include "google/protobuf/compiler/java/generator_factory.h"
#include "google/protobuf/compiler/java/helpers.h"
#include "google/protobuf/compiler/java/immutable/enum.h"
#include "google/protobuf/compiler/java/immutable/extension.h"
#include "google/protobuf/compiler/java/immutable/field_generator.h"
#include "google/protobuf/compiler/java/immutable/make_field_generators.h"
#include "google/protobuf/compiler/java/full/enum.h"
#include "google/protobuf/compiler/java/full/extension.h"
#include "google/protobuf/compiler/java/full/field_generator.h"
#include "google/protobuf/compiler/java/full/make_field_gens.h"
#include "google/protobuf/compiler/java/name_resolver.h"
#include "google/protobuf/descriptor.pb.h"
#include "google/protobuf/io/printer.h"

@ -17,7 +17,7 @@
#include <vector>
#include "absl/container/btree_map.h"
#include "google/protobuf/compiler/java/immutable/field_generator.h"
#include "google/protobuf/compiler/java/full/field_generator.h"
#include "google/protobuf/descriptor.h"
namespace google {

@ -9,7 +9,7 @@
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
#include "google/protobuf/compiler/java/immutable/message_field.h"
#include "google/protobuf/compiler/java/full/message_field.h"
#include <string>

@ -14,7 +14,7 @@
#include <string>
#include "google/protobuf/compiler/java/immutable/field_generator.h"
#include "google/protobuf/compiler/java/full/field_generator.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/io/printer.h"

@ -9,7 +9,7 @@
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
#include "google/protobuf/compiler/java/immutable/primitive_field.h"
#include "google/protobuf/compiler/java/full/primitive_field.h"
#include <cstdint>
#include <string>

@ -14,7 +14,7 @@
#include <string>
#include "google/protobuf/compiler/java/immutable/field_generator.h"
#include "google/protobuf/compiler/java/full/field_generator.h"
#include "google/protobuf/descriptor.h"
namespace google {

@ -9,7 +9,7 @@
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
#include "google/protobuf/compiler/java/immutable/service.h"
#include "google/protobuf/compiler/java/full/service.h"
#include "absl/log/absl_log.h"
#include "absl/strings/str_cat.h"

@ -10,7 +10,7 @@
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
#include "google/protobuf/compiler/java/immutable/string_field.h"
#include "google/protobuf/compiler/java/full/string_field.h"
#include <cstdint>
#include <string>

@ -15,7 +15,7 @@
#include <string>
#include "google/protobuf/compiler/java/immutable/field_generator.h"
#include "google/protobuf/compiler/java/full/field_generator.h"
#include "google/protobuf/descriptor.h"
namespace google {

@ -3,7 +3,7 @@ cc_library(
srcs = [
"enum_field.cc",
"extension.cc",
"make_field_generators.cc",
"make_field_gens.cc",
"map_field.cc",
"message_field.cc",
"primitive_field.cc",
@ -11,7 +11,7 @@ cc_library(
],
hdrs = [
"field_generator.h",
"make_field_generators.h",
"make_field_gens.h",
# We don't actually want to put the remaining headers in `hdrs`.
# They are logically private, and should be in srcs=[], but
# unfortunately `strip_include_prefix` doesn't have any effect
@ -68,7 +68,7 @@ cc_library(
"//src/google/protobuf/compiler/java:generator_common",
"//src/google/protobuf/compiler/java:helpers",
"//src/google/protobuf/compiler/java:internal_helpers",
"//src/google/protobuf/compiler/java/immutable:service",
"//src/google/protobuf/compiler/java/full:service",
"//src/google/protobuf/io",
"//src/google/protobuf/io:printer",
"@com_google_absl//absl/container:btree",

@ -12,7 +12,7 @@
#include <memory>
#include "google/protobuf/compiler/java/context.h"
#include "google/protobuf/compiler/java/immutable/service.h"
#include "google/protobuf/compiler/java/full/service.h"
#include "google/protobuf/compiler/java/lite/enum.h"
#include "google/protobuf/compiler/java/lite/extension.h"
#include "google/protobuf/compiler/java/lite/message.h"

@ -9,7 +9,7 @@
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
#include "google/protobuf/compiler/java/lite/make_field_generators.h"
#include "google/protobuf/compiler/java/lite/make_field_gens.h"
#include <memory>
#include <utility>

@ -5,8 +5,8 @@
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#ifndef GOOGLE_PROTOBUF_COMPILER_JAVA_LITE_MAKE_FIELD_GENERATORS_H__
#define GOOGLE_PROTOBUF_COMPILER_JAVA_LITE_MAKE_FIELD_GENERATORS_H__
#ifndef GOOGLE_PROTOBUF_COMPILER_JAVA_LITE_MAKE_FIELD_GENS_H__
#define GOOGLE_PROTOBUF_COMPILER_JAVA_LITE_MAKE_FIELD_GENS_H__
#include <memory>
#include <vector>
@ -29,4 +29,4 @@ FieldGeneratorMap<ImmutableFieldLiteGenerator> MakeImmutableFieldLiteGenerators(
} // namespace protobuf
} // namespace google
#endif // GOOGLE_PROTOBUF_COMPILER_JAVA_LITE_MAKE_FIELD_GENERATORS_H__
#endif // GOOGLE_PROTOBUF_COMPILER_JAVA_LITE_MAKE_FIELD_GENS_H__

@ -33,7 +33,7 @@
#include "google/protobuf/compiler/java/helpers.h"
#include "google/protobuf/compiler/java/lite/enum.h"
#include "google/protobuf/compiler/java/lite/extension.h"
#include "google/protobuf/compiler/java/lite/make_field_generators.h"
#include "google/protobuf/compiler/java/lite/make_field_gens.h"
#include "google/protobuf/compiler/java/lite/message_builder.h"
#include "google/protobuf/compiler/java/name_resolver.h"
#include "google/protobuf/descriptor.pb.h"

@ -20,7 +20,7 @@
#include "google/protobuf/compiler/java/field_common.h"
#include "google/protobuf/compiler/java/helpers.h"
#include "google/protobuf/compiler/java/lite/enum.h"
#include "google/protobuf/compiler/java/lite/make_field_generators.h"
#include "google/protobuf/compiler/java/lite/make_field_gens.h"
#include "google/protobuf/compiler/java/name_resolver.h"
#include "google/protobuf/descriptor.pb.h"
#include "google/protobuf/io/printer.h"

@ -73,7 +73,7 @@ cc_library(
"message_field.cc",
"oneof.cc",
"primitive_field.cc",
"text_format_decode_data.cc",
"tf_decode_data.cc",
],
hdrs = [
"enum.h",
@ -90,7 +90,7 @@ cc_library(
"oneof.h",
"options.h",
"primitive_field.h",
"text_format_decode_data.h",
"tf_decode_data.h",
],
copts = COPTS,
strip_include_prefix = "/src",

@ -17,7 +17,7 @@
#include "google/protobuf/compiler/objectivec/helpers.h"
#include "google/protobuf/compiler/objectivec/names.h"
#include "google/protobuf/compiler/objectivec/options.h"
#include "google/protobuf/compiler/objectivec/text_format_decode_data.h"
#include "google/protobuf/compiler/objectivec/tf_decode_data.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/io/printer.h"

@ -26,7 +26,7 @@
#include "google/protobuf/compiler/objectivec/names.h"
#include "google/protobuf/compiler/objectivec/oneof.h"
#include "google/protobuf/compiler/objectivec/options.h"
#include "google/protobuf/compiler/objectivec/text_format_decode_data.h"
#include "google/protobuf/compiler/objectivec/tf_decode_data.h"
#include "google/protobuf/descriptor.h"
#include "google/protobuf/descriptor.pb.h"
#include "google/protobuf/io/printer.h"

@ -5,12 +5,12 @@
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#include "google/protobuf/compiler/objectivec/text_format_decode_data.h"
#include <cstdint>
#include <string>
#include <gtest/gtest.h>
#include "google/protobuf/compiler/objectivec/tf_decode_data.h"
// Must be included last
#include "google/protobuf/port_def.inc"

@ -5,7 +5,7 @@
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#include "google/protobuf/compiler/objectivec/text_format_decode_data.h"
#include "google/protobuf/compiler/objectivec/tf_decode_data.h"
#include <cstdint>
#include <sstream>

@ -5,8 +5,8 @@
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#ifndef GOOGLE_PROTOBUF_COMPILER_OBJECTIVEC_TEXT_FORMAT_DECODE_DATA_H__
#define GOOGLE_PROTOBUF_COMPILER_OBJECTIVEC_TEXT_FORMAT_DECODE_DATA_H__
#ifndef GOOGLE_PROTOBUF_COMPILER_OBJECTIVEC_TF_DECODE_DATA_H__
#define GOOGLE_PROTOBUF_COMPILER_OBJECTIVEC_TF_DECODE_DATA_H__
#include <cstddef>
#include <cstdint>
@ -55,4 +55,4 @@ class PROTOC_EXPORT TextFormatDecodeData {
#include "google/protobuf/port_undef.inc"
#endif // GOOGLE_PROTOBUF_COMPILER_OBJECTIVEC_TEXT_FORMAT_DECODE_DATA_H__
#endif // GOOGLE_PROTOBUF_COMPILER_OBJECTIVEC_TF_DECODE_DATA_H__

@ -20,9 +20,9 @@ cc_library(
],
hdrs = [
"accessor_case.h",
"accessor_generator.h",
"accessors.h",
"default_value.h",
"generator.h",
],
copts = COPTS,
strip_include_prefix = "/src",

@ -11,7 +11,7 @@
#include "absl/log/absl_log.h"
#include "google/protobuf/compiler/rust/accessors/accessor_case.h"
#include "google/protobuf/compiler/rust/accessors/accessor_generator.h"
#include "google/protobuf/compiler/rust/accessors/generator.h"
#include "google/protobuf/compiler/rust/context.h"
#include "google/protobuf/compiler/rust/rust_field_type.h"
#include "google/protobuf/descriptor.h"

@ -9,7 +9,7 @@
#include "google/protobuf/compiler/cpp/helpers.h"
#include "google/protobuf/compiler/rust/accessors/accessor_case.h"
#include "google/protobuf/compiler/rust/accessors/accessor_generator.h"
#include "google/protobuf/compiler/rust/accessors/generator.h"
#include "google/protobuf/compiler/rust/context.h"
#include "google/protobuf/compiler/rust/naming.h"
#include "google/protobuf/descriptor.h"

@ -10,7 +10,7 @@
#include "absl/strings/string_view.h"
#include "google/protobuf/compiler/cpp/helpers.h"
#include "google/protobuf/compiler/rust/accessors/accessor_case.h"
#include "google/protobuf/compiler/rust/accessors/accessor_generator.h"
#include "google/protobuf/compiler/rust/accessors/generator.h"
#include "google/protobuf/compiler/rust/context.h"
#include "google/protobuf/compiler/rust/naming.h"
#include "google/protobuf/descriptor.h"

@ -10,7 +10,7 @@
#include "absl/strings/string_view.h"
#include "google/protobuf/compiler/cpp/helpers.h"
#include "google/protobuf/compiler/rust/accessors/accessor_case.h"
#include "google/protobuf/compiler/rust/accessors/accessor_generator.h"
#include "google/protobuf/compiler/rust/accessors/generator.h"
#include "google/protobuf/compiler/rust/context.h"
#include "google/protobuf/compiler/rust/naming.h"
#include "google/protobuf/descriptor.h"

@ -10,8 +10,8 @@
#include "absl/strings/string_view.h"
#include "google/protobuf/compiler/cpp/helpers.h"
#include "google/protobuf/compiler/rust/accessors/accessor_case.h"
#include "google/protobuf/compiler/rust/accessors/accessor_generator.h"
#include "google/protobuf/compiler/rust/accessors/default_value.h"
#include "google/protobuf/compiler/rust/accessors/generator.h"
#include "google/protobuf/compiler/rust/context.h"
#include "google/protobuf/compiler/rust/naming.h"
#include "google/protobuf/descriptor.h"

@ -10,7 +10,7 @@
#include "absl/strings/string_view.h"
#include "google/protobuf/compiler/cpp/helpers.h"
#include "google/protobuf/compiler/rust/accessors/accessor_case.h"
#include "google/protobuf/compiler/rust/accessors/accessor_generator.h"
#include "google/protobuf/compiler/rust/accessors/generator.h"
#include "google/protobuf/compiler/rust/context.h"
#include "google/protobuf/compiler/rust/naming.h"
#include "google/protobuf/descriptor.h"

@ -7,7 +7,7 @@
#include "absl/strings/string_view.h"
#include "google/protobuf/compiler/rust/accessors/accessor_case.h"
#include "google/protobuf/compiler/rust/accessors/accessor_generator.h"
#include "google/protobuf/compiler/rust/accessors/generator.h"
#include "google/protobuf/compiler/rust/context.h"
#include "google/protobuf/descriptor.h"

Loading…
Cancel
Save