Makefile.am 72 KB

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