1ffe3c632Sopenharmony_ci## Process this file with automake to produce Makefile.in 2ffe3c632Sopenharmony_ci 3ffe3c632Sopenharmony_ciACLOCAL_AMFLAGS = -I m4 4ffe3c632Sopenharmony_ci 5ffe3c632Sopenharmony_ciAUTOMAKE_OPTIONS = foreign 6ffe3c632Sopenharmony_ci 7ffe3c632Sopenharmony_ci# Build . before src so that our all-local and clean-local hooks kicks in at 8ffe3c632Sopenharmony_ci# the right time. 9ffe3c632Sopenharmony_ciSUBDIRS = . src 10ffe3c632Sopenharmony_ci 11ffe3c632Sopenharmony_ci# Always include third_party directories in distributions. 12ffe3c632Sopenharmony_ciDIST_SUBDIRS = src conformance benchmarks third_party/googletest 13ffe3c632Sopenharmony_ci 14ffe3c632Sopenharmony_ci# Build gmock before we build protobuf tests. We don't add gmock to SUBDIRS 15ffe3c632Sopenharmony_ci# because then "make check" would also build and run all of gmock's own tests, 16ffe3c632Sopenharmony_ci# which takes a lot of time and is generally not useful to us. Also, we don't 17ffe3c632Sopenharmony_ci# want "make install" to recurse into gmock since we don't want to overwrite 18ffe3c632Sopenharmony_ci# the installed version of gmock if there is one. 19ffe3c632Sopenharmony_cicheck-local: 20ffe3c632Sopenharmony_ci @echo "Making lib/libgmock.a lib/libgmock_main.a in gmock" 21ffe3c632Sopenharmony_ci @cd third_party/googletest/googletest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la 22ffe3c632Sopenharmony_ci @cd third_party/googletest/googlemock && $(MAKE) $(AM_MAKEFLAGS) lib/libgmock.la lib/libgmock_main.la 23ffe3c632Sopenharmony_ci 24ffe3c632Sopenharmony_ci# We would like to clean gmock when "make clean" is invoked. But we have to 25ffe3c632Sopenharmony_ci# be careful because clean-local is also invoked during "make distclean", but 26ffe3c632Sopenharmony_ci# "make distclean" already recurses into gmock because it's listed among the 27ffe3c632Sopenharmony_ci# DIST_SUBDIRS. distclean will delete gmock/Makefile, so if we then try to 28ffe3c632Sopenharmony_ci# cd to the directory again and "make clean" it will fail. So, check that the 29ffe3c632Sopenharmony_ci# Makefile exists before recursing. 30ffe3c632Sopenharmony_ciclean-local: 31ffe3c632Sopenharmony_ci @if test -e third_party/googletest/Makefile; then \ 32ffe3c632Sopenharmony_ci echo "Making clean in googletest"; \ 33ffe3c632Sopenharmony_ci cd third_party/googletest && $(MAKE) $(AM_MAKEFLAGS) clean; \ 34ffe3c632Sopenharmony_ci fi; \ 35ffe3c632Sopenharmony_ci if test -e conformance/Makefile; then \ 36ffe3c632Sopenharmony_ci echo "Making clean in conformance"; \ 37ffe3c632Sopenharmony_ci cd conformance && $(MAKE) $(AM_MAKEFLAGS) clean; \ 38ffe3c632Sopenharmony_ci fi; \ 39ffe3c632Sopenharmony_ci if test -e benchmarks/Makefile; then \ 40ffe3c632Sopenharmony_ci echo "Making clean in benchmarks"; \ 41ffe3c632Sopenharmony_ci cd benchmarks && $(MAKE) $(AM_MAKEFLAGS) clean; \ 42ffe3c632Sopenharmony_ci fi; \ 43ffe3c632Sopenharmony_ci if test -e objectivec/DevTools; then \ 44ffe3c632Sopenharmony_ci echo "Cleaning any ObjC pyc files"; \ 45ffe3c632Sopenharmony_ci rm -f objectivec/DevTools/*.pyc; \ 46ffe3c632Sopenharmony_ci fi 47ffe3c632Sopenharmony_ci 48ffe3c632Sopenharmony_cipkgconfigdir = $(libdir)/pkgconfig 49ffe3c632Sopenharmony_cipkgconfig_DATA = protobuf.pc protobuf-lite.pc 50ffe3c632Sopenharmony_ci 51ffe3c632Sopenharmony_cicsharp_EXTRA_DIST= \ 52ffe3c632Sopenharmony_ci global.json \ 53ffe3c632Sopenharmony_ci csharp/.gitignore \ 54ffe3c632Sopenharmony_ci csharp/CHANGES.txt \ 55ffe3c632Sopenharmony_ci csharp/Google.Protobuf.Tools.targets \ 56ffe3c632Sopenharmony_ci csharp/Google.Protobuf.Tools.nuspec \ 57ffe3c632Sopenharmony_ci csharp/README.md \ 58ffe3c632Sopenharmony_ci csharp/build_packages.bat \ 59ffe3c632Sopenharmony_ci csharp/build_tools.sh \ 60ffe3c632Sopenharmony_ci csharp/buildall.bat \ 61ffe3c632Sopenharmony_ci csharp/buildall.sh \ 62ffe3c632Sopenharmony_ci csharp/generate_protos.sh \ 63ffe3c632Sopenharmony_ci csharp/install_dotnet_sdk.ps1 \ 64ffe3c632Sopenharmony_ci csharp/keys/Google.Protobuf.public.snk \ 65ffe3c632Sopenharmony_ci csharp/keys/Google.Protobuf.snk \ 66ffe3c632Sopenharmony_ci csharp/keys/README.md \ 67ffe3c632Sopenharmony_ci csharp/protos/README.md \ 68ffe3c632Sopenharmony_ci csharp/protos/map_unittest_proto3.proto \ 69ffe3c632Sopenharmony_ci csharp/protos/old_extensions1.proto \ 70ffe3c632Sopenharmony_ci csharp/protos/old_extensions2.proto \ 71ffe3c632Sopenharmony_ci csharp/protos/unittest_issue6936_a.proto \ 72ffe3c632Sopenharmony_ci csharp/protos/unittest_issue6936_b.proto \ 73ffe3c632Sopenharmony_ci csharp/protos/unittest_issue6936_c.proto \ 74ffe3c632Sopenharmony_ci csharp/protos/unittest_custom_options_proto3.proto \ 75ffe3c632Sopenharmony_ci csharp/protos/unittest_import_public_proto3.proto \ 76ffe3c632Sopenharmony_ci csharp/protos/unittest_import_public.proto \ 77ffe3c632Sopenharmony_ci csharp/protos/unittest_import_proto3.proto \ 78ffe3c632Sopenharmony_ci csharp/protos/unittest_import.proto \ 79ffe3c632Sopenharmony_ci csharp/protos/unittest_issues.proto \ 80ffe3c632Sopenharmony_ci csharp/protos/unittest_proto3.proto \ 81ffe3c632Sopenharmony_ci csharp/protos/unittest_selfreferential_options.proto \ 82ffe3c632Sopenharmony_ci csharp/protos/unittest.proto \ 83ffe3c632Sopenharmony_ci csharp/src/AddressBook/AddPerson.cs \ 84ffe3c632Sopenharmony_ci csharp/src/AddressBook/Addressbook.cs \ 85ffe3c632Sopenharmony_ci csharp/src/AddressBook/AddressBook.csproj \ 86ffe3c632Sopenharmony_ci csharp/src/AddressBook/ListPeople.cs \ 87ffe3c632Sopenharmony_ci csharp/src/AddressBook/Program.cs \ 88ffe3c632Sopenharmony_ci csharp/src/AddressBook/SampleUsage.cs \ 89ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Benchmarks/BenchmarkDatasetConfig.cs \ 90ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Benchmarks/BenchmarkMessage1Proto3.cs \ 91ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Benchmarks/Benchmarks.cs \ 92ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Benchmarks/Google.Protobuf.Benchmarks.csproj \ 93ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Benchmarks/GoogleMessageBenchmark.cs \ 94ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Benchmarks/ParseMessagesBenchmark.cs \ 95ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Benchmarks/ParseRawPrimitivesBenchmark.cs \ 96ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Benchmarks/Program.cs \ 97ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Benchmarks/wrapper_benchmark_messages.proto \ 98ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Benchmarks/WrapperBenchmarkMessages.cs \ 99ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Benchmarks/WriteMessagesBenchmark.cs \ 100ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Benchmarks/WriteRawPrimitivesBenchmark.cs \ 101ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Conformance/Conformance.cs \ 102ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj \ 103ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Conformance/Program.cs \ 104ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \ 105ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.JsonDump/Program.cs \ 106ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Buffers/ArrayBufferWriter.cs \ 107ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/ByteStringTest.cs \ 108ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \ 109ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \ 110ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \ 111ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \ 112ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Collections/ProtobufEqualityComparersTest.cs \ 113ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \ 114ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \ 115ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Compatibility/StreamExtensionsTest.cs \ 116ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs \ 117ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \ 118ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/EqualityTester.cs \ 119ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/ExtensionSetTest.cs \ 120ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \ 121ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/FieldMaskTreeTest.cs \ 122ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \ 123ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/GeneratedMessageTest.Proto2.cs \ 124ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \ 125ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/IssuesTest.cs \ 126ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \ 127ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/JsonParserTest.cs \ 128ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs \ 129ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs \ 130ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/MessageParsingHelpers.cs \ 131ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Proto3OptionalTest.cs \ 132ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/ReadOnlySequenceFactory.cs \ 133ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/RefStructCompatibilityTest.cs \ 134ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Reflection/CustomOptionsTest.cs \ 135ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Reflection/DescriptorDeclarationTest.cs \ 136ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \ 137ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs \ 138ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs \ 139ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/SampleEnum.cs \ 140ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/SampleMessages.cs \ 141ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/SampleNaNs.cs \ 142ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/TestCornerCases.cs \ 143ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/Google.Protobuf.Test.TestProtos.csproj \ 144ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936A.cs \ 145ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.cs \ 146ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.cs \ 147ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/ForeignMessagePartial.cs \ 148ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.cs \ 149ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs \ 150ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions2.cs \ 151ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.cs \ 152ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.cs \ 153ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.cs \ 154ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.cs \ 155ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.cs \ 156ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.cs \ 157ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.cs \ 158ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.cs \ 159ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.cs \ 160ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.cs \ 161ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.cs \ 162ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.cs \ 163ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test.TestProtos/Unittest.cs \ 164ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \ 165ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \ 166ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/WellKnownTypes/FieldMaskTest.cs \ 167ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \ 168ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \ 169ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs \ 170ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.Test/testprotos.pb \ 171ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf.sln \ 172ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ByteArray.cs \ 173ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ByteString.cs \ 174ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/CodedInputStream.cs \ 175ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \ 176ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/CodedOutputStream.cs \ 177ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Collections/Lists.cs \ 178ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Collections/MapField.cs \ 179ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Collections/ProtobufEqualityComparers.cs \ 180ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \ 181ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Collections/RepeatedField.cs \ 182ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Compatibility/MethodInfoExtensions.cs \ 183ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \ 184ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Compatibility/StreamExtensions.cs \ 185ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \ 186ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Extension.cs \ 187ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ExtensionRegistry.cs \ 188ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ExtensionSet.cs \ 189ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ExtensionValue.cs \ 190ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/FieldCodec.cs \ 191ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/FieldMaskTree.cs \ 192ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/FrameworkPortability.cs \ 193ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Google.Protobuf.csproj \ 194ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/IBufferMessage.cs \ 195ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ICustomDiagnosticMessage.cs \ 196ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/IDeepCloneable.cs \ 197ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/IExtendableMessage.cs \ 198ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/IMessage.cs \ 199ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/InvalidJsonException.cs \ 200ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \ 201ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/JsonFormatter.cs \ 202ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/JsonParser.cs \ 203ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/JsonToken.cs \ 204ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/JsonTokenizer.cs \ 205ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/LimitedInputStream.cs \ 206ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/MessageExtensions.cs \ 207ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/MessageParser.cs \ 208ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ObjectIntPair.cs \ 209ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ParseContext.cs \ 210ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ParserInternalState.cs \ 211ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ParsingPrimitives.cs \ 212ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ParsingPrimitivesMessages.cs \ 213ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ParsingPrimitivesWrappers.cs \ 214ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/ProtoPreconditions.cs \ 215ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/SegmentedBufferHelper.cs \ 216ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \ 217ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/CustomOptions.cs \ 218ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/Descriptor.cs \ 219ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \ 220ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/DescriptorDeclaration.cs \ 221ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \ 222ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \ 223ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \ 224ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \ 225ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \ 226ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/ExtensionAccessor.cs \ 227ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/ExtensionCollection.cs \ 228ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \ 229ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \ 230ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/FieldType.cs \ 231ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \ 232ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs \ 233ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \ 234ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \ 235ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \ 236ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \ 237ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \ 238ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \ 239ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \ 240ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/OriginalNameAttribute.cs \ 241ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \ 242ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \ 243ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \ 244ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \ 245ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \ 246ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs \ 247ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \ 248ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \ 249ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \ 250ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \ 251ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \ 252ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \ 253ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \ 254ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs \ 255ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \ 256ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \ 257ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \ 258ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \ 259ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \ 260ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \ 261ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs \ 262ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \ 263ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs \ 264ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WireFormat.cs \ 265ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WritingPrimitivesMessages.cs \ 266ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WritingPrimitives.cs \ 267ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WriterInternalState.cs \ 268ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WriteContext.cs \ 269ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/WriteBufferHelper.cs \ 270ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/UnknownField.cs \ 271ffe3c632Sopenharmony_ci csharp/src/Google.Protobuf/UnknownFieldSet.cs 272ffe3c632Sopenharmony_ci 273ffe3c632Sopenharmony_cijava_EXTRA_DIST= \ 274ffe3c632Sopenharmony_ci java/README.md \ 275ffe3c632Sopenharmony_ci java/bom/pom.xml \ 276ffe3c632Sopenharmony_ci java/core/BUILD \ 277ffe3c632Sopenharmony_ci java/core/generate-sources-build.xml \ 278ffe3c632Sopenharmony_ci java/core/generate-test-sources-build.xml \ 279ffe3c632Sopenharmony_ci java/core/pom.xml \ 280ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/AbstractMessage.java \ 281ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java \ 282ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/AbstractParser.java \ 283ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java \ 284ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/AllocatedBuffer.java \ 285ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/Android.java \ 286ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ArrayDecoders.java \ 287ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/BinaryReader.java \ 288ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/BinaryWriter.java \ 289ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java \ 290ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/BlockingService.java \ 291ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/BooleanArrayList.java \ 292ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/BufferAllocator.java \ 293ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java \ 294ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ByteOutput.java \ 295ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ByteString.java \ 296ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/CodedInputStream.java \ 297ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/CodedInputStreamReader.java \ 298ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/CodedOutputStream.java \ 299ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/CodedOutputStreamWriter.java \ 300ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/DescriptorMessageInfoFactory.java \ 301ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/Descriptors.java \ 302ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/DiscardUnknownFieldsParser.java \ 303ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/DoubleArrayList.java \ 304ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/DynamicMessage.java \ 305ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ExperimentalApi.java \ 306ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/Extension.java \ 307ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ExtensionLite.java \ 308ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java \ 309ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ExtensionRegistryFactory.java \ 310ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \ 311ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ExtensionSchema.java \ 312ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ExtensionSchemaFull.java \ 313ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ExtensionSchemaLite.java \ 314ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ExtensionSchemas.java \ 315ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/FieldInfo.java \ 316ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/FieldSet.java \ 317ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/FieldType.java \ 318ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/FloatArrayList.java \ 319ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/GeneratedMessage.java \ 320ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/GeneratedMessageInfoFactory.java \ 321ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java \ 322ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/GeneratedMessageV3.java \ 323ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/IntArrayList.java \ 324ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/Internal.java \ 325ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \ 326ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/IterableByteBufferInputStream.java \ 327ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/JavaType.java \ 328ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/LazyField.java \ 329ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/LazyFieldLite.java \ 330ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java \ 331ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/LazyStringList.java \ 332ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ListFieldSchema.java \ 333ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/LongArrayList.java \ 334ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ManifestSchemaFactory.java \ 335ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MapEntry.java \ 336ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MapEntryLite.java \ 337ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MapField.java \ 338ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MapFieldLite.java \ 339ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MapFieldSchema.java \ 340ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MapFieldSchemaFull.java \ 341ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MapFieldSchemaLite.java \ 342ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MapFieldSchemas.java \ 343ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/Message.java \ 344ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MessageInfo.java \ 345ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MessageInfoFactory.java \ 346ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MessageLite.java \ 347ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \ 348ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MessageLiteToString.java \ 349ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java \ 350ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MessageReflection.java \ 351ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MessageSchema.java \ 352ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MessageSetSchema.java \ 353ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/MutabilityOracle.java \ 354ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/NewInstanceSchema.java \ 355ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/NewInstanceSchemaFull.java \ 356ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/NewInstanceSchemaLite.java \ 357ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/NewInstanceSchemas.java \ 358ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/NioByteString.java \ 359ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/OneofInfo.java \ 360ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/Parser.java \ 361ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/PrimitiveNonBoxingCollection.java \ 362ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ProtoSyntax.java \ 363ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/Protobuf.java \ 364ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java \ 365ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ProtobufLists.java \ 366ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \ 367ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ProtocolStringList.java \ 368ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/RawMessageInfo.java \ 369ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/Reader.java \ 370ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \ 371ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java \ 372ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/RopeByteString.java \ 373ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/RpcCallback.java \ 374ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/RpcChannel.java \ 375ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/RpcController.java \ 376ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/RpcUtil.java \ 377ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/Schema.java \ 378ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/SchemaFactory.java \ 379ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/SchemaUtil.java \ 380ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/Service.java \ 381ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/ServiceException.java \ 382ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java \ 383ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/SingleFieldBuilderV3.java \ 384ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/SmallSortedMap.java \ 385ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/StructuralMessageInfo.java \ 386ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/TextFormat.java \ 387ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java \ 388ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java \ 389ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java \ 390ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/TypeRegistry.java \ 391ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java \ 392ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/UnknownFieldSchema.java \ 393ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java \ 394ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \ 395ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/UnknownFieldSetLiteSchema.java \ 396ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/UnknownFieldSetSchema.java \ 397ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \ 398ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java \ 399ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/UnsafeUtil.java \ 400ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/Utf8.java \ 401ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/WireFormat.java \ 402ffe3c632Sopenharmony_ci java/core/src/main/java/com/google/protobuf/Writer.java \ 403ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java \ 404ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/AbstractProto2LiteSchemaTest.java \ 405ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/AbstractProto2SchemaTest.java \ 406ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/AbstractProto3LiteSchemaTest.java \ 407ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/AbstractProto3SchemaTest.java \ 408ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/AbstractSchemaTest.java \ 409ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/AnyTest.java \ 410ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ArrayDecodersTest.java \ 411ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/BinaryProtocolTest.java \ 412ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java \ 413ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java \ 414ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java \ 415ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ByteStringTest.java \ 416ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/CachedFieldSizeTest.java \ 417ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java \ 418ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/CodedAdapterTest.java \ 419ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java \ 420ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \ 421ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/DecodeUtf8Test.java \ 422ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \ 423ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/DescriptorsTest.java \ 424ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/DiscardUnknownFieldsTest.java \ 425ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java \ 426ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java \ 427ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/EnumTest.java \ 428ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ExperimentalMessageFactory.java \ 429ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ExperimentalSerializationUtil.java \ 430ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ExperimentalTestDataProvider.java \ 431ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ExtensionRegistryFactoryTest.java \ 432ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java \ 433ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java \ 434ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \ 435ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java \ 436ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/IntArrayListTest.java \ 437ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java \ 438ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \ 439ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \ 440ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/LazyFieldTest.java \ 441ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \ 442ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \ 443ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \ 444ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \ 445ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java \ 446ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/LongArrayListTest.java \ 447ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \ 448ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/MapForProto2Test.java \ 449ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/MapLiteTest.java \ 450ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/MapTest.java \ 451ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/MessageTest.java \ 452ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java \ 453ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/NioByteStringTest.java \ 454ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/PackedFieldTest.java \ 455ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ParseExceptionsTest.java \ 456ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ParserLiteTest.java \ 457ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ParserTest.java \ 458ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto2ExtensionLookupSchemaTest.java \ 459ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto2LiteSchemaTest.java \ 460ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto2MessageFactory.java \ 461ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto2MessageInfoFactory.java \ 462ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto2MessageLiteFactory.java \ 463ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto2SchemaTest.java \ 464ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto2UnknownEnumValueTest.java \ 465ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto3LiteSchemaTest.java \ 466ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto3MessageFactory.java \ 467ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto3MessageInfoFactory.java \ 468ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto3MessageLiteFactory.java \ 469ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto3MessageLiteInfoFactory.java \ 470ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Proto3SchemaTest.java \ 471ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \ 472ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderV3Test.java \ 473ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \ 474ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java \ 475ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/ServiceTest.java \ 476ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/SingleFieldBuilderV3Test.java \ 477ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java \ 478ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java \ 479ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/TestBadIdentifiersLite.java \ 480ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/TestSchemas.java \ 481ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/TestSchemasLite.java \ 482ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/TestUtil.java \ 483ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/TestUtilLite.java \ 484ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java \ 485ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java \ 486ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/TextFormatTest.java \ 487ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/TypeRegistryTest.java \ 488ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \ 489ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \ 490ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/UnknownFieldSetPerformanceTest.java \ 491ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \ 492ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Utf8Test.java \ 493ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/Utf8Utils.java \ 494ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java \ 495ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/WireFormatLiteTest.java \ 496ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/WireFormatTest.java \ 497ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/WrappersLiteOfMethodTest.java \ 498ffe3c632Sopenharmony_ci java/core/src/test/java/com/google/protobuf/WrappersOfMethodTest.java \ 499ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/any_test.proto \ 500ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/cached_field_size_test.proto \ 501ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/deprecated_file.proto \ 502ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/field_presence_test.proto \ 503ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/lazy_fields_lite.proto \ 504ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/lite_equals_and_hash.proto \ 505ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/map_for_proto2_lite_test.proto \ 506ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/map_for_proto2_test.proto \ 507ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/map_initialization_order_test.proto \ 508ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/map_lite_test.proto \ 509ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/map_test.proto \ 510ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/message_lite_extension_util_test.proto\ 511ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/multiple_files_test.proto \ 512ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/nested_builders_test.proto \ 513ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/nested_extension.proto \ 514ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/nested_extension_lite.proto \ 515ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto \ 516ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto \ 517ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto \ 518ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto \ 519ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto \ 520ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/packed_field_test.proto \ 521ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/proto2_message.proto \ 522ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/proto2_message_lite.proto \ 523ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/proto2_unknown_enum_values.proto \ 524ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/proto3_message.proto \ 525ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/proto3_message_lite.proto \ 526ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto \ 527ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto \ 528ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto \ 529ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/test_custom_options.proto \ 530ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/test_extra_interfaces.proto \ 531ffe3c632Sopenharmony_ci java/core/src/test/proto/com/google/protobuf/wrappers_test.proto \ 532ffe3c632Sopenharmony_ci java/lite.md \ 533ffe3c632Sopenharmony_ci java/lite/BUILD \ 534ffe3c632Sopenharmony_ci java/lite/generate-sources-build.xml \ 535ffe3c632Sopenharmony_ci java/lite/generate-test-sources-build.xml \ 536ffe3c632Sopenharmony_ci java/lite/lite.awk \ 537ffe3c632Sopenharmony_ci java/lite/pom.xml \ 538ffe3c632Sopenharmony_ci java/lite/process-lite-sources-build.xml \ 539ffe3c632Sopenharmony_ci java/lite/src/test/java/com/google/protobuf/LiteTest.java \ 540ffe3c632Sopenharmony_ci java/lite/src/test/java/com/google/protobuf/Proto2MessageLiteInfoFactory.java \ 541ffe3c632Sopenharmony_ci java/pom.xml \ 542ffe3c632Sopenharmony_ci java/util/BUILD \ 543ffe3c632Sopenharmony_ci java/util/pom.xml \ 544ffe3c632Sopenharmony_ci java/util/src/main/java/com/google/protobuf/util/Durations.java \ 545ffe3c632Sopenharmony_ci java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java \ 546ffe3c632Sopenharmony_ci java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java \ 547ffe3c632Sopenharmony_ci java/util/src/main/java/com/google/protobuf/util/JsonFormat.java \ 548ffe3c632Sopenharmony_ci java/util/src/main/java/com/google/protobuf/util/TimeUtil.java \ 549ffe3c632Sopenharmony_ci java/util/src/main/java/com/google/protobuf/util/Structs.java \ 550ffe3c632Sopenharmony_ci java/util/src/main/java/com/google/protobuf/util/Timestamps.java \ 551ffe3c632Sopenharmony_ci java/util/src/main/java/com/google/protobuf/util/Values.java \ 552ffe3c632Sopenharmony_ci java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java \ 553ffe3c632Sopenharmony_ci java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java \ 554ffe3c632Sopenharmony_ci java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java \ 555ffe3c632Sopenharmony_ci java/util/src/test/java/com/google/protobuf/util/StructsTest.java \ 556ffe3c632Sopenharmony_ci java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java \ 557ffe3c632Sopenharmony_ci java/util/src/test/java/com/google/protobuf/util/ValuesTest.java \ 558ffe3c632Sopenharmony_ci java/util/src/test/proto/com/google/protobuf/util/json_test.proto 559ffe3c632Sopenharmony_ci 560ffe3c632Sopenharmony_ciobjectivec_EXTRA_DIST= \ 561ffe3c632Sopenharmony_ci objectivec/.clang-format \ 562ffe3c632Sopenharmony_ci objectivec/DevTools/check_version_stamps.sh \ 563ffe3c632Sopenharmony_ci objectivec/DevTools/compile_testing_protos.sh \ 564ffe3c632Sopenharmony_ci objectivec/DevTools/full_mac_build.sh \ 565ffe3c632Sopenharmony_ci objectivec/DevTools/pddm.py \ 566ffe3c632Sopenharmony_ci objectivec/DevTools/pddm_tests.py \ 567ffe3c632Sopenharmony_ci objectivec/generate_well_known_types.sh \ 568ffe3c632Sopenharmony_ci objectivec/google/protobuf/Any.pbobjc.h \ 569ffe3c632Sopenharmony_ci objectivec/google/protobuf/Api.pbobjc.h \ 570ffe3c632Sopenharmony_ci objectivec/google/protobuf/Duration.pbobjc.h \ 571ffe3c632Sopenharmony_ci objectivec/google/protobuf/Empty.pbobjc.h \ 572ffe3c632Sopenharmony_ci objectivec/google/protobuf/FieldMask.pbobjc.h \ 573ffe3c632Sopenharmony_ci objectivec/google/protobuf/SourceContext.pbobjc.h \ 574ffe3c632Sopenharmony_ci objectivec/google/protobuf/Struct.pbobjc.h \ 575ffe3c632Sopenharmony_ci objectivec/google/protobuf/Timestamp.pbobjc.h \ 576ffe3c632Sopenharmony_ci objectivec/google/protobuf/Type.pbobjc.h \ 577ffe3c632Sopenharmony_ci objectivec/google/protobuf/Wrappers.pbobjc.h \ 578ffe3c632Sopenharmony_ci objectivec/GPBAny.pbobjc.h \ 579ffe3c632Sopenharmony_ci objectivec/GPBAny.pbobjc.m \ 580ffe3c632Sopenharmony_ci objectivec/GPBApi.pbobjc.h \ 581ffe3c632Sopenharmony_ci objectivec/GPBApi.pbobjc.m \ 582ffe3c632Sopenharmony_ci objectivec/GPBArray.h \ 583ffe3c632Sopenharmony_ci objectivec/GPBArray.m \ 584ffe3c632Sopenharmony_ci objectivec/GPBArray_PackagePrivate.h \ 585ffe3c632Sopenharmony_ci objectivec/GPBBootstrap.h \ 586ffe3c632Sopenharmony_ci objectivec/GPBCodedInputStream.h \ 587ffe3c632Sopenharmony_ci objectivec/GPBCodedInputStream.m \ 588ffe3c632Sopenharmony_ci objectivec/GPBCodedInputStream_PackagePrivate.h \ 589ffe3c632Sopenharmony_ci objectivec/GPBCodedOutputStream.h \ 590ffe3c632Sopenharmony_ci objectivec/GPBCodedOutputStream.m \ 591ffe3c632Sopenharmony_ci objectivec/GPBCodedOutputStream_PackagePrivate.h \ 592ffe3c632Sopenharmony_ci objectivec/GPBDescriptor.h \ 593ffe3c632Sopenharmony_ci objectivec/GPBDescriptor.m \ 594ffe3c632Sopenharmony_ci objectivec/GPBDescriptor_PackagePrivate.h \ 595ffe3c632Sopenharmony_ci objectivec/GPBDictionary.h \ 596ffe3c632Sopenharmony_ci objectivec/GPBDictionary.m \ 597ffe3c632Sopenharmony_ci objectivec/GPBDictionary_PackagePrivate.h \ 598ffe3c632Sopenharmony_ci objectivec/GPBDuration.pbobjc.h \ 599ffe3c632Sopenharmony_ci objectivec/GPBDuration.pbobjc.m \ 600ffe3c632Sopenharmony_ci objectivec/GPBEmpty.pbobjc.h \ 601ffe3c632Sopenharmony_ci objectivec/GPBEmpty.pbobjc.m \ 602ffe3c632Sopenharmony_ci objectivec/GPBExtensionInternals.h \ 603ffe3c632Sopenharmony_ci objectivec/GPBExtensionInternals.m \ 604ffe3c632Sopenharmony_ci objectivec/GPBExtensionRegistry.h \ 605ffe3c632Sopenharmony_ci objectivec/GPBExtensionRegistry.m \ 606ffe3c632Sopenharmony_ci objectivec/GPBFieldMask.pbobjc.h \ 607ffe3c632Sopenharmony_ci objectivec/GPBFieldMask.pbobjc.m \ 608ffe3c632Sopenharmony_ci objectivec/GPBMessage.h \ 609ffe3c632Sopenharmony_ci objectivec/GPBMessage.m \ 610ffe3c632Sopenharmony_ci objectivec/GPBMessage_PackagePrivate.h \ 611ffe3c632Sopenharmony_ci objectivec/GPBProtocolBuffers.h \ 612ffe3c632Sopenharmony_ci objectivec/GPBProtocolBuffers.m \ 613ffe3c632Sopenharmony_ci objectivec/GPBProtocolBuffers_RuntimeSupport.h \ 614ffe3c632Sopenharmony_ci objectivec/GPBRootObject.h \ 615ffe3c632Sopenharmony_ci objectivec/GPBRootObject.m \ 616ffe3c632Sopenharmony_ci objectivec/GPBRootObject_PackagePrivate.h \ 617ffe3c632Sopenharmony_ci objectivec/GPBRuntimeTypes.h \ 618ffe3c632Sopenharmony_ci objectivec/GPBSourceContext.pbobjc.h \ 619ffe3c632Sopenharmony_ci objectivec/GPBSourceContext.pbobjc.m \ 620ffe3c632Sopenharmony_ci objectivec/GPBStruct.pbobjc.h \ 621ffe3c632Sopenharmony_ci objectivec/GPBStruct.pbobjc.m \ 622ffe3c632Sopenharmony_ci objectivec/GPBTimestamp.pbobjc.h \ 623ffe3c632Sopenharmony_ci objectivec/GPBTimestamp.pbobjc.m \ 624ffe3c632Sopenharmony_ci objectivec/GPBType.pbobjc.h \ 625ffe3c632Sopenharmony_ci objectivec/GPBType.pbobjc.m \ 626ffe3c632Sopenharmony_ci objectivec/GPBUnknownField.h \ 627ffe3c632Sopenharmony_ci objectivec/GPBUnknownField.m \ 628ffe3c632Sopenharmony_ci objectivec/GPBUnknownField_PackagePrivate.h \ 629ffe3c632Sopenharmony_ci objectivec/GPBUnknownFieldSet.h \ 630ffe3c632Sopenharmony_ci objectivec/GPBUnknownFieldSet.m \ 631ffe3c632Sopenharmony_ci objectivec/GPBUnknownFieldSet_PackagePrivate.h \ 632ffe3c632Sopenharmony_ci objectivec/GPBUtilities.h \ 633ffe3c632Sopenharmony_ci objectivec/GPBUtilities.m \ 634ffe3c632Sopenharmony_ci objectivec/GPBUtilities_PackagePrivate.h \ 635ffe3c632Sopenharmony_ci objectivec/GPBWellKnownTypes.h \ 636ffe3c632Sopenharmony_ci objectivec/GPBWellKnownTypes.m \ 637ffe3c632Sopenharmony_ci objectivec/GPBWireFormat.h \ 638ffe3c632Sopenharmony_ci objectivec/GPBWireFormat.m \ 639ffe3c632Sopenharmony_ci objectivec/GPBWrappers.pbobjc.h \ 640ffe3c632Sopenharmony_ci objectivec/GPBWrappers.pbobjc.m \ 641ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \ 642ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ 643ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \ 644ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ 645ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ 646ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ 647ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \ 648ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ 649ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \ 650ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ 651ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ 652ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ 653ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_tvOS.xcodeproj/project.pbxproj \ 654ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ 655ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \ 656ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ 657ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ 658ffe3c632Sopenharmony_ci objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ 659ffe3c632Sopenharmony_ci objectivec/README.md \ 660ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.pbxproj \ 661ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ 662ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/OSXCocoaPodsTester.xcscheme \ 663ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.h \ 664ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.m \ 665ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \ 666ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Base.lproj/MainMenu.xib \ 667ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Info.plist \ 668ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/main.m \ 669ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-framework \ 670ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-static \ 671ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/README.md \ 672ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-framework \ 673ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-static \ 674ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.pbxproj \ 675ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ 676ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/iOSCocoaPodsTester.xcscheme \ 677ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.h \ 678ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.m \ 679ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \ 680ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/LaunchScreen.storyboard \ 681ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/Main.storyboard \ 682ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Info.plist \ 683ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.h \ 684ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.m \ 685ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/main.m \ 686ffe3c632Sopenharmony_ci objectivec/Tests/CocoaPods/run_tests.sh \ 687ffe3c632Sopenharmony_ci objectivec/Tests/golden_message \ 688ffe3c632Sopenharmony_ci objectivec/Tests/golden_packed_fields_message \ 689ffe3c632Sopenharmony_ci objectivec/Tests/GPBARCUnittestProtos.m \ 690ffe3c632Sopenharmony_ci objectivec/Tests/GPBArrayTests.m \ 691ffe3c632Sopenharmony_ci objectivec/Tests/GPBCodedInputStreamTests.m \ 692ffe3c632Sopenharmony_ci objectivec/Tests/GPBCodedOuputStreamTests.m \ 693ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest01.m \ 694ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest02.m \ 695ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest03.m \ 696ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest04.m \ 697ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest05.m \ 698ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest06.m \ 699ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest07.m \ 700ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest08.m \ 701ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest09.m \ 702ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest10.m \ 703ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest11.m \ 704ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest12.m \ 705ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest13.m \ 706ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest14.m \ 707ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest15.m \ 708ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest16.m \ 709ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest17.m \ 710ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest18.m \ 711ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest19.m \ 712ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest20.m \ 713ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest21.m \ 714ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest22.m \ 715ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest23.m \ 716ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest24.m \ 717ffe3c632Sopenharmony_ci objectivec/Tests/GPBCompileTest25.m \ 718ffe3c632Sopenharmony_ci objectivec/Tests/GPBConcurrencyTests.m \ 719ffe3c632Sopenharmony_ci objectivec/Tests/GPBDescriptorTests.m \ 720ffe3c632Sopenharmony_ci objectivec/Tests/GPBDictionaryTests+Bool.m \ 721ffe3c632Sopenharmony_ci objectivec/Tests/GPBDictionaryTests+Int32.m \ 722ffe3c632Sopenharmony_ci objectivec/Tests/GPBDictionaryTests+Int64.m \ 723ffe3c632Sopenharmony_ci objectivec/Tests/GPBDictionaryTests+String.m \ 724ffe3c632Sopenharmony_ci objectivec/Tests/GPBDictionaryTests+UInt32.m \ 725ffe3c632Sopenharmony_ci objectivec/Tests/GPBDictionaryTests+UInt64.m \ 726ffe3c632Sopenharmony_ci objectivec/Tests/GPBDictionaryTests.m \ 727ffe3c632Sopenharmony_ci objectivec/Tests/GPBDictionaryTests.pddm \ 728ffe3c632Sopenharmony_ci objectivec/Tests/GPBExtensionRegistryTest.m \ 729ffe3c632Sopenharmony_ci objectivec/Tests/GPBMessageTests+ClassNames.m \ 730ffe3c632Sopenharmony_ci objectivec/Tests/GPBMessageTests+Merge.m \ 731ffe3c632Sopenharmony_ci objectivec/Tests/GPBMessageTests+Runtime.m \ 732ffe3c632Sopenharmony_ci objectivec/Tests/GPBMessageTests+Serialization.m \ 733ffe3c632Sopenharmony_ci objectivec/Tests/GPBMessageTests.m \ 734ffe3c632Sopenharmony_ci objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \ 735ffe3c632Sopenharmony_ci objectivec/Tests/GPBPerfTests.m \ 736ffe3c632Sopenharmony_ci objectivec/Tests/GPBSwiftTests.swift \ 737ffe3c632Sopenharmony_ci objectivec/Tests/GPBTestUtilities.h \ 738ffe3c632Sopenharmony_ci objectivec/Tests/GPBTestUtilities.m \ 739ffe3c632Sopenharmony_ci objectivec/Tests/GPBUnittestProtos.m \ 740ffe3c632Sopenharmony_ci objectivec/Tests/GPBUnittestProtos2.m \ 741ffe3c632Sopenharmony_ci objectivec/Tests/GPBUnknownFieldSetTest.m \ 742ffe3c632Sopenharmony_ci objectivec/Tests/GPBUtilitiesTests.m \ 743ffe3c632Sopenharmony_ci objectivec/Tests/GPBWellKnownTypesTest.m \ 744ffe3c632Sopenharmony_ci objectivec/Tests/GPBWireFormatTests.m \ 745ffe3c632Sopenharmony_ci objectivec/Tests/text_format_extensions_unittest_data.txt \ 746ffe3c632Sopenharmony_ci objectivec/Tests/text_format_map_unittest_data.txt \ 747ffe3c632Sopenharmony_ci objectivec/Tests/text_format_unittest_data.txt \ 748ffe3c632Sopenharmony_ci objectivec/Tests/unittest_cycle.proto \ 749ffe3c632Sopenharmony_ci objectivec/Tests/unittest_deprecated.proto \ 750ffe3c632Sopenharmony_ci objectivec/Tests/unittest_deprecated_file.proto \ 751ffe3c632Sopenharmony_ci objectivec/Tests/unittest_extension_chain_a.proto \ 752ffe3c632Sopenharmony_ci objectivec/Tests/unittest_extension_chain_b.proto \ 753ffe3c632Sopenharmony_ci objectivec/Tests/unittest_extension_chain_c.proto \ 754ffe3c632Sopenharmony_ci objectivec/Tests/unittest_extension_chain_d.proto \ 755ffe3c632Sopenharmony_ci objectivec/Tests/unittest_extension_chain_e.proto \ 756ffe3c632Sopenharmony_ci objectivec/Tests/unittest_extension_chain_f.proto \ 757ffe3c632Sopenharmony_ci objectivec/Tests/unittest_extension_chain_g.proto \ 758ffe3c632Sopenharmony_ci objectivec/Tests/unittest_objc.proto \ 759ffe3c632Sopenharmony_ci objectivec/Tests/unittest_objc_options.proto \ 760ffe3c632Sopenharmony_ci objectivec/Tests/unittest_objc_startup.proto \ 761ffe3c632Sopenharmony_ci objectivec/Tests/unittest_runtime_proto2.proto \ 762ffe3c632Sopenharmony_ci objectivec/Tests/unittest_runtime_proto3.proto \ 763ffe3c632Sopenharmony_ci objectivec/Tests/UnitTests-Bridging-Header.h \ 764ffe3c632Sopenharmony_ci objectivec/Tests/UnitTests-Info.plist \ 765ffe3c632Sopenharmony_ci Protobuf.podspec 766ffe3c632Sopenharmony_ci 767ffe3c632Sopenharmony_ciphp_EXTRA_DIST= \ 768ffe3c632Sopenharmony_ci composer.json \ 769ffe3c632Sopenharmony_ci php/README.md \ 770ffe3c632Sopenharmony_ci php/composer.json \ 771ffe3c632Sopenharmony_ci php/ext/google/protobuf/arena.c \ 772ffe3c632Sopenharmony_ci php/ext/google/protobuf/arena.h \ 773ffe3c632Sopenharmony_ci php/ext/google/protobuf/array.c \ 774ffe3c632Sopenharmony_ci php/ext/google/protobuf/array.h \ 775ffe3c632Sopenharmony_ci php/ext/google/protobuf/bundled_php.h \ 776ffe3c632Sopenharmony_ci php/ext/google/protobuf/config.m4 \ 777ffe3c632Sopenharmony_ci php/ext/google/protobuf/convert.c \ 778ffe3c632Sopenharmony_ci php/ext/google/protobuf/convert.h \ 779ffe3c632Sopenharmony_ci php/ext/google/protobuf/def.c \ 780ffe3c632Sopenharmony_ci php/ext/google/protobuf/def.h \ 781ffe3c632Sopenharmony_ci php/ext/google/protobuf/make-preload.php \ 782ffe3c632Sopenharmony_ci php/ext/google/protobuf/map.c \ 783ffe3c632Sopenharmony_ci php/ext/google/protobuf/map.h \ 784ffe3c632Sopenharmony_ci php/ext/google/protobuf/message.c \ 785ffe3c632Sopenharmony_ci php/ext/google/protobuf/message.h \ 786ffe3c632Sopenharmony_ci php/ext/google/protobuf/names.c \ 787ffe3c632Sopenharmony_ci php/ext/google/protobuf/names.h \ 788ffe3c632Sopenharmony_ci php/ext/google/protobuf/package.xml \ 789ffe3c632Sopenharmony_ci php/ext/google/protobuf/php-upb.c \ 790ffe3c632Sopenharmony_ci php/ext/google/protobuf/php-upb.h \ 791ffe3c632Sopenharmony_ci php/ext/google/protobuf/protobuf.c \ 792ffe3c632Sopenharmony_ci php/ext/google/protobuf/protobuf.h \ 793ffe3c632Sopenharmony_ci php/generate_descriptor_protos.sh \ 794ffe3c632Sopenharmony_ci php/phpunit.xml \ 795ffe3c632Sopenharmony_ci php/release.sh \ 796ffe3c632Sopenharmony_ci php/src/GPBMetadata/Google/Protobuf/Any.php \ 797ffe3c632Sopenharmony_ci php/src/GPBMetadata/Google/Protobuf/Api.php \ 798ffe3c632Sopenharmony_ci php/src/GPBMetadata/Google/Protobuf/Duration.php \ 799ffe3c632Sopenharmony_ci php/src/GPBMetadata/Google/Protobuf/FieldMask.php \ 800ffe3c632Sopenharmony_ci php/src/GPBMetadata/Google/Protobuf/GPBEmpty.php \ 801ffe3c632Sopenharmony_ci php/src/GPBMetadata/Google/Protobuf/Internal/Descriptor.php \ 802ffe3c632Sopenharmony_ci php/src/GPBMetadata/Google/Protobuf/SourceContext.php \ 803ffe3c632Sopenharmony_ci php/src/GPBMetadata/Google/Protobuf/Struct.php \ 804ffe3c632Sopenharmony_ci php/src/GPBMetadata/Google/Protobuf/Timestamp.php \ 805ffe3c632Sopenharmony_ci php/src/GPBMetadata/Google/Protobuf/Type.php \ 806ffe3c632Sopenharmony_ci php/src/GPBMetadata/Google/Protobuf/Wrappers.php \ 807ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Any.php \ 808ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Api.php \ 809ffe3c632Sopenharmony_ci php/src/Google/Protobuf/BoolValue.php \ 810ffe3c632Sopenharmony_ci php/src/Google/Protobuf/BytesValue.php \ 811ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Descriptor.php \ 812ffe3c632Sopenharmony_ci php/src/Google/Protobuf/DescriptorPool.php \ 813ffe3c632Sopenharmony_ci php/src/Google/Protobuf/DoubleValue.php \ 814ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Duration.php \ 815ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Enum.php \ 816ffe3c632Sopenharmony_ci php/src/Google/Protobuf/EnumDescriptor.php \ 817ffe3c632Sopenharmony_ci php/src/Google/Protobuf/EnumValue.php \ 818ffe3c632Sopenharmony_ci php/src/Google/Protobuf/EnumValueDescriptor.php \ 819ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Field.php \ 820ffe3c632Sopenharmony_ci php/src/Google/Protobuf/FieldDescriptor.php \ 821ffe3c632Sopenharmony_ci php/src/Google/Protobuf/FieldMask.php \ 822ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Field/Cardinality.php \ 823ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Field_Cardinality.php \ 824ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Field/Kind.php \ 825ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Field_Kind.php \ 826ffe3c632Sopenharmony_ci php/src/Google/Protobuf/FloatValue.php \ 827ffe3c632Sopenharmony_ci php/src/Google/Protobuf/GPBEmpty.php \ 828ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Int32Value.php \ 829ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Int64Value.php \ 830ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/CodedInputStream.php \ 831ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/CodedOutputStream.php \ 832ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/Descriptor.php \ 833ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/DescriptorPool.php \ 834ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/DescriptorProto.php \ 835ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php \ 836ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php \ 837ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/EnumBuilderContext.php \ 838ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/EnumDescriptor.php \ 839ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/EnumDescriptorProto.php \ 840ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php \ 841ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/EnumOptions.php \ 842ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php \ 843ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/EnumValueOptions.php \ 844ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php \ 845ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \ 846ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FieldDescriptor.php \ 847ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \ 848ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php \ 849ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php \ 850ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FieldOptions.php \ 851ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FieldOptions/CType.php \ 852ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FieldOptions/JSType.php \ 853ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FileDescriptor.php \ 854ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FileDescriptorProto.php \ 855ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FileDescriptorSet.php \ 856ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FileOptions.php \ 857ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php \ 858ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/GPBDecodeException.php \ 859ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/GPBJsonWire.php \ 860ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/GPBLabel.php \ 861ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/GPBType.php \ 862ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/GPBUtil.php \ 863ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/GPBWire.php \ 864ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/GPBWireType.php \ 865ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php \ 866ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php \ 867ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php \ 868ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php \ 869ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/MapEntry.php \ 870ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/MapField.php \ 871ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/MapFieldIter.php \ 872ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/Message.php \ 873ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/MessageBuilderContext.php \ 874ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/MessageOptions.php \ 875ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/MethodDescriptorProto.php \ 876ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/MethodOptions.php \ 877ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php \ 878ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/OneofDescriptor.php \ 879ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/OneofDescriptorProto.php \ 880ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/OneofField.php \ 881ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/OneofOptions.php \ 882ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/RawInputStream.php \ 883ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/RepeatedField.php \ 884ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/RepeatedFieldIter.php \ 885ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php \ 886ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/ServiceOptions.php \ 887ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/SourceCodeInfo.php \ 888ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php \ 889ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/UninterpretedOption.php \ 890ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php \ 891ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php \ 892ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/DescriptorProto_ReservedRange.php \ 893ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/EnumDescriptorProto_EnumReservedRange.php \ 894ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php \ 895ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php \ 896ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FieldOptions_CType.php \ 897ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FieldOptions_JSType.php \ 898ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.php \ 899ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/GeneratedCodeInfo_Annotation.php \ 900ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/MethodOptions_IdempotencyLevel.php \ 901ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/SourceCodeInfo_Location.php \ 902ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php \ 903ffe3c632Sopenharmony_ci php/src/Google/Protobuf/ListValue.php \ 904ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Method.php \ 905ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Mixin.php \ 906ffe3c632Sopenharmony_ci php/src/Google/Protobuf/NullValue.php \ 907ffe3c632Sopenharmony_ci php/src/Google/Protobuf/OneofDescriptor.php \ 908ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Option.php \ 909ffe3c632Sopenharmony_ci php/src/Google/Protobuf/SourceContext.php \ 910ffe3c632Sopenharmony_ci php/src/Google/Protobuf/StringValue.php \ 911ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Struct.php \ 912ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Syntax.php \ 913ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Timestamp.php \ 914ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Type.php \ 915ffe3c632Sopenharmony_ci php/src/Google/Protobuf/UInt32Value.php \ 916ffe3c632Sopenharmony_ci php/src/Google/Protobuf/UInt64Value.php \ 917ffe3c632Sopenharmony_ci php/src/Google/Protobuf/Value.php \ 918ffe3c632Sopenharmony_ci php/src/phpdoc.dist.xml \ 919ffe3c632Sopenharmony_ci php/tests/ArrayTest.php \ 920ffe3c632Sopenharmony_ci php/tests/autoload.php \ 921ffe3c632Sopenharmony_ci php/tests/bootstrap_phpunit.php \ 922ffe3c632Sopenharmony_ci php/tests/compatibility_test.sh \ 923ffe3c632Sopenharmony_ci php/tests/compile_extension.sh \ 924ffe3c632Sopenharmony_ci php/tests/DescriptorsTest.php \ 925ffe3c632Sopenharmony_ci php/tests/EncodeDecodeTest.php \ 926ffe3c632Sopenharmony_ci php/tests/gdb_test.sh \ 927ffe3c632Sopenharmony_ci php/tests/generate_protos.sh \ 928ffe3c632Sopenharmony_ci php/tests/GeneratedClassTest.php \ 929ffe3c632Sopenharmony_ci php/tests/GeneratedPhpdocTest.php \ 930ffe3c632Sopenharmony_ci php/tests/GeneratedServiceTest.php \ 931ffe3c632Sopenharmony_ci php/tests/MapFieldTest.php \ 932ffe3c632Sopenharmony_ci php/tests/memory_leak_test.php \ 933ffe3c632Sopenharmony_ci php/tests/multirequest.php \ 934ffe3c632Sopenharmony_ci php/tests/multirequest.sh \ 935ffe3c632Sopenharmony_ci php/tests/PhpImplementationTest.php \ 936ffe3c632Sopenharmony_ci php/tests/proto/empty/echo.proto \ 937ffe3c632Sopenharmony_ci php/tests/proto/test.proto \ 938ffe3c632Sopenharmony_ci php/tests/proto/test_descriptors.proto \ 939ffe3c632Sopenharmony_ci php/tests/proto/test_empty_php_namespace.proto \ 940ffe3c632Sopenharmony_ci php/tests/proto/test_import_descriptor_proto.proto \ 941ffe3c632Sopenharmony_ci php/tests/proto/test_include.proto \ 942ffe3c632Sopenharmony_ci php/tests/proto/test_no_namespace.proto \ 943ffe3c632Sopenharmony_ci php/tests/proto/test_php_namespace.proto \ 944ffe3c632Sopenharmony_ci php/tests/proto/test_prefix.proto \ 945ffe3c632Sopenharmony_ci php/tests/proto/test_reserved_enum_lower.proto \ 946ffe3c632Sopenharmony_ci php/tests/proto/test_reserved_enum_upper.proto \ 947ffe3c632Sopenharmony_ci php/tests/proto/test_reserved_enum_value_lower.proto \ 948ffe3c632Sopenharmony_ci php/tests/proto/test_reserved_enum_value_upper.proto \ 949ffe3c632Sopenharmony_ci php/tests/proto/test_reserved_message_lower.proto \ 950ffe3c632Sopenharmony_ci php/tests/proto/test_reserved_message_upper.proto \ 951ffe3c632Sopenharmony_ci php/tests/proto/test_service.proto \ 952ffe3c632Sopenharmony_ci php/tests/proto/test_service_namespace.proto \ 953ffe3c632Sopenharmony_ci php/tests/proto/test_wrapper_type_setters.proto \ 954ffe3c632Sopenharmony_ci php/tests/test.sh \ 955ffe3c632Sopenharmony_ci php/tests/test_base.php \ 956ffe3c632Sopenharmony_ci php/tests/test_util.php \ 957ffe3c632Sopenharmony_ci php/tests/undefined_test.php \ 958ffe3c632Sopenharmony_ci php/tests/valgrind.supp \ 959ffe3c632Sopenharmony_ci php/tests/WellKnownTest.php \ 960ffe3c632Sopenharmony_ci php/tests/WrapperTypeSettersTest.php 961ffe3c632Sopenharmony_ci 962ffe3c632Sopenharmony_cipython_EXTRA_DIST= \ 963ffe3c632Sopenharmony_ci python/MANIFEST.in \ 964ffe3c632Sopenharmony_ci python/google/__init__.py \ 965ffe3c632Sopenharmony_ci python/google/protobuf/__init__.py \ 966ffe3c632Sopenharmony_ci python/google/protobuf/compiler/__init__.py \ 967ffe3c632Sopenharmony_ci python/google/protobuf/descriptor.py \ 968ffe3c632Sopenharmony_ci python/google/protobuf/descriptor_database.py \ 969ffe3c632Sopenharmony_ci python/google/protobuf/descriptor_pool.py \ 970ffe3c632Sopenharmony_ci python/google/protobuf/internal/__init__.py \ 971ffe3c632Sopenharmony_ci python/google/protobuf/internal/_parameterized.py \ 972ffe3c632Sopenharmony_ci python/google/protobuf/internal/any_test.proto \ 973ffe3c632Sopenharmony_ci python/google/protobuf/internal/any_test.proto \ 974ffe3c632Sopenharmony_ci python/google/protobuf/internal/api_implementation.cc \ 975ffe3c632Sopenharmony_ci python/google/protobuf/internal/api_implementation.py \ 976ffe3c632Sopenharmony_ci python/google/protobuf/internal/containers.py \ 977ffe3c632Sopenharmony_ci python/google/protobuf/internal/decoder.py \ 978ffe3c632Sopenharmony_ci python/google/protobuf/internal/descriptor_database_test.py \ 979ffe3c632Sopenharmony_ci python/google/protobuf/internal/descriptor_pool_test.py \ 980ffe3c632Sopenharmony_ci python/google/protobuf/internal/descriptor_pool_test1.proto \ 981ffe3c632Sopenharmony_ci python/google/protobuf/internal/descriptor_pool_test2.proto \ 982ffe3c632Sopenharmony_ci python/google/protobuf/internal/descriptor_test.py \ 983ffe3c632Sopenharmony_ci python/google/protobuf/internal/encoder.py \ 984ffe3c632Sopenharmony_ci python/google/protobuf/internal/enum_type_wrapper.py \ 985ffe3c632Sopenharmony_ci python/google/protobuf/internal/extension_dict.py \ 986ffe3c632Sopenharmony_ci python/google/protobuf/internal/factory_test1.proto \ 987ffe3c632Sopenharmony_ci python/google/protobuf/internal/factory_test2.proto \ 988ffe3c632Sopenharmony_ci python/google/protobuf/internal/file_options_test.proto \ 989ffe3c632Sopenharmony_ci python/google/protobuf/internal/generator_test.py \ 990ffe3c632Sopenharmony_ci python/google/protobuf/internal/import_test_package/__init__.py \ 991ffe3c632Sopenharmony_ci python/google/protobuf/internal/import_test_package/inner.proto \ 992ffe3c632Sopenharmony_ci python/google/protobuf/internal/import_test_package/outer.proto \ 993ffe3c632Sopenharmony_ci python/google/protobuf/internal/json_format_test.py \ 994ffe3c632Sopenharmony_ci python/google/protobuf/internal/keywords_test.py \ 995ffe3c632Sopenharmony_ci python/google/protobuf/internal/message_factory_test.py \ 996ffe3c632Sopenharmony_ci python/google/protobuf/internal/message_listener.py \ 997ffe3c632Sopenharmony_ci python/google/protobuf/internal/message_set_extensions.proto \ 998ffe3c632Sopenharmony_ci python/google/protobuf/internal/message_test.py \ 999ffe3c632Sopenharmony_ci python/google/protobuf/internal/missing_enum_values.proto \ 1000ffe3c632Sopenharmony_ci python/google/protobuf/internal/more_extensions.proto \ 1001ffe3c632Sopenharmony_ci python/google/protobuf/internal/more_extensions_dynamic.proto \ 1002ffe3c632Sopenharmony_ci python/google/protobuf/internal/more_messages.proto \ 1003ffe3c632Sopenharmony_ci python/google/protobuf/internal/no_package.proto \ 1004ffe3c632Sopenharmony_ci python/google/protobuf/internal/packed_field_test.proto \ 1005ffe3c632Sopenharmony_ci python/google/protobuf/internal/proto_builder_test.py \ 1006ffe3c632Sopenharmony_ci python/google/protobuf/internal/python_message.py \ 1007ffe3c632Sopenharmony_ci python/google/protobuf/internal/python_protobuf.cc \ 1008ffe3c632Sopenharmony_ci python/google/protobuf/internal/reflection_test.py \ 1009ffe3c632Sopenharmony_ci python/google/protobuf/internal/service_reflection_test.py \ 1010ffe3c632Sopenharmony_ci python/google/protobuf/internal/symbol_database_test.py \ 1011ffe3c632Sopenharmony_ci python/google/protobuf/internal/test_bad_identifiers.proto \ 1012ffe3c632Sopenharmony_ci python/google/protobuf/internal/test_proto3_optional.proto \ 1013ffe3c632Sopenharmony_ci python/google/protobuf/internal/test_util.py \ 1014ffe3c632Sopenharmony_ci python/google/protobuf/internal/testing_refleaks.py \ 1015ffe3c632Sopenharmony_ci python/google/protobuf/internal/text_encoding_test.py \ 1016ffe3c632Sopenharmony_ci python/google/protobuf/internal/text_format_test.py \ 1017ffe3c632Sopenharmony_ci python/google/protobuf/internal/type_checkers.py \ 1018ffe3c632Sopenharmony_ci python/google/protobuf/internal/unknown_fields_test.py \ 1019ffe3c632Sopenharmony_ci python/google/protobuf/internal/well_known_types.py \ 1020ffe3c632Sopenharmony_ci python/google/protobuf/internal/well_known_types.py \ 1021ffe3c632Sopenharmony_ci python/google/protobuf/internal/well_known_types_test.py \ 1022ffe3c632Sopenharmony_ci python/google/protobuf/internal/well_known_types_test.py \ 1023ffe3c632Sopenharmony_ci python/google/protobuf/internal/wire_format.py \ 1024ffe3c632Sopenharmony_ci python/google/protobuf/internal/wire_format_test.py \ 1025ffe3c632Sopenharmony_ci python/google/protobuf/json_format.py \ 1026ffe3c632Sopenharmony_ci python/google/protobuf/message.py \ 1027ffe3c632Sopenharmony_ci python/google/protobuf/message_factory.py \ 1028ffe3c632Sopenharmony_ci python/google/protobuf/python_protobuf.h \ 1029ffe3c632Sopenharmony_ci python/google/protobuf/proto_api.h \ 1030ffe3c632Sopenharmony_ci python/google/protobuf/proto_builder.py \ 1031ffe3c632Sopenharmony_ci python/google/protobuf/pyext/README \ 1032ffe3c632Sopenharmony_ci python/google/protobuf/pyext/__init__.py \ 1033ffe3c632Sopenharmony_ci python/google/protobuf/pyext/cpp_message.py \ 1034ffe3c632Sopenharmony_ci python/google/protobuf/pyext/descriptor.cc \ 1035ffe3c632Sopenharmony_ci python/google/protobuf/pyext/descriptor.h \ 1036ffe3c632Sopenharmony_ci python/google/protobuf/pyext/descriptor_containers.cc \ 1037ffe3c632Sopenharmony_ci python/google/protobuf/pyext/descriptor_containers.h \ 1038ffe3c632Sopenharmony_ci python/google/protobuf/pyext/descriptor_database.cc \ 1039ffe3c632Sopenharmony_ci python/google/protobuf/pyext/descriptor_database.h \ 1040ffe3c632Sopenharmony_ci python/google/protobuf/pyext/descriptor_pool.cc \ 1041ffe3c632Sopenharmony_ci python/google/protobuf/pyext/descriptor_pool.h \ 1042ffe3c632Sopenharmony_ci python/google/protobuf/pyext/extension_dict.cc \ 1043ffe3c632Sopenharmony_ci python/google/protobuf/pyext/extension_dict.h \ 1044ffe3c632Sopenharmony_ci python/google/protobuf/pyext/map_container.cc \ 1045ffe3c632Sopenharmony_ci python/google/protobuf/pyext/map_container.h \ 1046ffe3c632Sopenharmony_ci python/google/protobuf/pyext/message.cc \ 1047ffe3c632Sopenharmony_ci python/google/protobuf/pyext/message.h \ 1048ffe3c632Sopenharmony_ci python/google/protobuf/pyext/field.cc \ 1049ffe3c632Sopenharmony_ci python/google/protobuf/pyext/field.h \ 1050ffe3c632Sopenharmony_ci python/google/protobuf/pyext/unknown_fields.cc \ 1051ffe3c632Sopenharmony_ci python/google/protobuf/pyext/unknown_fields.h \ 1052ffe3c632Sopenharmony_ci python/google/protobuf/pyext/message_factory.cc \ 1053ffe3c632Sopenharmony_ci python/google/protobuf/pyext/message_factory.h \ 1054ffe3c632Sopenharmony_ci python/google/protobuf/pyext/message_module.cc \ 1055ffe3c632Sopenharmony_ci python/google/protobuf/pyext/proto2_api_test.proto \ 1056ffe3c632Sopenharmony_ci python/google/protobuf/pyext/python.proto \ 1057ffe3c632Sopenharmony_ci python/google/protobuf/pyext/repeated_composite_container.cc \ 1058ffe3c632Sopenharmony_ci python/google/protobuf/pyext/repeated_composite_container.h \ 1059ffe3c632Sopenharmony_ci python/google/protobuf/pyext/repeated_scalar_container.cc \ 1060ffe3c632Sopenharmony_ci python/google/protobuf/pyext/repeated_scalar_container.h \ 1061ffe3c632Sopenharmony_ci python/google/protobuf/pyext/safe_numerics.h \ 1062ffe3c632Sopenharmony_ci python/google/protobuf/pyext/scoped_pyobject_ptr.h \ 1063ffe3c632Sopenharmony_ci python/google/protobuf/reflection.py \ 1064ffe3c632Sopenharmony_ci python/google/protobuf/service.py \ 1065ffe3c632Sopenharmony_ci python/google/protobuf/service_reflection.py \ 1066ffe3c632Sopenharmony_ci python/google/protobuf/symbol_database.py \ 1067ffe3c632Sopenharmony_ci python/google/protobuf/text_encoding.py \ 1068ffe3c632Sopenharmony_ci python/google/protobuf/text_format.py \ 1069ffe3c632Sopenharmony_ci python/google/protobuf/util/__init__.py \ 1070ffe3c632Sopenharmony_ci python/release.sh \ 1071ffe3c632Sopenharmony_ci python/mox.py \ 1072ffe3c632Sopenharmony_ci python/setup.cfg \ 1073ffe3c632Sopenharmony_ci python/setup.py \ 1074ffe3c632Sopenharmony_ci python/stubout.py \ 1075ffe3c632Sopenharmony_ci python/tox.ini \ 1076ffe3c632Sopenharmony_ci python/README.md 1077ffe3c632Sopenharmony_ci 1078ffe3c632Sopenharmony_ciruby_EXTRA_DIST= \ 1079ffe3c632Sopenharmony_ci ruby/Gemfile \ 1080ffe3c632Sopenharmony_ci ruby/.gitignore \ 1081ffe3c632Sopenharmony_ci ruby/README.md \ 1082ffe3c632Sopenharmony_ci ruby/Rakefile \ 1083ffe3c632Sopenharmony_ci ruby/compatibility_tests/v3.0.0/tests/test_import.proto \ 1084ffe3c632Sopenharmony_ci ruby/compatibility_tests/v3.0.0/tests/stress.rb \ 1085ffe3c632Sopenharmony_ci ruby/compatibility_tests/v3.0.0/tests/repeated_field_test.rb \ 1086ffe3c632Sopenharmony_ci ruby/compatibility_tests/v3.0.0/tests/generated_code_test.rb \ 1087ffe3c632Sopenharmony_ci ruby/compatibility_tests/v3.0.0/tests/generated_code.proto \ 1088ffe3c632Sopenharmony_ci ruby/compatibility_tests/v3.0.0/tests/basic.rb \ 1089ffe3c632Sopenharmony_ci ruby/compatibility_tests/v3.0.0/test.sh \ 1090ffe3c632Sopenharmony_ci ruby/compatibility_tests/v3.0.0/Rakefile \ 1091ffe3c632Sopenharmony_ci ruby/compatibility_tests/v3.0.0/README.md \ 1092ffe3c632Sopenharmony_ci ruby/ext/google/protobuf_c/defs.c \ 1093ffe3c632Sopenharmony_ci ruby/ext/google/protobuf_c/encode_decode.c \ 1094ffe3c632Sopenharmony_ci ruby/ext/google/protobuf_c/extconf.rb \ 1095ffe3c632Sopenharmony_ci ruby/ext/google/protobuf_c/map.c \ 1096ffe3c632Sopenharmony_ci ruby/ext/google/protobuf_c/message.c \ 1097ffe3c632Sopenharmony_ci ruby/ext/google/protobuf_c/protobuf.c \ 1098ffe3c632Sopenharmony_ci ruby/ext/google/protobuf_c/protobuf.h \ 1099ffe3c632Sopenharmony_ci ruby/ext/google/protobuf_c/repeated_field.c \ 1100ffe3c632Sopenharmony_ci ruby/ext/google/protobuf_c/storage.c \ 1101ffe3c632Sopenharmony_ci ruby/ext/google/protobuf_c/upb.c \ 1102ffe3c632Sopenharmony_ci ruby/ext/google/protobuf_c/upb.h \ 1103ffe3c632Sopenharmony_ci ruby/ext/google/protobuf_c/wrap_memcpy.c \ 1104ffe3c632Sopenharmony_ci ruby/google-protobuf.gemspec \ 1105ffe3c632Sopenharmony_ci ruby/lib/google/protobuf/message_exts.rb \ 1106ffe3c632Sopenharmony_ci ruby/lib/google/protobuf/repeated_field.rb \ 1107ffe3c632Sopenharmony_ci ruby/lib/google/protobuf/well_known_types.rb \ 1108ffe3c632Sopenharmony_ci ruby/lib/google/protobuf.rb \ 1109ffe3c632Sopenharmony_ci ruby/pom.xml \ 1110ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \ 1111ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \ 1112ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \ 1113ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \ 1114ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \ 1115ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \ 1116ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \ 1117ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \ 1118ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \ 1119ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \ 1120ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \ 1121ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \ 1122ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \ 1123ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \ 1124ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \ 1125ffe3c632Sopenharmony_ci ruby/src/main/java/com/google/protobuf/jruby/Utils.java \ 1126ffe3c632Sopenharmony_ci ruby/src/main/java/google/ProtobufJavaService.java \ 1127ffe3c632Sopenharmony_ci ruby/src/main/sentinel.proto \ 1128ffe3c632Sopenharmony_ci ruby/tests/basic_proto2.rb \ 1129ffe3c632Sopenharmony_ci ruby/tests/basic_test_proto2.proto \ 1130ffe3c632Sopenharmony_ci ruby/tests/basic_test.proto \ 1131ffe3c632Sopenharmony_ci ruby/tests/basic.rb \ 1132ffe3c632Sopenharmony_ci ruby/tests/common_tests.rb \ 1133ffe3c632Sopenharmony_ci ruby/tests/encode_decode_test.rb \ 1134ffe3c632Sopenharmony_ci ruby/tests/gc_test.rb \ 1135ffe3c632Sopenharmony_ci ruby/tests/repeated_field_test.rb \ 1136ffe3c632Sopenharmony_ci ruby/tests/stress.rb \ 1137ffe3c632Sopenharmony_ci ruby/tests/generated_code_proto2_test.rb \ 1138ffe3c632Sopenharmony_ci ruby/tests/generated_code_proto2.proto \ 1139ffe3c632Sopenharmony_ci ruby/tests/generated_code.proto \ 1140ffe3c632Sopenharmony_ci ruby/tests/test_import_proto2.proto \ 1141ffe3c632Sopenharmony_ci ruby/tests/test_import.proto \ 1142ffe3c632Sopenharmony_ci ruby/tests/test_ruby_package_proto2.proto \ 1143ffe3c632Sopenharmony_ci ruby/tests/test_ruby_package.proto \ 1144ffe3c632Sopenharmony_ci ruby/tests/generated_code_test.rb \ 1145ffe3c632Sopenharmony_ci ruby/tests/well_known_types_test.rb \ 1146ffe3c632Sopenharmony_ci ruby/tests/type_errors.rb \ 1147ffe3c632Sopenharmony_ci ruby/travis-test.sh 1148ffe3c632Sopenharmony_ci 1149ffe3c632Sopenharmony_cijs_EXTRA_DIST= \ 1150ffe3c632Sopenharmony_ci js/README.md \ 1151ffe3c632Sopenharmony_ci js/binary/arith.js \ 1152ffe3c632Sopenharmony_ci js/binary/arith_test.js \ 1153ffe3c632Sopenharmony_ci js/binary/constants.js \ 1154ffe3c632Sopenharmony_ci js/binary/decoder.js \ 1155ffe3c632Sopenharmony_ci js/binary/decoder_test.js \ 1156ffe3c632Sopenharmony_ci js/binary/encoder.js \ 1157ffe3c632Sopenharmony_ci js/binary/message_test.js \ 1158ffe3c632Sopenharmony_ci js/binary/proto_test.js \ 1159ffe3c632Sopenharmony_ci js/binary/reader.js \ 1160ffe3c632Sopenharmony_ci js/binary/reader_test.js \ 1161ffe3c632Sopenharmony_ci js/binary/utils.js \ 1162ffe3c632Sopenharmony_ci js/binary/utils_test.js \ 1163ffe3c632Sopenharmony_ci js/binary/writer.js \ 1164ffe3c632Sopenharmony_ci js/binary/writer_test.js \ 1165ffe3c632Sopenharmony_ci js/commonjs/export.js \ 1166ffe3c632Sopenharmony_ci js/commonjs/export_asserts.js \ 1167ffe3c632Sopenharmony_ci js/commonjs/export_testdeps.js \ 1168ffe3c632Sopenharmony_ci js/commonjs/import_test.js \ 1169ffe3c632Sopenharmony_ci js/commonjs/jasmine.json \ 1170ffe3c632Sopenharmony_ci js/commonjs/rewrite_tests_for_commonjs.js \ 1171ffe3c632Sopenharmony_ci js/commonjs/strict_test.js \ 1172ffe3c632Sopenharmony_ci js/commonjs/test6/test6.proto \ 1173ffe3c632Sopenharmony_ci js/commonjs/test7/test7.proto \ 1174ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/binary/arith_test.js \ 1175ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/binary/decoder_test.js \ 1176ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/binary/proto_test.js \ 1177ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/binary/reader_test.js \ 1178ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/binary/utils_test.js \ 1179ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/binary/writer_test.js \ 1180ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/commonjs/export_asserts.js \ 1181ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/commonjs/export_testdeps.js \ 1182ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/commonjs/import_test.js \ 1183ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/commonjs/jasmine.json \ 1184ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/commonjs/rewrite_tests_for_commonjs.js \ 1185ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/commonjs/test6/test6.proto \ 1186ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/commonjs/test7/test7.proto \ 1187ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/data.proto \ 1188ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/debug_test.js \ 1189ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/jasmine1.json \ 1190ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/jasmine2.json \ 1191ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/jasmine3.json \ 1192ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/message_test.js \ 1193ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/proto3_test.js \ 1194ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/proto3_test.proto \ 1195ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/test2.proto \ 1196ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/test3.proto \ 1197ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/test4.proto \ 1198ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/test5.proto \ 1199ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/testbinary.proto \ 1200ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/testempty.proto \ 1201ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/test.proto \ 1202ffe3c632Sopenharmony_ci js/compatibility_tests/v3.0.0/test.sh \ 1203ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/testempty.proto \ 1204ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/testbinary.proto \ 1205ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/test5.proto \ 1206ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/test4.proto \ 1207ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/test3.proto \ 1208ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/test2.proto \ 1209ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/test.proto \ 1210ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/proto3_test.proto \ 1211ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/proto3_test.js \ 1212ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/message_test.js \ 1213ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/maps_test.js \ 1214ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/debug_test.js \ 1215ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/data.proto \ 1216ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/commonjs/test7/test7.proto \ 1217ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/commonjs/test6/test6.proto \ 1218ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/binary/writer_test.js \ 1219ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/binary/utils_test.js \ 1220ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/binary/reader_test.js \ 1221ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/binary/proto_test.js \ 1222ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/binary/decoder_test.js \ 1223ffe3c632Sopenharmony_ci js/compatibility_tests/v3.1.0/binary/arith_test.js \ 1224ffe3c632Sopenharmony_ci js/data.proto \ 1225ffe3c632Sopenharmony_ci js/debug.js \ 1226ffe3c632Sopenharmony_ci js/debug_test.js \ 1227ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/message_set.js \ 1228ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/message_set_test.js \ 1229ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/tag.js \ 1230ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/tag_test.js \ 1231ffe3c632Sopenharmony_ci js/gulpfile.js \ 1232ffe3c632Sopenharmony_ci js/jasmine.json \ 1233ffe3c632Sopenharmony_ci js/map.js \ 1234ffe3c632Sopenharmony_ci js/maps_test.js \ 1235ffe3c632Sopenharmony_ci js/message.js \ 1236ffe3c632Sopenharmony_ci js/message_test.js \ 1237ffe3c632Sopenharmony_ci js/node_loader.js \ 1238ffe3c632Sopenharmony_ci js/package.json \ 1239ffe3c632Sopenharmony_ci js/proto3_test.js \ 1240ffe3c632Sopenharmony_ci js/proto3_test.proto \ 1241ffe3c632Sopenharmony_ci js/test.proto \ 1242ffe3c632Sopenharmony_ci js/test2.proto \ 1243ffe3c632Sopenharmony_ci js/test3.proto \ 1244ffe3c632Sopenharmony_ci js/test4.proto \ 1245ffe3c632Sopenharmony_ci js/test5.proto \ 1246ffe3c632Sopenharmony_ci js/test8.proto \ 1247ffe3c632Sopenharmony_ci js/test9.proto \ 1248ffe3c632Sopenharmony_ci js/test10.proto \ 1249ffe3c632Sopenharmony_ci js/test11.proto \ 1250ffe3c632Sopenharmony_ci js/test12.proto \ 1251ffe3c632Sopenharmony_ci js/test13.proto \ 1252ffe3c632Sopenharmony_ci js/test14.proto \ 1253ffe3c632Sopenharmony_ci js/test15.proto \ 1254ffe3c632Sopenharmony_ci js/test_bootstrap.js \ 1255ffe3c632Sopenharmony_ci js/testbinary.proto \ 1256ffe3c632Sopenharmony_ci js/testempty.proto \ 1257ffe3c632Sopenharmony_ci js/testlargenumbers.proto \ 1258ffe3c632Sopenharmony_ci js/experimental/runtime/testing/jasmine_protobuf.js \ 1259ffe3c632Sopenharmony_ci js/experimental/runtime/testing/ensure_custom_equality_test.js \ 1260ffe3c632Sopenharmony_ci js/experimental/runtime/testing/binary/test_message.js \ 1261ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/writer_test.js \ 1262ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/writer.js \ 1263ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/wire_type.js \ 1264ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/uint8arrays_test.js \ 1265ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/uint8arrays.js \ 1266ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/uint32_test_pairs.js \ 1267ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/typed_arrays_test.js \ 1268ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/typed_arrays.js \ 1269ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/textencoding_test.js \ 1270ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/textencoding.js \ 1271ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/storage.js \ 1272ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/sint64_test_pairs.js \ 1273ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/sint32_test_pairs.js \ 1274ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/sfixed64_test_pairs.js \ 1275ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/sfixed32_test_pairs.js \ 1276ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/reader_test.js \ 1277ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/reader.js \ 1278ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/packed_uint32_test_pairs.js \ 1279ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/packed_sint64_test_pairs.js \ 1280ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/packed_sint32_test_pairs.js \ 1281ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/packed_sfixed64_test_pairs.js \ 1282ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/packed_sfixed32_test_pairs.js \ 1283ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/packed_int64_test_pairs.js \ 1284ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/packed_int32_test_pairs.js \ 1285ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/packed_float_test_pairs.js \ 1286ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/packed_fixed32_test_pairs.js \ 1287ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/packed_double_test_pairs.js \ 1288ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/packed_bool_test_pairs.js \ 1289ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/kernel_test.js \ 1290ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/kernel_repeated_test.js \ 1291ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/kernel_compatibility_test.js \ 1292ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/kernel.js \ 1293ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/internal_message.js \ 1294ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/int64_test_pairs.js \ 1295ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/int32_test_pairs.js \ 1296ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/indexer_test.js \ 1297ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/indexer.js \ 1298ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/float_test_pairs.js \ 1299ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/fixed32_test_pairs.js \ 1300ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/field.js \ 1301ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/double_test_pairs.js \ 1302ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/conformance/wire_format.js \ 1303ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/conformance/test_all_types_proto3.js \ 1304ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/conformance/test_all_types_proto2.js \ 1305ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/conformance/conformance_testee_runner_node.js \ 1306ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/conformance/conformance_testee.js \ 1307ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/conformance/conformance_response.js \ 1308ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/conformance/conformance_request.js \ 1309ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/buffer_decoder_test.js \ 1310ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/buffer_decoder_helper.js \ 1311ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/buffer_decoder.js \ 1312ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/bool_test_pairs.js \ 1313ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/binary_storage_test.js \ 1314ffe3c632Sopenharmony_ci js/experimental/runtime/kernel/binary_storage.js \ 1315ffe3c632Sopenharmony_ci js/experimental/runtime/internal/checks_test.js \ 1316ffe3c632Sopenharmony_ci js/experimental/runtime/internal/checks.js \ 1317ffe3c632Sopenharmony_ci js/experimental/runtime/int64_test.js \ 1318ffe3c632Sopenharmony_ci js/experimental/runtime/int64.js \ 1319ffe3c632Sopenharmony_ci js/experimental/runtime/bytestring_test.js \ 1320ffe3c632Sopenharmony_ci js/experimental/runtime/bytestring_internal.js \ 1321ffe3c632Sopenharmony_ci js/experimental/runtime/bytestring.js \ 1322ffe3c632Sopenharmony_ci js/experimental/benchmarks/code_size/kernel/popular_types.js \ 1323ffe3c632Sopenharmony_ci js/experimental/benchmarks/code_size/kernel/all_types.js \ 1324ffe3c632Sopenharmony_ci js/experimental/benchmarks/code_size/code_size_base.js \ 1325ffe3c632Sopenharmony_ci js/experimental/benchmarks/code_size/apps_jspb/popular_types_proto3.js \ 1326ffe3c632Sopenharmony_ci js/experimental/benchmarks/code_size/apps_jspb/popular_types_proto2.js \ 1327ffe3c632Sopenharmony_ci js/experimental/benchmarks/code_size/apps_jspb/all_types_proto3.js \ 1328ffe3c632Sopenharmony_ci js/experimental/benchmarks/code_size/apps_jspb/all_types_proto2.js 1329ffe3c632Sopenharmony_ci 1330ffe3c632Sopenharmony_ciall_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(php_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) $(js_EXTRA_DIST) 1331ffe3c632Sopenharmony_ci 1332ffe3c632Sopenharmony_ciEXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \ 1333ffe3c632Sopenharmony_ci autogen.sh \ 1334ffe3c632Sopenharmony_ci generate_descriptor_proto.sh \ 1335ffe3c632Sopenharmony_ci README.md \ 1336ffe3c632Sopenharmony_ci LICENSE \ 1337ffe3c632Sopenharmony_ci CONTRIBUTORS.txt \ 1338ffe3c632Sopenharmony_ci CHANGES.txt \ 1339ffe3c632Sopenharmony_ci update_file_lists.sh \ 1340ffe3c632Sopenharmony_ci BUILD \ 1341ffe3c632Sopenharmony_ci WORKSPACE \ 1342ffe3c632Sopenharmony_ci cmake/CMakeLists.txt \ 1343ffe3c632Sopenharmony_ci cmake/README.md \ 1344ffe3c632Sopenharmony_ci cmake/conformance.cmake \ 1345ffe3c632Sopenharmony_ci cmake/examples.cmake \ 1346ffe3c632Sopenharmony_ci cmake/extract_includes.bat.in \ 1347ffe3c632Sopenharmony_ci cmake/install.cmake \ 1348ffe3c632Sopenharmony_ci cmake/libprotobuf.cmake \ 1349ffe3c632Sopenharmony_ci cmake/libprotobuf-lite.cmake \ 1350ffe3c632Sopenharmony_ci cmake/libprotoc.cmake \ 1351ffe3c632Sopenharmony_ci cmake/protobuf-config-version.cmake.in \ 1352ffe3c632Sopenharmony_ci cmake/protobuf-config.cmake.in \ 1353ffe3c632Sopenharmony_ci cmake/protobuf-lite.pc.cmake \ 1354ffe3c632Sopenharmony_ci cmake/protobuf-module.cmake.in \ 1355ffe3c632Sopenharmony_ci cmake/protobuf-options.cmake \ 1356ffe3c632Sopenharmony_ci cmake/protobuf.pc.cmake \ 1357ffe3c632Sopenharmony_ci cmake/protoc.cmake \ 1358ffe3c632Sopenharmony_ci cmake/tests.cmake \ 1359ffe3c632Sopenharmony_ci cmake/version.rc.in \ 1360ffe3c632Sopenharmony_ci compiler_config_setting.bzl \ 1361ffe3c632Sopenharmony_ci build_files_updated_unittest.sh \ 1362ffe3c632Sopenharmony_ci cc_proto_blacklist_test.bzl \ 1363ffe3c632Sopenharmony_ci editors/README.txt \ 1364ffe3c632Sopenharmony_ci editors/proto.vim \ 1365ffe3c632Sopenharmony_ci editors/protobuf-mode.el \ 1366ffe3c632Sopenharmony_ci examples/AddPerson.java \ 1367ffe3c632Sopenharmony_ci examples/BUILD \ 1368ffe3c632Sopenharmony_ci examples/CMakeLists.txt \ 1369ffe3c632Sopenharmony_ci examples/ListPeople.java \ 1370ffe3c632Sopenharmony_ci examples/Makefile \ 1371ffe3c632Sopenharmony_ci examples/README.md \ 1372ffe3c632Sopenharmony_ci examples/WORKSPACE \ 1373ffe3c632Sopenharmony_ci examples/add_person.cc \ 1374ffe3c632Sopenharmony_ci examples/add_person.dart \ 1375ffe3c632Sopenharmony_ci examples/add_person.go \ 1376ffe3c632Sopenharmony_ci examples/add_person.py \ 1377ffe3c632Sopenharmony_ci examples/add_person_test.go \ 1378ffe3c632Sopenharmony_ci examples/addressbook.proto \ 1379ffe3c632Sopenharmony_ci examples/list_people.cc \ 1380ffe3c632Sopenharmony_ci examples/list_people.dart \ 1381ffe3c632Sopenharmony_ci examples/list_people.go \ 1382ffe3c632Sopenharmony_ci examples/list_people.py \ 1383ffe3c632Sopenharmony_ci examples/list_people_test.go \ 1384ffe3c632Sopenharmony_ci examples/pubspec.yaml \ 1385ffe3c632Sopenharmony_ci protobuf.bzl \ 1386ffe3c632Sopenharmony_ci protobuf_deps.bzl \ 1387ffe3c632Sopenharmony_ci python/release/wheel/build_wheel_manylinux.sh \ 1388ffe3c632Sopenharmony_ci python/release/wheel/Dockerfile \ 1389ffe3c632Sopenharmony_ci python/release/wheel/protobuf_optimized_pip.sh \ 1390ffe3c632Sopenharmony_ci python/release/wheel/README.md \ 1391ffe3c632Sopenharmony_ci third_party/six.BUILD \ 1392ffe3c632Sopenharmony_ci third_party/zlib.BUILD \ 1393ffe3c632Sopenharmony_ci util/python/BUILD 1394ffe3c632Sopenharmony_ci 1395ffe3c632Sopenharmony_ci 1396ffe3c632Sopenharmony_ci# Deletes all the files generated by autogen.sh. 1397ffe3c632Sopenharmony_ciMAINTAINERCLEANFILES = \ 1398ffe3c632Sopenharmony_ci aclocal.m4 \ 1399ffe3c632Sopenharmony_ci ar-lib \ 1400ffe3c632Sopenharmony_ci config.guess \ 1401ffe3c632Sopenharmony_ci config.sub \ 1402ffe3c632Sopenharmony_ci configure \ 1403ffe3c632Sopenharmony_ci depcomp \ 1404ffe3c632Sopenharmony_ci install-sh \ 1405ffe3c632Sopenharmony_ci ltmain.sh \ 1406ffe3c632Sopenharmony_ci Makefile.in \ 1407ffe3c632Sopenharmony_ci missing \ 1408ffe3c632Sopenharmony_ci mkinstalldirs \ 1409ffe3c632Sopenharmony_ci config.h.in \ 1410ffe3c632Sopenharmony_ci stamp.h.in \ 1411ffe3c632Sopenharmony_ci m4/ltsugar.m4 \ 1412ffe3c632Sopenharmony_ci m4/libtool.m4 \ 1413ffe3c632Sopenharmony_ci m4/ltversion.m4 \ 1414ffe3c632Sopenharmony_ci m4/lt~obsolete.m4 \ 1415ffe3c632Sopenharmony_ci m4/ltoptions.m4 1416