Makefile.am 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086
  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. csharp/.gitignore \
  45. csharp/CHANGES.txt \
  46. csharp/Google.Protobuf.Tools.nuspec \
  47. csharp/README.md \
  48. csharp/build_packages.bat \
  49. csharp/build_tools.sh \
  50. csharp/buildall.sh \
  51. csharp/generate_protos.sh \
  52. csharp/global.json \
  53. csharp/keys/Google.Protobuf.public.snk \
  54. csharp/keys/Google.Protobuf.snk \
  55. csharp/keys/README.md \
  56. csharp/protos/README.md \
  57. csharp/protos/map_unittest_proto3.proto \
  58. csharp/protos/unittest_custom_options_proto3.proto \
  59. csharp/protos/unittest_import_public_proto3.proto \
  60. csharp/protos/unittest_import_proto3.proto \
  61. csharp/protos/unittest_issues.proto \
  62. csharp/protos/unittest_proto3.proto \
  63. csharp/src/AddressBook/AddPerson.cs \
  64. csharp/src/AddressBook/Addressbook.cs \
  65. csharp/src/AddressBook/AddressBook.csproj \
  66. csharp/src/AddressBook/ListPeople.cs \
  67. csharp/src/AddressBook/Program.cs \
  68. csharp/src/AddressBook/SampleUsage.cs \
  69. csharp/src/Google.Protobuf.Conformance/Conformance.cs \
  70. csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj \
  71. csharp/src/Google.Protobuf.Conformance/Program.cs \
  72. csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \
  73. csharp/src/Google.Protobuf.JsonDump/Program.cs \
  74. csharp/src/Google.Protobuf.Test/ByteStringTest.cs \
  75. csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \
  76. csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \
  77. csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \
  78. csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \
  79. csharp/src/Google.Protobuf.Test/Collections/ProtobufEqualityComparersTest.cs \
  80. csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \
  81. csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \
  82. csharp/src/Google.Protobuf.Test/Compatibility/StreamExtensionsTest.cs \
  83. csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs \
  84. csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \
  85. csharp/src/Google.Protobuf.Test/EqualityTester.cs \
  86. csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \
  87. csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \
  88. csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \
  89. csharp/src/Google.Protobuf.Test/IssuesTest.cs \
  90. csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \
  91. csharp/src/Google.Protobuf.Test/JsonParserTest.cs \
  92. csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs \
  93. csharp/src/Google.Protobuf.Test/Reflection/CustomOptionsTest.cs \
  94. csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \
  95. csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs \
  96. csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs \
  97. csharp/src/Google.Protobuf.Test/SampleEnum.cs \
  98. csharp/src/Google.Protobuf.Test/SampleMessages.cs \
  99. csharp/src/Google.Protobuf.Test/SampleNaNs.cs \
  100. csharp/src/Google.Protobuf.Test/TestCornerCases.cs \
  101. csharp/src/Google.Protobuf.Test/TestProtos/ForeignMessagePartial.cs \
  102. csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs \
  103. csharp/src/Google.Protobuf.Test/TestProtos/TestMessagesProto3.cs \
  104. csharp/src/Google.Protobuf.Test/TestProtos/UnittestCustomOptionsProto3.cs \
  105. csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs \
  106. csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs \
  107. csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs \
  108. csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs \
  109. csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs \
  110. csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \
  111. csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \
  112. csharp/src/Google.Protobuf.Test/WellKnownTypes/FieldMaskTest.cs \
  113. csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \
  114. csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \
  115. csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs \
  116. csharp/src/Google.Protobuf.sln \
  117. csharp/src/Google.Protobuf/ByteArray.cs \
  118. csharp/src/Google.Protobuf/ByteString.cs \
  119. csharp/src/Google.Protobuf/CodedInputStream.cs \
  120. csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \
  121. csharp/src/Google.Protobuf/CodedOutputStream.cs \
  122. csharp/src/Google.Protobuf/Collections/Lists.cs \
  123. csharp/src/Google.Protobuf/Collections/MapField.cs \
  124. csharp/src/Google.Protobuf/Collections/ProtobufEqualityComparers.cs \
  125. csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \
  126. csharp/src/Google.Protobuf/Collections/RepeatedField.cs \
  127. csharp/src/Google.Protobuf/Compatibility/MethodInfoExtensions.cs \
  128. csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \
  129. csharp/src/Google.Protobuf/Compatibility/StreamExtensions.cs \
  130. csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \
  131. csharp/src/Google.Protobuf/FieldCodec.cs \
  132. csharp/src/Google.Protobuf/FrameworkPortability.cs \
  133. csharp/src/Google.Protobuf/Google.Protobuf.csproj \
  134. csharp/src/Google.Protobuf/ICustomDiagnosticMessage.cs \
  135. csharp/src/Google.Protobuf/IDeepCloneable.cs \
  136. csharp/src/Google.Protobuf/IMessage.cs \
  137. csharp/src/Google.Protobuf/InvalidJsonException.cs \
  138. csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \
  139. csharp/src/Google.Protobuf/JsonFormatter.cs \
  140. csharp/src/Google.Protobuf/JsonParser.cs \
  141. csharp/src/Google.Protobuf/JsonToken.cs \
  142. csharp/src/Google.Protobuf/JsonTokenizer.cs \
  143. csharp/src/Google.Protobuf/LimitedInputStream.cs \
  144. csharp/src/Google.Protobuf/MessageExtensions.cs \
  145. csharp/src/Google.Protobuf/MessageParser.cs \
  146. csharp/src/Google.Protobuf/ProtoPreconditions.cs \
  147. csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \
  148. csharp/src/Google.Protobuf/Reflection/CustomOptions.cs \
  149. csharp/src/Google.Protobuf/Reflection/Descriptor.cs \
  150. csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \
  151. csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \
  152. csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \
  153. csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \
  154. csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \
  155. csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \
  156. csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \
  157. csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \
  158. csharp/src/Google.Protobuf/Reflection/FieldType.cs \
  159. csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \
  160. csharp/src/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs \
  161. csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \
  162. csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \
  163. csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \
  164. csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \
  165. csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \
  166. csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \
  167. csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \
  168. csharp/src/Google.Protobuf/Reflection/OriginalNameAttribute.cs \
  169. csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \
  170. csharp/src/Google.Protobuf/Reflection/PartialClasses.cs \
  171. csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \
  172. csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \
  173. csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \
  174. csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \
  175. csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs \
  176. csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \
  177. csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \
  178. csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \
  179. csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \
  180. csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \
  181. csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \
  182. csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \
  183. csharp/src/Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs \
  184. csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \
  185. csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \
  186. csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \
  187. csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \
  188. csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \
  189. csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \
  190. csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs \
  191. csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \
  192. csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs \
  193. csharp/src/Google.Protobuf/WireFormat.cs \
  194. csharp/src/Google.Protobuf/UnknownField.cs \
  195. csharp/src/Google.Protobuf/UnknownFieldSet.cs
  196. java_EXTRA_DIST= \
  197. java/README.md \
  198. java/core/generate-sources-build.xml \
  199. java/core/generate-test-sources-build.xml \
  200. java/core/pom.xml \
  201. java/core/src/main/java/com/google/protobuf/AbstractMessage.java \
  202. java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java \
  203. java/core/src/main/java/com/google/protobuf/AbstractParser.java \
  204. java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java \
  205. java/core/src/main/java/com/google/protobuf/Android.java \
  206. java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
  207. java/core/src/main/java/com/google/protobuf/BlockingService.java \
  208. java/core/src/main/java/com/google/protobuf/BooleanArrayList.java \
  209. java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java \
  210. java/core/src/main/java/com/google/protobuf/ByteOutput.java \
  211. java/core/src/main/java/com/google/protobuf/ByteString.java \
  212. java/core/src/main/java/com/google/protobuf/CodedInputStream.java \
  213. java/core/src/main/java/com/google/protobuf/CodedOutputStream.java \
  214. java/core/src/main/java/com/google/protobuf/DiscardUnknownFieldsParser.java \
  215. java/core/src/main/java/com/google/protobuf/Descriptors.java \
  216. java/core/src/main/java/com/google/protobuf/DoubleArrayList.java \
  217. java/core/src/main/java/com/google/protobuf/DynamicMessage.java \
  218. java/core/src/main/java/com/google/protobuf/ExperimentalApi.java \
  219. java/core/src/main/java/com/google/protobuf/Extension.java \
  220. java/core/src/main/java/com/google/protobuf/ExtensionLite.java \
  221. java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java \
  222. java/core/src/main/java/com/google/protobuf/ExtensionRegistryFactory.java \
  223. java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
  224. java/core/src/main/java/com/google/protobuf/FieldSet.java \
  225. java/core/src/main/java/com/google/protobuf/FloatArrayList.java \
  226. java/core/src/main/java/com/google/protobuf/GeneratedMessage.java \
  227. java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
  228. java/core/src/main/java/com/google/protobuf/GeneratedMessageV3.java \
  229. java/core/src/main/java/com/google/protobuf/IntArrayList.java \
  230. java/core/src/main/java/com/google/protobuf/Internal.java \
  231. java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
  232. java/core/src/main/java/com/google/protobuf/IterableByteBufferInputStream.java \
  233. java/core/src/main/java/com/google/protobuf/LazyField.java \
  234. java/core/src/main/java/com/google/protobuf/LazyFieldLite.java \
  235. java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java \
  236. java/core/src/main/java/com/google/protobuf/LazyStringList.java \
  237. java/core/src/main/java/com/google/protobuf/LongArrayList.java \
  238. java/core/src/main/java/com/google/protobuf/MapEntry.java \
  239. java/core/src/main/java/com/google/protobuf/MapEntryLite.java \
  240. java/core/src/main/java/com/google/protobuf/MapField.java \
  241. java/core/src/main/java/com/google/protobuf/MapFieldLite.java \
  242. java/core/src/main/java/com/google/protobuf/Message.java \
  243. java/core/src/main/java/com/google/protobuf/MessageLite.java \
  244. java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
  245. java/core/src/main/java/com/google/protobuf/MessageLiteToString.java \
  246. java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java \
  247. java/core/src/main/java/com/google/protobuf/MessageReflection.java \
  248. java/core/src/main/java/com/google/protobuf/MutabilityOracle.java \
  249. java/core/src/main/java/com/google/protobuf/NioByteString.java \
  250. java/core/src/main/java/com/google/protobuf/Parser.java \
  251. java/core/src/main/java/com/google/protobuf/PrimitiveNonBoxingCollection.java \
  252. java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java \
  253. java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
  254. java/core/src/main/java/com/google/protobuf/ProtocolStringList.java \
  255. java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
  256. java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java \
  257. java/core/src/main/java/com/google/protobuf/RopeByteString.java \
  258. java/core/src/main/java/com/google/protobuf/RpcCallback.java \
  259. java/core/src/main/java/com/google/protobuf/RpcChannel.java \
  260. java/core/src/main/java/com/google/protobuf/RpcController.java \
  261. java/core/src/main/java/com/google/protobuf/RpcUtil.java \
  262. java/core/src/main/java/com/google/protobuf/Service.java \
  263. java/core/src/main/java/com/google/protobuf/ServiceException.java \
  264. java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
  265. java/core/src/main/java/com/google/protobuf/SingleFieldBuilderV3.java \
  266. java/core/src/main/java/com/google/protobuf/SmallSortedMap.java \
  267. java/core/src/main/java/com/google/protobuf/TextFormat.java \
  268. java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java \
  269. java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java \
  270. java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java \
  271. java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java \
  272. java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java \
  273. java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
  274. java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
  275. java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java \
  276. java/core/src/main/java/com/google/protobuf/UnsafeUtil.java \
  277. java/core/src/main/java/com/google/protobuf/Utf8.java \
  278. java/core/src/main/java/com/google/protobuf/WireFormat.java \
  279. java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java \
  280. java/core/src/test/java/com/google/protobuf/AnyTest.java \
  281. java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java \
  282. java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
  283. java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java \
  284. java/core/src/test/java/com/google/protobuf/ByteStringTest.java \
  285. java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java \
  286. java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
  287. java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
  288. java/core/src/test/java/com/google/protobuf/DecodeUtf8Test.java \
  289. java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
  290. java/core/src/test/java/com/google/protobuf/DescriptorsTest.java \
  291. java/core/src/test/java/com/google/protobuf/DiscardUnknownFieldsTest.java \
  292. java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java \
  293. java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java \
  294. java/core/src/test/java/com/google/protobuf/EnumTest.java \
  295. java/core/src/test/java/com/google/protobuf/ExtensionRegistryFactoryTest.java \
  296. java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java \
  297. java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java \
  298. java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
  299. java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
  300. java/core/src/test/java/com/google/protobuf/IntArrayListTest.java \
  301. java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
  302. java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
  303. java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
  304. java/core/src/test/java/com/google/protobuf/LazyFieldTest.java \
  305. java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
  306. java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
  307. java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
  308. java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
  309. java/core/src/test/java/com/google/protobuf/LiteTest.java \
  310. java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
  311. java/core/src/test/java/com/google/protobuf/LongArrayListTest.java \
  312. java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
  313. java/core/src/test/java/com/google/protobuf/MapForProto2Test.java \
  314. java/core/src/test/java/com/google/protobuf/MapTest.java \
  315. java/core/src/test/java/com/google/protobuf/MessageTest.java \
  316. java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java \
  317. java/core/src/test/java/com/google/protobuf/NioByteStringTest.java \
  318. java/core/src/test/java/com/google/protobuf/ParseExceptionsTest.java \
  319. java/core/src/test/java/com/google/protobuf/ParserTest.java \
  320. java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \
  321. java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderV3Test.java \
  322. java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
  323. java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java \
  324. java/core/src/test/java/com/google/protobuf/ServiceTest.java \
  325. java/core/src/test/java/com/google/protobuf/SingleFieldBuilderV3Test.java \
  326. java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
  327. java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
  328. java/core/src/test/java/com/google/protobuf/TestBadIdentifiersLite.java \
  329. java/core/src/test/java/com/google/protobuf/TestUtil.java \
  330. java/core/src/test/java/com/google/protobuf/TestUtilLite.java \
  331. java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java \
  332. java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java \
  333. java/core/src/test/java/com/google/protobuf/TextFormatTest.java \
  334. java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
  335. java/core/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
  336. java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
  337. java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
  338. java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java \
  339. java/core/src/test/java/com/google/protobuf/WireFormatTest.java \
  340. java/core/src/test/proto/com/google/protobuf/any_test.proto \
  341. java/core/src/test/proto/com/google/protobuf/deprecated_file.proto \
  342. java/core/src/test/proto/com/google/protobuf/field_presence_test.proto \
  343. java/core/src/test/proto/com/google/protobuf/lazy_fields_lite.proto \
  344. java/core/src/test/proto/com/google/protobuf/lite_equals_and_hash.proto \
  345. java/core/src/test/proto/com/google/protobuf/map_for_proto2_lite_test.proto \
  346. java/core/src/test/proto/com/google/protobuf/map_for_proto2_test.proto \
  347. java/core/src/test/proto/com/google/protobuf/map_initialization_order_test.proto \
  348. java/core/src/test/proto/com/google/protobuf/map_lite_test.proto \
  349. java/core/src/test/proto/com/google/protobuf/map_test.proto \
  350. java/core/src/test/proto/com/google/protobuf/multiple_files_test.proto \
  351. java/core/src/test/proto/com/google/protobuf/nested_builders_test.proto \
  352. java/core/src/test/proto/com/google/protobuf/nested_extension.proto \
  353. java/core/src/test/proto/com/google/protobuf/nested_extension_lite.proto \
  354. java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto \
  355. java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto \
  356. java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto \
  357. java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto \
  358. java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto \
  359. java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto \
  360. java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto \
  361. java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto \
  362. java/core/src/test/proto/com/google/protobuf/test_custom_options.proto \
  363. java/core/src/test/proto/com/google/protobuf/test_extra_interfaces.proto \
  364. java/lite.md \
  365. java/pom.xml \
  366. java/util/pom.xml \
  367. java/util/src/main/java/com/google/protobuf/util/Durations.java \
  368. java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java \
  369. java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java \
  370. java/util/src/main/java/com/google/protobuf/util/JsonFormat.java \
  371. java/util/src/main/java/com/google/protobuf/util/TimeUtil.java \
  372. java/util/src/main/java/com/google/protobuf/util/Timestamps.java \
  373. java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java \
  374. java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java \
  375. java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java \
  376. java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java \
  377. java/util/src/test/proto/com/google/protobuf/util/json_test.proto
  378. objectivec_EXTRA_DIST= \
  379. objectivec/DevTools/check_version_stamps.sh \
  380. objectivec/DevTools/compile_testing_protos.sh \
  381. objectivec/DevTools/full_mac_build.sh \
  382. objectivec/DevTools/pddm.py \
  383. objectivec/DevTools/pddm_tests.py \
  384. objectivec/generate_well_known_types.sh \
  385. objectivec/google/protobuf/Any.pbobjc.h \
  386. objectivec/google/protobuf/Any.pbobjc.m \
  387. objectivec/google/protobuf/Api.pbobjc.h \
  388. objectivec/google/protobuf/Api.pbobjc.m \
  389. objectivec/google/protobuf/Duration.pbobjc.h \
  390. objectivec/google/protobuf/Duration.pbobjc.m \
  391. objectivec/google/protobuf/Empty.pbobjc.h \
  392. objectivec/google/protobuf/Empty.pbobjc.m \
  393. objectivec/google/protobuf/FieldMask.pbobjc.h \
  394. objectivec/google/protobuf/FieldMask.pbobjc.m \
  395. objectivec/google/protobuf/SourceContext.pbobjc.h \
  396. objectivec/google/protobuf/SourceContext.pbobjc.m \
  397. objectivec/google/protobuf/Struct.pbobjc.h \
  398. objectivec/google/protobuf/Struct.pbobjc.m \
  399. objectivec/google/protobuf/Timestamp.pbobjc.h \
  400. objectivec/google/protobuf/Timestamp.pbobjc.m \
  401. objectivec/google/protobuf/Type.pbobjc.h \
  402. objectivec/google/protobuf/Type.pbobjc.m \
  403. objectivec/google/protobuf/Wrappers.pbobjc.h \
  404. objectivec/google/protobuf/Wrappers.pbobjc.m \
  405. objectivec/GPBArray.h \
  406. objectivec/GPBArray.m \
  407. objectivec/GPBArray_PackagePrivate.h \
  408. objectivec/GPBBootstrap.h \
  409. objectivec/GPBCodedInputStream.h \
  410. objectivec/GPBCodedInputStream.m \
  411. objectivec/GPBCodedInputStream_PackagePrivate.h \
  412. objectivec/GPBCodedOutputStream.h \
  413. objectivec/GPBCodedOutputStream.m \
  414. objectivec/GPBCodedOutputStream_PackagePrivate.h \
  415. objectivec/GPBDescriptor.h \
  416. objectivec/GPBDescriptor.m \
  417. objectivec/GPBDescriptor_PackagePrivate.h \
  418. objectivec/GPBDictionary.h \
  419. objectivec/GPBDictionary.m \
  420. objectivec/GPBDictionary_PackagePrivate.h \
  421. objectivec/GPBExtensionInternals.h \
  422. objectivec/GPBExtensionInternals.m \
  423. objectivec/GPBExtensionRegistry.h \
  424. objectivec/GPBExtensionRegistry.m \
  425. objectivec/GPBMessage.h \
  426. objectivec/GPBMessage.m \
  427. objectivec/GPBMessage_PackagePrivate.h \
  428. objectivec/GPBProtocolBuffers.h \
  429. objectivec/GPBProtocolBuffers.m \
  430. objectivec/GPBProtocolBuffers_RuntimeSupport.h \
  431. objectivec/GPBRootObject.h \
  432. objectivec/GPBRootObject.m \
  433. objectivec/GPBRootObject_PackagePrivate.h \
  434. objectivec/GPBRuntimeTypes.h \
  435. objectivec/GPBUnknownField.h \
  436. objectivec/GPBUnknownField.m \
  437. objectivec/GPBUnknownField_PackagePrivate.h \
  438. objectivec/GPBUnknownFieldSet.h \
  439. objectivec/GPBUnknownFieldSet.m \
  440. objectivec/GPBUnknownFieldSet_PackagePrivate.h \
  441. objectivec/GPBUtilities.h \
  442. objectivec/GPBUtilities.m \
  443. objectivec/GPBUtilities_PackagePrivate.h \
  444. objectivec/GPBWellKnownTypes.h \
  445. objectivec/GPBWellKnownTypes.m \
  446. objectivec/GPBWireFormat.h \
  447. objectivec/GPBWireFormat.m \
  448. objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \
  449. objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
  450. objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
  451. objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
  452. objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
  453. objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
  454. objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \
  455. objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
  456. objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
  457. objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
  458. objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
  459. objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
  460. objectivec/README.md \
  461. objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.pbxproj \
  462. objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
  463. objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/OSXCocoaPodsTester.xcscheme \
  464. objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.h \
  465. objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.m \
  466. objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \
  467. objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Base.lproj/MainMenu.xib \
  468. objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Info.plist \
  469. objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/main.m \
  470. objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-framework \
  471. objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-static \
  472. objectivec/Tests/CocoaPods/README.md \
  473. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-framework \
  474. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-static \
  475. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.pbxproj \
  476. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
  477. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/iOSCocoaPodsTester.xcscheme \
  478. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.h \
  479. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.m \
  480. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \
  481. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/LaunchScreen.storyboard \
  482. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/Main.storyboard \
  483. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Info.plist \
  484. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.h \
  485. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.m \
  486. objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/main.m \
  487. objectivec/Tests/CocoaPods/run_tests.sh \
  488. objectivec/Tests/golden_message \
  489. objectivec/Tests/golden_packed_fields_message \
  490. objectivec/Tests/GPBARCUnittestProtos.m \
  491. objectivec/Tests/GPBArrayTests.m \
  492. objectivec/Tests/GPBCodedInputStreamTests.m \
  493. objectivec/Tests/GPBCodedOuputStreamTests.m \
  494. objectivec/Tests/GPBCompileTest01.m \
  495. objectivec/Tests/GPBCompileTest02.m \
  496. objectivec/Tests/GPBCompileTest03.m \
  497. objectivec/Tests/GPBCompileTest04.m \
  498. objectivec/Tests/GPBCompileTest05.m \
  499. objectivec/Tests/GPBCompileTest06.m \
  500. objectivec/Tests/GPBCompileTest07.m \
  501. objectivec/Tests/GPBCompileTest08.m \
  502. objectivec/Tests/GPBCompileTest09.m \
  503. objectivec/Tests/GPBCompileTest10.m \
  504. objectivec/Tests/GPBCompileTest11.m \
  505. objectivec/Tests/GPBCompileTest12.m \
  506. objectivec/Tests/GPBCompileTest13.m \
  507. objectivec/Tests/GPBCompileTest14.m \
  508. objectivec/Tests/GPBCompileTest15.m \
  509. objectivec/Tests/GPBCompileTest16.m \
  510. objectivec/Tests/GPBCompileTest17.m \
  511. objectivec/Tests/GPBCompileTest18.m \
  512. objectivec/Tests/GPBCompileTest19.m \
  513. objectivec/Tests/GPBCompileTest20.m \
  514. objectivec/Tests/GPBCompileTest21.m \
  515. objectivec/Tests/GPBCompileTest22.m \
  516. objectivec/Tests/GPBCompileTest23.m \
  517. objectivec/Tests/GPBCompileTest24.m \
  518. objectivec/Tests/GPBCompileTest25.m \
  519. objectivec/Tests/GPBConcurrencyTests.m \
  520. objectivec/Tests/GPBDescriptorTests.m \
  521. objectivec/Tests/GPBDictionaryTests+Bool.m \
  522. objectivec/Tests/GPBDictionaryTests+Int32.m \
  523. objectivec/Tests/GPBDictionaryTests+Int64.m \
  524. objectivec/Tests/GPBDictionaryTests+String.m \
  525. objectivec/Tests/GPBDictionaryTests+UInt32.m \
  526. objectivec/Tests/GPBDictionaryTests+UInt64.m \
  527. objectivec/Tests/GPBDictionaryTests.m \
  528. objectivec/Tests/GPBDictionaryTests.pddm \
  529. objectivec/Tests/GPBExtensionRegistryTest.m \
  530. objectivec/Tests/GPBMessageTests+Merge.m \
  531. objectivec/Tests/GPBMessageTests+Runtime.m \
  532. objectivec/Tests/GPBMessageTests+Serialization.m \
  533. objectivec/Tests/GPBMessageTests.m \
  534. objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \
  535. objectivec/Tests/GPBPerfTests.m \
  536. objectivec/Tests/GPBSwiftTests.swift \
  537. objectivec/Tests/GPBTestUtilities.h \
  538. objectivec/Tests/GPBTestUtilities.m \
  539. objectivec/Tests/GPBUnittestProtos.m \
  540. objectivec/Tests/GPBUnittestProtos2.m \
  541. objectivec/Tests/GPBUnknownFieldSetTest.m \
  542. objectivec/Tests/GPBUtilitiesTests.m \
  543. objectivec/Tests/GPBWellKnownTypesTest.m \
  544. objectivec/Tests/GPBWireFormatTests.m \
  545. objectivec/Tests/text_format_map_unittest_data.txt \
  546. objectivec/Tests/text_format_unittest_data.txt \
  547. objectivec/Tests/unittest_cycle.proto \
  548. objectivec/Tests/unittest_deprecated.proto \
  549. objectivec/Tests/unittest_deprecated_file.proto \
  550. objectivec/Tests/unittest_extension_chain_a.proto \
  551. objectivec/Tests/unittest_extension_chain_b.proto \
  552. objectivec/Tests/unittest_extension_chain_c.proto \
  553. objectivec/Tests/unittest_extension_chain_d.proto \
  554. objectivec/Tests/unittest_extension_chain_e.proto \
  555. objectivec/Tests/unittest_extension_chain_f.proto \
  556. objectivec/Tests/unittest_extension_chain_g.proto \
  557. objectivec/Tests/unittest_objc.proto \
  558. objectivec/Tests/unittest_objc_startup.proto \
  559. objectivec/Tests/unittest_runtime_proto2.proto \
  560. objectivec/Tests/unittest_runtime_proto3.proto \
  561. objectivec/Tests/UnitTests-Bridging-Header.h \
  562. objectivec/Tests/UnitTests-Info.plist \
  563. Protobuf.podspec
  564. php_EXTRA_DIST= \
  565. composer.json \
  566. php/README.md \
  567. php/composer.json \
  568. php/ext/google/protobuf/array.c \
  569. php/ext/google/protobuf/config.m4 \
  570. php/ext/google/protobuf/def.c \
  571. php/ext/google/protobuf/encode_decode.c \
  572. php/ext/google/protobuf/map.c \
  573. php/ext/google/protobuf/message.c \
  574. php/ext/google/protobuf/package.xml \
  575. php/ext/google/protobuf/protobuf.c \
  576. php/ext/google/protobuf/protobuf.h \
  577. php/ext/google/protobuf/storage.c \
  578. php/ext/google/protobuf/type_check.c \
  579. php/ext/google/protobuf/upb.c \
  580. php/ext/google/protobuf/upb.h \
  581. php/ext/google/protobuf/utf8.c \
  582. php/ext/google/protobuf/utf8.h \
  583. php/generate_descriptor_protos.sh \
  584. php/phpunit.xml \
  585. php/src/GPBMetadata/Google/Protobuf/Any.php \
  586. php/src/GPBMetadata/Google/Protobuf/Api.php \
  587. php/src/GPBMetadata/Google/Protobuf/Duration.php \
  588. php/src/GPBMetadata/Google/Protobuf/FieldMask.php \
  589. php/src/GPBMetadata/Google/Protobuf/GPBEmpty.php \
  590. php/src/GPBMetadata/Google/Protobuf/Internal/Descriptor.php \
  591. php/src/GPBMetadata/Google/Protobuf/SourceContext.php \
  592. php/src/GPBMetadata/Google/Protobuf/Struct.php \
  593. php/src/GPBMetadata/Google/Protobuf/Timestamp.php \
  594. php/src/GPBMetadata/Google/Protobuf/Type.php \
  595. php/src/GPBMetadata/Google/Protobuf/Wrappers.php \
  596. php/src/Google/Protobuf/Any.php \
  597. php/src/Google/Protobuf/Api.php \
  598. php/src/Google/Protobuf/BoolValue.php \
  599. php/src/Google/Protobuf/BytesValue.php \
  600. php/src/Google/Protobuf/Descriptor.php \
  601. php/src/Google/Protobuf/DescriptorPool.php \
  602. php/src/Google/Protobuf/DoubleValue.php \
  603. php/src/Google/Protobuf/Duration.php \
  604. php/src/Google/Protobuf/Enum.php \
  605. php/src/Google/Protobuf/EnumDescriptor.php \
  606. php/src/Google/Protobuf/EnumValue.php \
  607. php/src/Google/Protobuf/EnumValueDescriptor.php \
  608. php/src/Google/Protobuf/Field.php \
  609. php/src/Google/Protobuf/FieldDescriptor.php \
  610. php/src/Google/Protobuf/FieldMask.php \
  611. php/src/Google/Protobuf/Field/Cardinality.php \
  612. php/src/Google/Protobuf/Field_Cardinality.php \
  613. php/src/Google/Protobuf/Field/Kind.php \
  614. php/src/Google/Protobuf/Field_Kind.php \
  615. php/src/Google/Protobuf/FloatValue.php \
  616. php/src/Google/Protobuf/GPBEmpty.php \
  617. php/src/Google/Protobuf/Int32Value.php \
  618. php/src/Google/Protobuf/Int64Value.php \
  619. php/src/Google/Protobuf/Internal/CodedInputStream.php \
  620. php/src/Google/Protobuf/Internal/CodedOutputStream.php \
  621. php/src/Google/Protobuf/Internal/Descriptor.php \
  622. php/src/Google/Protobuf/Internal/DescriptorPool.php \
  623. php/src/Google/Protobuf/Internal/DescriptorProto.php \
  624. php/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php \
  625. php/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php \
  626. php/src/Google/Protobuf/Internal/EnumBuilderContext.php \
  627. php/src/Google/Protobuf/Internal/EnumDescriptor.php \
  628. php/src/Google/Protobuf/Internal/EnumDescriptorProto.php \
  629. php/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php \
  630. php/src/Google/Protobuf/Internal/EnumOptions.php \
  631. php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php \
  632. php/src/Google/Protobuf/Internal/EnumValueOptions.php \
  633. php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php \
  634. php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \
  635. php/src/Google/Protobuf/Internal/FieldDescriptor.php \
  636. php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \
  637. php/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php \
  638. php/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php \
  639. php/src/Google/Protobuf/Internal/FieldOptions.php \
  640. php/src/Google/Protobuf/Internal/FieldOptions/CType.php \
  641. php/src/Google/Protobuf/Internal/FieldOptions/JSType.php \
  642. php/src/Google/Protobuf/Internal/FileDescriptor.php \
  643. php/src/Google/Protobuf/Internal/FileDescriptorProto.php \
  644. php/src/Google/Protobuf/Internal/FileDescriptorSet.php \
  645. php/src/Google/Protobuf/Internal/FileOptions.php \
  646. php/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php \
  647. php/src/Google/Protobuf/Internal/GPBDecodeException.php \
  648. php/src/Google/Protobuf/Internal/GPBJsonWire.php \
  649. php/src/Google/Protobuf/Internal/GPBLabel.php \
  650. php/src/Google/Protobuf/Internal/GPBType.php \
  651. php/src/Google/Protobuf/Internal/GPBUtil.php \
  652. php/src/Google/Protobuf/Internal/GPBWire.php \
  653. php/src/Google/Protobuf/Internal/GPBWireType.php \
  654. php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php \
  655. php/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php \
  656. php/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php \
  657. php/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php \
  658. php/src/Google/Protobuf/Internal/MapEntry.php \
  659. php/src/Google/Protobuf/Internal/MapField.php \
  660. php/src/Google/Protobuf/Internal/MapFieldIter.php \
  661. php/src/Google/Protobuf/Internal/Message.php \
  662. php/src/Google/Protobuf/Internal/MessageBuilderContext.php \
  663. php/src/Google/Protobuf/Internal/MessageOptions.php \
  664. php/src/Google/Protobuf/Internal/MethodDescriptorProto.php \
  665. php/src/Google/Protobuf/Internal/MethodOptions.php \
  666. php/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php \
  667. php/src/Google/Protobuf/Internal/OneofDescriptor.php \
  668. php/src/Google/Protobuf/Internal/OneofDescriptorProto.php \
  669. php/src/Google/Protobuf/Internal/OneofField.php \
  670. php/src/Google/Protobuf/Internal/OneofOptions.php \
  671. php/src/Google/Protobuf/Internal/RawInputStream.php \
  672. php/src/Google/Protobuf/Internal/RepeatedField.php \
  673. php/src/Google/Protobuf/Internal/RepeatedFieldIter.php \
  674. php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php \
  675. php/src/Google/Protobuf/Internal/ServiceOptions.php \
  676. php/src/Google/Protobuf/Internal/SourceCodeInfo.php \
  677. php/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php \
  678. php/src/Google/Protobuf/Internal/UninterpretedOption.php \
  679. php/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php \
  680. php/src/Google/Protobuf/ListValue.php \
  681. php/src/Google/Protobuf/Method.php \
  682. php/src/Google/Protobuf/Mixin.php \
  683. php/src/Google/Protobuf/NullValue.php \
  684. php/src/Google/Protobuf/OneofDescriptor.php \
  685. php/src/Google/Protobuf/Option.php \
  686. php/src/Google/Protobuf/SourceContext.php \
  687. php/src/Google/Protobuf/StringValue.php \
  688. php/src/Google/Protobuf/Struct.php \
  689. php/src/Google/Protobuf/Syntax.php \
  690. php/src/Google/Protobuf/Timestamp.php \
  691. php/src/Google/Protobuf/Type.php \
  692. php/src/Google/Protobuf/UInt32Value.php \
  693. php/src/Google/Protobuf/UInt64Value.php \
  694. php/src/Google/Protobuf/Value.php \
  695. php/src/phpdoc.dist.xml \
  696. php/tests/array_test.php \
  697. php/tests/autoload.php \
  698. php/tests/bootstrap_phpunit.php \
  699. php/tests/compatibility_test.sh \
  700. php/tests/descriptors_test.php \
  701. php/tests/encode_decode_test.php \
  702. php/tests/gdb_test.sh \
  703. php/tests/generated_class_test.php \
  704. php/tests/generated_phpdoc_test.php \
  705. php/tests/generated_service_test.php \
  706. php/tests/map_field_test.php \
  707. php/tests/memory_leak_test.php \
  708. php/tests/php_implementation_test.php \
  709. php/tests/proto/empty/echo.proto \
  710. php/tests/proto/test.proto \
  711. php/tests/proto/test_descriptors.proto \
  712. php/tests/proto/test_empty_php_namespace.proto \
  713. php/tests/proto/test_import_descriptor_proto.proto \
  714. php/tests/proto/test_include.proto \
  715. php/tests/proto/test_no_namespace.proto \
  716. php/tests/proto/test_php_namespace.proto \
  717. php/tests/proto/test_prefix.proto \
  718. php/tests/proto/test_reserved_enum_lower.proto \
  719. php/tests/proto/test_reserved_enum_upper.proto \
  720. php/tests/proto/test_reserved_enum_value_lower.proto \
  721. php/tests/proto/test_reserved_enum_value_upper.proto \
  722. php/tests/proto/test_reserved_message_lower.proto \
  723. php/tests/proto/test_reserved_message_upper.proto \
  724. php/tests/proto/test_service.proto \
  725. php/tests/proto/test_service_namespace.proto \
  726. php/tests/test.sh \
  727. php/tests/test_base.php \
  728. php/tests/test_util.php \
  729. php/tests/undefined_test.php \
  730. php/tests/well_known_test.php
  731. python_EXTRA_DIST= \
  732. python/MANIFEST.in \
  733. python/google/__init__.py \
  734. python/google/protobuf/__init__.py \
  735. python/google/protobuf/compiler/__init__.py \
  736. python/google/protobuf/descriptor.py \
  737. python/google/protobuf/descriptor_database.py \
  738. python/google/protobuf/descriptor_pool.py \
  739. python/google/protobuf/internal/__init__.py \
  740. python/google/protobuf/internal/_parameterized.py \
  741. python/google/protobuf/internal/any_test.proto \
  742. python/google/protobuf/internal/any_test.proto \
  743. python/google/protobuf/internal/api_implementation.cc \
  744. python/google/protobuf/internal/api_implementation.py \
  745. python/google/protobuf/internal/containers.py \
  746. python/google/protobuf/internal/decoder.py \
  747. python/google/protobuf/internal/descriptor_database_test.py \
  748. python/google/protobuf/internal/descriptor_pool_test.py \
  749. python/google/protobuf/internal/descriptor_pool_test1.proto \
  750. python/google/protobuf/internal/descriptor_pool_test2.proto \
  751. python/google/protobuf/internal/descriptor_test.py \
  752. python/google/protobuf/internal/encoder.py \
  753. python/google/protobuf/internal/enum_type_wrapper.py \
  754. python/google/protobuf/internal/factory_test1.proto \
  755. python/google/protobuf/internal/factory_test2.proto \
  756. python/google/protobuf/internal/file_options_test.proto \
  757. python/google/protobuf/internal/generator_test.py \
  758. python/google/protobuf/internal/import_test_package/__init__.py \
  759. python/google/protobuf/internal/import_test_package/inner.proto \
  760. python/google/protobuf/internal/import_test_package/outer.proto \
  761. python/google/protobuf/internal/json_format_test.py \
  762. python/google/protobuf/internal/message_factory_test.py \
  763. python/google/protobuf/internal/message_listener.py \
  764. python/google/protobuf/internal/message_set_extensions.proto \
  765. python/google/protobuf/internal/message_test.py \
  766. python/google/protobuf/internal/missing_enum_values.proto \
  767. python/google/protobuf/internal/more_extensions.proto \
  768. python/google/protobuf/internal/more_extensions_dynamic.proto \
  769. python/google/protobuf/internal/more_messages.proto \
  770. python/google/protobuf/internal/no_package.proto \
  771. python/google/protobuf/internal/packed_field_test.proto \
  772. python/google/protobuf/internal/proto_builder_test.py \
  773. python/google/protobuf/internal/python_message.py \
  774. python/google/protobuf/internal/python_protobuf.cc \
  775. python/google/protobuf/internal/reflection_test.py \
  776. python/google/protobuf/internal/service_reflection_test.py \
  777. python/google/protobuf/internal/symbol_database_test.py \
  778. python/google/protobuf/internal/test_bad_identifiers.proto \
  779. python/google/protobuf/internal/test_util.py \
  780. python/google/protobuf/internal/testing_refleaks.py \
  781. python/google/protobuf/internal/text_encoding_test.py \
  782. python/google/protobuf/internal/text_format_test.py \
  783. python/google/protobuf/internal/type_checkers.py \
  784. python/google/protobuf/internal/unknown_fields_test.py \
  785. python/google/protobuf/internal/well_known_types.py \
  786. python/google/protobuf/internal/well_known_types.py \
  787. python/google/protobuf/internal/well_known_types_test.py \
  788. python/google/protobuf/internal/well_known_types_test.py \
  789. python/google/protobuf/internal/wire_format.py \
  790. python/google/protobuf/internal/wire_format_test.py \
  791. python/google/protobuf/json_format.py \
  792. python/google/protobuf/message.py \
  793. python/google/protobuf/message_factory.py \
  794. python/google/protobuf/python_protobuf.h \
  795. python/google/protobuf/proto_builder.py \
  796. python/google/protobuf/pyext/README \
  797. python/google/protobuf/pyext/__init__.py \
  798. python/google/protobuf/pyext/cpp_message.py \
  799. python/google/protobuf/pyext/descriptor.cc \
  800. python/google/protobuf/pyext/descriptor.h \
  801. python/google/protobuf/pyext/descriptor_containers.cc \
  802. python/google/protobuf/pyext/descriptor_containers.h \
  803. python/google/protobuf/pyext/descriptor_database.cc \
  804. python/google/protobuf/pyext/descriptor_database.h \
  805. python/google/protobuf/pyext/descriptor_pool.cc \
  806. python/google/protobuf/pyext/descriptor_pool.h \
  807. python/google/protobuf/pyext/extension_dict.cc \
  808. python/google/protobuf/pyext/extension_dict.h \
  809. python/google/protobuf/pyext/map_container.cc \
  810. python/google/protobuf/pyext/map_container.h \
  811. python/google/protobuf/pyext/message.cc \
  812. python/google/protobuf/pyext/message.h \
  813. python/google/protobuf/pyext/message_factory.cc \
  814. python/google/protobuf/pyext/message_factory.h \
  815. python/google/protobuf/pyext/message_module.cc \
  816. python/google/protobuf/pyext/proto2_api_test.proto \
  817. python/google/protobuf/pyext/python.proto \
  818. python/google/protobuf/pyext/repeated_composite_container.cc \
  819. python/google/protobuf/pyext/repeated_composite_container.h \
  820. python/google/protobuf/pyext/repeated_scalar_container.cc \
  821. python/google/protobuf/pyext/repeated_scalar_container.h \
  822. python/google/protobuf/pyext/safe_numerics.h \
  823. python/google/protobuf/pyext/scoped_pyobject_ptr.h \
  824. python/google/protobuf/pyext/thread_unsafe_shared_ptr.h \
  825. python/google/protobuf/reflection.py \
  826. python/google/protobuf/service.py \
  827. python/google/protobuf/service_reflection.py \
  828. python/google/protobuf/symbol_database.py \
  829. python/google/protobuf/text_encoding.py \
  830. python/google/protobuf/text_format.py \
  831. python/google/protobuf/util/__init__.py \
  832. python/release.sh \
  833. python/mox.py \
  834. python/setup.cfg \
  835. python/setup.py \
  836. python/stubout.py \
  837. python/tox.ini \
  838. python/README.md
  839. ruby_EXTRA_DIST= \
  840. ruby/Gemfile \
  841. ruby/.gitignore \
  842. ruby/README.md \
  843. ruby/Rakefile \
  844. ruby/compatibility_tests/v3.0.0/tests/test_import.proto \
  845. ruby/compatibility_tests/v3.0.0/tests/stress.rb \
  846. ruby/compatibility_tests/v3.0.0/tests/repeated_field_test.rb \
  847. ruby/compatibility_tests/v3.0.0/tests/generated_code_test.rb \
  848. ruby/compatibility_tests/v3.0.0/tests/generated_code.proto \
  849. ruby/compatibility_tests/v3.0.0/tests/basic.rb \
  850. ruby/compatibility_tests/v3.0.0/test.sh \
  851. ruby/compatibility_tests/v3.0.0/Rakefile \
  852. ruby/compatibility_tests/v3.0.0/README.md \
  853. ruby/ext/google/protobuf_c/defs.c \
  854. ruby/ext/google/protobuf_c/encode_decode.c \
  855. ruby/ext/google/protobuf_c/extconf.rb \
  856. ruby/ext/google/protobuf_c/map.c \
  857. ruby/ext/google/protobuf_c/message.c \
  858. ruby/ext/google/protobuf_c/protobuf.c \
  859. ruby/ext/google/protobuf_c/protobuf.h \
  860. ruby/ext/google/protobuf_c/repeated_field.c \
  861. ruby/ext/google/protobuf_c/storage.c \
  862. ruby/ext/google/protobuf_c/upb.c \
  863. ruby/ext/google/protobuf_c/upb.h \
  864. ruby/ext/google/protobuf_c/wrap_memcpy.c \
  865. ruby/google-protobuf.gemspec \
  866. ruby/lib/google/protobuf/message_exts.rb \
  867. ruby/lib/google/protobuf/repeated_field.rb \
  868. ruby/lib/google/protobuf/well_known_types.rb \
  869. ruby/lib/google/protobuf.rb \
  870. ruby/pom.xml \
  871. ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \
  872. ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \
  873. ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \
  874. ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \
  875. ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \
  876. ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \
  877. ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \
  878. ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \
  879. ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \
  880. ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \
  881. ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \
  882. ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \
  883. ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \
  884. ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \
  885. ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \
  886. ruby/src/main/java/com/google/protobuf/jruby/Utils.java \
  887. ruby/src/main/java/google/ProtobufJavaService.java \
  888. ruby/src/main/sentinel.proto \
  889. ruby/tests/basic.rb \
  890. ruby/tests/encode_decode_test.rb \
  891. ruby/tests/gc_test.rb \
  892. ruby/tests/repeated_field_test.rb \
  893. ruby/tests/stress.rb \
  894. ruby/tests/generated_code.proto \
  895. ruby/tests/test_import.proto \
  896. ruby/tests/generated_code_test.rb \
  897. ruby/tests/well_known_types_test.rb \
  898. ruby/travis-test.sh
  899. js_EXTRA_DIST= \
  900. js/README.md \
  901. js/binary/arith.js \
  902. js/binary/arith_test.js \
  903. js/binary/constants.js \
  904. js/binary/decoder.js \
  905. js/binary/decoder_test.js \
  906. js/binary/encoder.js \
  907. js/binary/message_test.js \
  908. js/binary/proto_test.js \
  909. js/binary/reader.js \
  910. js/binary/reader_test.js \
  911. js/binary/utils.js \
  912. js/binary/utils_test.js \
  913. js/binary/writer.js \
  914. js/binary/writer_test.js \
  915. js/commonjs/export.js \
  916. js/commonjs/export_asserts.js \
  917. js/commonjs/export_testdeps.js \
  918. js/commonjs/import_test.js \
  919. js/commonjs/jasmine.json \
  920. js/commonjs/rewrite_tests_for_commonjs.js \
  921. js/commonjs/test6/test6.proto \
  922. js/commonjs/test7/test7.proto \
  923. js/compatibility_tests/v3.0.0/binary/arith_test.js \
  924. js/compatibility_tests/v3.0.0/binary/decoder_test.js \
  925. js/compatibility_tests/v3.0.0/binary/proto_test.js \
  926. js/compatibility_tests/v3.0.0/binary/reader_test.js \
  927. js/compatibility_tests/v3.0.0/binary/utils_test.js \
  928. js/compatibility_tests/v3.0.0/binary/writer_test.js \
  929. js/compatibility_tests/v3.0.0/commonjs/export_asserts.js \
  930. js/compatibility_tests/v3.0.0/commonjs/export_testdeps.js \
  931. js/compatibility_tests/v3.0.0/commonjs/import_test.js \
  932. js/compatibility_tests/v3.0.0/commonjs/jasmine.json \
  933. js/compatibility_tests/v3.0.0/commonjs/rewrite_tests_for_commonjs.js \
  934. js/compatibility_tests/v3.0.0/commonjs/test6/test6.proto \
  935. js/compatibility_tests/v3.0.0/commonjs/test7/test7.proto \
  936. js/compatibility_tests/v3.0.0/data.proto \
  937. js/compatibility_tests/v3.0.0/debug_test.js \
  938. js/compatibility_tests/v3.0.0/jasmine1.json \
  939. js/compatibility_tests/v3.0.0/jasmine2.json \
  940. js/compatibility_tests/v3.0.0/jasmine3.json \
  941. js/compatibility_tests/v3.0.0/message_test.js \
  942. js/compatibility_tests/v3.0.0/proto3_test.js \
  943. js/compatibility_tests/v3.0.0/proto3_test.proto \
  944. js/compatibility_tests/v3.0.0/test2.proto \
  945. js/compatibility_tests/v3.0.0/test3.proto \
  946. js/compatibility_tests/v3.0.0/test4.proto \
  947. js/compatibility_tests/v3.0.0/test5.proto \
  948. js/compatibility_tests/v3.0.0/testbinary.proto \
  949. js/compatibility_tests/v3.0.0/testempty.proto \
  950. js/compatibility_tests/v3.0.0/test.proto \
  951. js/compatibility_tests/v3.0.0/test.sh \
  952. js/compatibility_tests/v3.1.0/testempty.proto \
  953. js/compatibility_tests/v3.1.0/testbinary.proto \
  954. js/compatibility_tests/v3.1.0/test5.proto \
  955. js/compatibility_tests/v3.1.0/test4.proto \
  956. js/compatibility_tests/v3.1.0/test3.proto \
  957. js/compatibility_tests/v3.1.0/test2.proto \
  958. js/compatibility_tests/v3.1.0/test.proto \
  959. js/compatibility_tests/v3.1.0/proto3_test.proto \
  960. js/compatibility_tests/v3.1.0/proto3_test.js \
  961. js/compatibility_tests/v3.1.0/message_test.js \
  962. js/compatibility_tests/v3.1.0/maps_test.js \
  963. js/compatibility_tests/v3.1.0/debug_test.js \
  964. js/compatibility_tests/v3.1.0/data.proto \
  965. js/compatibility_tests/v3.1.0/commonjs/test7/test7.proto \
  966. js/compatibility_tests/v3.1.0/commonjs/test6/test6.proto \
  967. js/compatibility_tests/v3.1.0/binary/writer_test.js \
  968. js/compatibility_tests/v3.1.0/binary/utils_test.js \
  969. js/compatibility_tests/v3.1.0/binary/reader_test.js \
  970. js/compatibility_tests/v3.1.0/binary/proto_test.js \
  971. js/compatibility_tests/v3.1.0/binary/decoder_test.js \
  972. js/compatibility_tests/v3.1.0/binary/arith_test.js \
  973. js/data.proto \
  974. js/debug.js \
  975. js/debug_test.js \
  976. js/gulpfile.js \
  977. js/jasmine.json \
  978. js/map.js \
  979. js/maps_test.js \
  980. js/message.js \
  981. js/message_test.js \
  982. js/node_loader.js \
  983. js/package.json \
  984. js/proto3_test.js \
  985. js/proto3_test.proto \
  986. js/test.proto \
  987. js/test2.proto \
  988. js/test3.proto \
  989. js/test4.proto \
  990. js/test5.proto \
  991. js/test8.proto \
  992. js/test_bootstrap.js \
  993. js/testbinary.proto \
  994. js/testempty.proto
  995. all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(php_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) $(js_EXTRA_DIST)
  996. EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
  997. autogen.sh \
  998. generate_descriptor_proto.sh \
  999. README.md \
  1000. LICENSE \
  1001. CONTRIBUTORS.txt \
  1002. CHANGES.txt \
  1003. update_file_lists.sh \
  1004. BUILD \
  1005. WORKSPACE \
  1006. cmake/CMakeLists.txt \
  1007. cmake/README.md \
  1008. cmake/examples.cmake \
  1009. cmake/extract_includes.bat.in \
  1010. cmake/install.cmake \
  1011. cmake/libprotobuf.cmake \
  1012. cmake/libprotobuf-lite.cmake \
  1013. cmake/libprotoc.cmake \
  1014. cmake/protobuf-config-version.cmake.in \
  1015. cmake/protobuf-config.cmake.in \
  1016. cmake/protobuf-lite.pc.cmake \
  1017. cmake/protobuf-module.cmake.in \
  1018. cmake/protobuf-options.cmake \
  1019. cmake/protobuf.pc.cmake \
  1020. cmake/protoc.cmake \
  1021. cmake/tests.cmake \
  1022. cmake/version.rc.in \
  1023. editors/README.txt \
  1024. editors/proto.vim \
  1025. editors/protobuf-mode.el \
  1026. examples/AddPerson.java \
  1027. examples/BUILD \
  1028. examples/CMakeLists.txt \
  1029. examples/ListPeople.java \
  1030. examples/Makefile \
  1031. examples/README.md \
  1032. examples/WORKSPACE \
  1033. examples/add_person.cc \
  1034. examples/add_person.go \
  1035. examples/add_person.py \
  1036. examples/add_person_test.go \
  1037. examples/addressbook.proto \
  1038. examples/list_people.cc \
  1039. examples/list_people.go \
  1040. examples/list_people.py \
  1041. examples/list_people_test.go \
  1042. protobuf.bzl \
  1043. python/release/wheel/build_wheel_manylinux.sh \
  1044. python/release/wheel/Dockerfile \
  1045. python/release/wheel/protobuf_optimized_pip.sh \
  1046. python/release/wheel/README.md \
  1047. six.BUILD \
  1048. util/python/BUILD
  1049. # Deletes all the files generated by autogen.sh.
  1050. MAINTAINERCLEANFILES = \
  1051. aclocal.m4 \
  1052. ar-lib \
  1053. config.guess \
  1054. config.sub \
  1055. configure \
  1056. depcomp \
  1057. install-sh \
  1058. ltmain.sh \
  1059. Makefile.in \
  1060. missing \
  1061. mkinstalldirs \
  1062. config.h.in \
  1063. stamp.h.in \
  1064. m4/ltsugar.m4 \
  1065. m4/libtool.m4 \
  1066. m4/ltversion.m4 \
  1067. m4/lt~obsolete.m4 \
  1068. m4/ltoptions.m4