unittest_import_lite.proto 784 B

12345678910111213141516171819202122232425262728293031
  1. // Protocol Buffers - Google's data interchange format
  2. // Copyright 2008 Google Inc. All rights reserved.
  3. //
  4. // Use of this source code is governed by a BSD-style
  5. // license that can be found in the LICENSE file or at
  6. // https://developers.google.com/open-source/licenses/bsd
  7. // Author: kenton@google.com (Kenton Varda)
  8. //
  9. // This is like unittest_import.proto but with optimize_for = LITE_RUNTIME.
  10. edition = "2023";
  11. package protobuf_unittest_import;
  12. import public "google/protobuf/unittest_import_public_lite.proto";
  13. option optimize_for = LITE_RUNTIME;
  14. option java_package = "com.google.protobuf";
  15. message ImportMessageLite {
  16. int32 d = 1;
  17. }
  18. enum ImportEnumLite {
  19. option features.enum_type = CLOSED;
  20. IMPORT_LITE_FOO = 7;
  21. IMPORT_LITE_BAR = 8;
  22. IMPORT_LITE_BAZ = 9;
  23. }