cppgen: Don't require full submessage definitions in gen headers

Previously it wasn't possible to include a gen-header for a message
containing repeated fields of submessages without also including the
full definitions of those submessages. This is because vector accessors
(e.g., field_size()) need to have the full definition of the repeated
type, even if that accessor isn't called.

InternedData is an example of a message affected by this problem. Trying
to include interned_data.gen.h in Chrome meant having to include the
definitions of all submessages first (e.g., source_location.gen.h). If
someone added a new field upstream, that breaks the build in Chrome.

This patch fixes the problem by moving the definitions of repeated field
accessors from gen.h to gen.cc.

Bug: 156727531
Change-Id: Ic1f43b6a75a44f6ca98fa58b8b7b13a4f74fd5d5
1 file changed
tree: 9b794610340ba6cccadb967e79ea25dc6f01e4b8
  1. bazel/
  2. build_overrides/
  3. buildtools/
  4. debian/
  5. docs/
  6. examples/
  7. gn/
  8. include/
  9. infra/
  10. protos/
  11. src/
  12. test/
  13. tools/
  14. ui/
  15. .clang-format
  16. .clang-tidy
  17. .gitignore
  18. .gn
  19. .style.yapf
  20. Android.bp
  21. Android.bp.extras
  22. BUILD
  23. BUILD.extras
  24. BUILD.gn
  25. CHANGELOG
  26. codereview.settings
  27. heapprofd.rc
  28. LICENSE
  29. METADATA
  30. MODULE_LICENSE_APACHE2
  31. OWNERS
  32. perfetto.rc
  33. PRESUBMIT.py
  34. README.chromium
  35. README.md
  36. TEST_MAPPING
  37. traced_perf.rc
  38. WORKSPACE
README.md

Perfetto - System profiling, app tracing and trace analysis

Perfetto is a production-grade open-source stack for performance instrumentation and trace analysis. It offers services and libraries and for recording system-level and app-level traces, native + java heap profiling, a library for analyzing traces using SQL and a web-based UI to visualize and explore multi-GB traces.

See https://perfetto.dev/docs or the /docs/ directory for documentation.