Makefile.am 101 KB

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