Makefile.am 106 KB

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