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 8// Author: kenton@google.com (Kenton Varda) 9// 10// This is like unittest_import.proto but with optimize_for = LITE_RUNTIME. 11 12edition = "2023"; 13 14package protobuf_unittest_import; 15 16import public "google/protobuf/unittest_import_public_lite.proto"; 17 18option optimize_for = LITE_RUNTIME; 19option java_package = "com.google.protobuf"; 20 21message ImportMessageLite { 22 int32 d = 1; 23} 24 25enum ImportEnumLite { 26 option features.enum_type = CLOSED; 27 28 IMPORT_LITE_FOO = 7; 29 IMPORT_LITE_BAR = 8; 30 IMPORT_LITE_BAZ = 9; 31} 32