Makefile.am 103 KB

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