Makefile.am 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769
  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/README.md \
  47. csharp/build_packages.bat \
  48. csharp/buildall.sh \
  49. csharp/generate_protos.sh \
  50. csharp/keys/Google.Protobuf.public.snk \
  51. csharp/keys/README.md \
  52. csharp/protos/unittest_issues.proto \
  53. csharp/src/AddressBook/AddPerson.cs \
  54. csharp/src/AddressBook/AddressBook.csproj \
  55. csharp/src/AddressBook/Addressbook.cs \
  56. csharp/src/AddressBook/ListPeople.cs \
  57. csharp/src/AddressBook/Program.cs \
  58. csharp/src/AddressBook/Properties/AssemblyInfo.cs \
  59. csharp/src/AddressBook/SampleUsage.cs \
  60. csharp/src/AddressBook/app.config \
  61. csharp/src/Google.Protobuf.Conformance/App.config \
  62. csharp/src/Google.Protobuf.Conformance/Conformance.cs \
  63. csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj \
  64. csharp/src/Google.Protobuf.Conformance/Program.cs \
  65. csharp/src/Google.Protobuf.Conformance/Properties/AssemblyInfo.cs \
  66. csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \
  67. csharp/src/Google.Protobuf.JsonDump/Program.cs \
  68. csharp/src/Google.Protobuf.JsonDump/Properties/AssemblyInfo.cs \
  69. csharp/src/Google.Protobuf.JsonDump/app.config \
  70. csharp/src/Google.Protobuf.Test/ByteStringTest.cs \
  71. csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \
  72. csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \
  73. csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \
  74. csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \
  75. csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \
  76. csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.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/Properties/AppManifest.xml \
  88. csharp/src/Google.Protobuf.Test/Properties/AssemblyInfo.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/MapUnittestProto3.cs \
  96. csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs \
  97. csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs \
  98. csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs \
  99. csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs \
  100. csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs \
  101. csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \
  102. csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \
  103. csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \
  104. csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \
  105. csharp/src/Google.Protobuf.Test/packages.config \
  106. csharp/src/Google.Protobuf.sln \
  107. csharp/src/Google.Protobuf/ByteArray.cs \
  108. csharp/src/Google.Protobuf/ByteString.cs \
  109. csharp/src/Google.Protobuf/CodedInputStream.cs \
  110. csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \
  111. csharp/src/Google.Protobuf/CodedOutputStream.cs \
  112. csharp/src/Google.Protobuf/Collections/MapField.cs \
  113. csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \
  114. csharp/src/Google.Protobuf/Collections/RepeatedField.cs \
  115. csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \
  116. csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \
  117. csharp/src/Google.Protobuf/FieldCodec.cs \
  118. csharp/src/Google.Protobuf/FrameworkPortability.cs \
  119. csharp/src/Google.Protobuf/Google.Protobuf.csproj \
  120. csharp/src/Google.Protobuf/Google.Protobuf.nuspec \
  121. csharp/src/Google.Protobuf/IDeepCloneable.cs \
  122. csharp/src/Google.Protobuf/IMessage.cs \
  123. csharp/src/Google.Protobuf/InvalidJsonException.cs \
  124. csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \
  125. csharp/src/Google.Protobuf/JsonFormatter.cs \
  126. csharp/src/Google.Protobuf/JsonParser.cs \
  127. csharp/src/Google.Protobuf/JsonToken.cs \
  128. csharp/src/Google.Protobuf/JsonTokenizer.cs \
  129. csharp/src/Google.Protobuf/LimitedInputStream.cs \
  130. csharp/src/Google.Protobuf/MessageExtensions.cs \
  131. csharp/src/Google.Protobuf/MessageParser.cs \
  132. csharp/src/Google.Protobuf/ProtoPreconditions.cs \
  133. csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \
  134. csharp/src/Google.Protobuf/Reflection/Descriptor.cs \
  135. csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \
  136. csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \
  137. csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \
  138. csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \
  139. csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \
  140. csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \
  141. csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \
  142. csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \
  143. csharp/src/Google.Protobuf/Reflection/FieldType.cs \
  144. csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \
  145. csharp/src/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs \
  146. csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \
  147. csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \
  148. csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \
  149. csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \
  150. csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \
  151. csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \
  152. csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \
  153. csharp/src/Google.Protobuf/Reflection/OriginalNameAttribute.cs \
  154. csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \
  155. csharp/src/Google.Protobuf/Reflection/PartialClasses.cs \
  156. csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \
  157. csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \
  158. csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \
  159. csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \
  160. csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs \
  161. csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \
  162. csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \
  163. csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \
  164. csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \
  165. csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \
  166. csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \
  167. csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \
  168. csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \
  169. csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \
  170. csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \
  171. csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \
  172. csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \
  173. csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \
  174. csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs \
  175. csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \
  176. csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs \
  177. csharp/src/Google.Protobuf/WireFormat.cs \
  178. csharp/src/Google.Protobuf/packages.config \
  179. csharp/src/packages/repositories.config
  180. java_EXTRA_DIST= \
  181. java/README.md \
  182. java/core/generate-sources-build.xml \
  183. java/core/generate-test-sources-build.xml \
  184. java/core/pom.xml \
  185. java/core/src/main/java/com/google/protobuf/AbstractMessage.java \
  186. java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java \
  187. java/core/src/main/java/com/google/protobuf/AbstractParser.java \
  188. java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java \
  189. java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
  190. java/core/src/main/java/com/google/protobuf/BlockingService.java \
  191. java/core/src/main/java/com/google/protobuf/BooleanArrayList.java \
  192. java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java \
  193. java/core/src/main/java/com/google/protobuf/ByteOutput.java \
  194. java/core/src/main/java/com/google/protobuf/ByteString.java \
  195. java/core/src/main/java/com/google/protobuf/CodedInputStream.java \
  196. java/core/src/main/java/com/google/protobuf/CodedOutputStream.java \
  197. java/core/src/main/java/com/google/protobuf/Descriptors.java \
  198. java/core/src/main/java/com/google/protobuf/DoubleArrayList.java \
  199. java/core/src/main/java/com/google/protobuf/DynamicMessage.java \
  200. java/core/src/main/java/com/google/protobuf/Extension.java \
  201. java/core/src/main/java/com/google/protobuf/ExtensionLite.java \
  202. java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java \
  203. java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
  204. java/core/src/main/java/com/google/protobuf/FieldSet.java \
  205. java/core/src/main/java/com/google/protobuf/FloatArrayList.java \
  206. java/core/src/main/java/com/google/protobuf/GeneratedMessage.java \
  207. java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
  208. java/core/src/main/java/com/google/protobuf/IntArrayList.java \
  209. java/core/src/main/java/com/google/protobuf/Internal.java \
  210. java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
  211. java/core/src/main/java/com/google/protobuf/LazyField.java \
  212. java/core/src/main/java/com/google/protobuf/LazyFieldLite.java \
  213. java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java \
  214. java/core/src/main/java/com/google/protobuf/LazyStringList.java \
  215. java/core/src/main/java/com/google/protobuf/LongArrayList.java \
  216. java/core/src/main/java/com/google/protobuf/MapEntry.java \
  217. java/core/src/main/java/com/google/protobuf/MapEntryLite.java \
  218. java/core/src/main/java/com/google/protobuf/MapField.java \
  219. java/core/src/main/java/com/google/protobuf/MapFieldLite.java \
  220. java/core/src/main/java/com/google/protobuf/Message.java \
  221. java/core/src/main/java/com/google/protobuf/MessageLite.java \
  222. java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
  223. java/core/src/main/java/com/google/protobuf/MessageLiteToString.java \
  224. java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java \
  225. java/core/src/main/java/com/google/protobuf/MessageReflection.java \
  226. java/core/src/main/java/com/google/protobuf/MutabilityOracle.java \
  227. java/core/src/main/java/com/google/protobuf/NioByteString.java \
  228. java/core/src/main/java/com/google/protobuf/Parser.java \
  229. java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java \
  230. java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
  231. java/core/src/main/java/com/google/protobuf/ProtocolStringList.java \
  232. java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
  233. java/core/src/main/java/com/google/protobuf/RopeByteString.java \
  234. java/core/src/main/java/com/google/protobuf/RpcCallback.java \
  235. java/core/src/main/java/com/google/protobuf/RpcChannel.java \
  236. java/core/src/main/java/com/google/protobuf/RpcController.java \
  237. java/core/src/main/java/com/google/protobuf/RpcUtil.java \
  238. java/core/src/main/java/com/google/protobuf/Service.java \
  239. java/core/src/main/java/com/google/protobuf/ServiceException.java \
  240. java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
  241. java/core/src/main/java/com/google/protobuf/SmallSortedMap.java \
  242. java/core/src/main/java/com/google/protobuf/TextFormat.java \
  243. java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java \
  244. java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java \
  245. java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java \
  246. java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java \
  247. java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java \
  248. java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
  249. java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
  250. java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java \
  251. java/core/src/main/java/com/google/protobuf/Utf8.java \
  252. java/core/src/main/java/com/google/protobuf/WireFormat.java \
  253. java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java \
  254. java/core/src/test/java/com/google/protobuf/AnyTest.java \
  255. java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java \
  256. java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
  257. java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java \
  258. java/core/src/test/java/com/google/protobuf/ByteStringTest.java \
  259. java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java \
  260. java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
  261. java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
  262. java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
  263. java/core/src/test/java/com/google/protobuf/DescriptorsTest.java \
  264. java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java \
  265. java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java \
  266. java/core/src/test/java/com/google/protobuf/EnumTest.java \
  267. java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java \
  268. java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java \
  269. java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
  270. java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
  271. java/core/src/test/java/com/google/protobuf/IntArrayListTest.java \
  272. java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
  273. java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
  274. java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
  275. java/core/src/test/java/com/google/protobuf/LazyFieldTest.java \
  276. java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
  277. java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
  278. java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
  279. java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
  280. java/core/src/test/java/com/google/protobuf/LiteTest.java \
  281. java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
  282. java/core/src/test/java/com/google/protobuf/LongArrayListTest.java \
  283. java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
  284. java/core/src/test/java/com/google/protobuf/MapForProto2Test.java \
  285. java/core/src/test/java/com/google/protobuf/MapTest.java \
  286. java/core/src/test/java/com/google/protobuf/MessageTest.java \
  287. java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java \
  288. java/core/src/test/java/com/google/protobuf/NioByteStringTest.java \
  289. java/core/src/test/java/com/google/protobuf/ParserTest.java \
  290. java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \
  291. java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
  292. java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
  293. java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java \
  294. java/core/src/test/java/com/google/protobuf/ServiceTest.java \
  295. java/core/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
  296. java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
  297. java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
  298. java/core/src/test/java/com/google/protobuf/TestUtil.java \
  299. java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java \
  300. java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java \
  301. java/core/src/test/java/com/google/protobuf/TextFormatTest.java \
  302. java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
  303. java/core/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
  304. java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
  305. java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
  306. java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java \
  307. java/core/src/test/java/com/google/protobuf/WireFormatTest.java \
  308. java/core/src/test/proto/com/google/protobuf/any_test.proto \
  309. java/core/src/test/proto/com/google/protobuf/field_presence_test.proto \
  310. java/core/src/test/proto/com/google/protobuf/lazy_fields_lite.proto \
  311. java/core/src/test/proto/com/google/protobuf/lite_equals_and_hash.proto \
  312. java/core/src/test/proto/com/google/protobuf/map_for_proto2_lite_test.proto \
  313. java/core/src/test/proto/com/google/protobuf/map_for_proto2_test.proto \
  314. java/core/src/test/proto/com/google/protobuf/map_initialization_order_test.proto \
  315. java/core/src/test/proto/com/google/protobuf/map_test.proto \
  316. java/core/src/test/proto/com/google/protobuf/multiple_files_test.proto \
  317. java/core/src/test/proto/com/google/protobuf/nested_builders_test.proto \
  318. java/core/src/test/proto/com/google/protobuf/nested_extension.proto \
  319. java/core/src/test/proto/com/google/protobuf/nested_extension_lite.proto \
  320. java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto \
  321. java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto \
  322. java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto \
  323. java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto \
  324. java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto \
  325. java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto \
  326. java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto \
  327. java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto \
  328. java/core/src/test/proto/com/google/protobuf/test_custom_options.proto \
  329. java/core/src/test/proto/com/google/protobuf/test_extra_interfaces.proto \
  330. java/lite/pom.xml \
  331. java/pom.xml \
  332. java/util/pom.xml \
  333. java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java \
  334. java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java \
  335. java/util/src/main/java/com/google/protobuf/util/JsonFormat.java \
  336. java/util/src/main/java/com/google/protobuf/util/TimeUtil.java \
  337. java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java \
  338. java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java \
  339. java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java \
  340. java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java \
  341. java/util/src/test/proto/com/google/protobuf/util/json_test.proto
  342. javanano_EXTRA_DIST= \
  343. javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java \
  344. javanano/src/main/java/com/google/protobuf/nano/FieldData.java \
  345. javanano/src/main/java/com/google/protobuf/nano/FieldArray.java \
  346. javanano/src/main/java/com/google/protobuf/nano/WireFormatNano.java \
  347. javanano/src/main/java/com/google/protobuf/nano/Extension.java \
  348. javanano/src/main/java/com/google/protobuf/nano/CodedInputByteBufferNano.java \
  349. javanano/src/main/java/com/google/protobuf/nano/UnknownFieldData.java \
  350. javanano/src/main/java/com/google/protobuf/nano/MessageNano.java \
  351. javanano/src/main/java/com/google/protobuf/nano/InternalNano.java \
  352. javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java \
  353. javanano/src/main/java/com/google/protobuf/nano/MapFactories.java \
  354. javanano/src/main/java/com/google/protobuf/nano/ExtendableMessageNano.java \
  355. javanano/src/main/java/com/google/protobuf/nano/MessageNanoPrinter.java \
  356. javanano/src/test/java/com/google/protobuf/nano/unittest_accessors_nano.proto \
  357. javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_nano.proto \
  358. javanano/src/test/java/com/google/protobuf/nano/unittest_reference_types_nano.proto \
  359. javanano/src/test/java/com/google/protobuf/nano/unittest_extension_repeated_nano.proto \
  360. javanano/src/test/java/com/google/protobuf/nano/unittest_has_nano.proto \
  361. javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto \
  362. javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nameclash_nano.proto \
  363. javanano/src/test/java/com/google/protobuf/nano/unittest_single_nano.proto \
  364. javanano/src/test/java/com/google/protobuf/nano/NanoTest.java \
  365. javanano/src/test/java/com/google/protobuf/nano/unittest_simple_nano.proto \
  366. javanano/src/test/java/com/google/protobuf/nano/unittest_import_nano.proto \
  367. javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_merge_nano.proto \
  368. javanano/src/test/java/com/google/protobuf/nano/unittest_extension_nano.proto \
  369. javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_packables_nano.proto \
  370. javanano/src/test/java/com/google/protobuf/nano/unittest_extension_singular_nano.proto \
  371. javanano/src/test/java/com/google/protobuf/nano/unittest_recursive_nano.proto \
  372. javanano/src/test/java/com/google/protobuf/nano/unittest_extension_packed_nano.proto \
  373. javanano/src/test/java/com/google/protobuf/nano/unittest_enum_validity_nano.proto \
  374. javanano/src/test/java/com/google/protobuf/nano/unittest_stringutf8_nano.proto \
  375. javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nano.proto \
  376. javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_multiple_nano.proto \
  377. javanano/src/test/java/com/google/protobuf/nano/map_test.proto \
  378. javanano/README.md \
  379. javanano/pom.xml
  380. objectivec_EXTRA_DIST= \
  381. objectivec/DevTools/check_version_stamps.sh \
  382. objectivec/DevTools/compile_testing_protos.sh \
  383. objectivec/DevTools/full_mac_build.sh \
  384. objectivec/DevTools/pddm.py \
  385. objectivec/DevTools/pddm_tests.py \
  386. objectivec/generate_well_known_types.sh \
  387. objectivec/google/protobuf/Any.pbobjc.h \
  388. objectivec/google/protobuf/Any.pbobjc.m \
  389. objectivec/google/protobuf/Api.pbobjc.h \
  390. objectivec/google/protobuf/Api.pbobjc.m \
  391. objectivec/google/protobuf/Duration.pbobjc.h \
  392. objectivec/google/protobuf/Duration.pbobjc.m \
  393. objectivec/google/protobuf/Empty.pbobjc.h \
  394. objectivec/google/protobuf/Empty.pbobjc.m \
  395. objectivec/google/protobuf/FieldMask.pbobjc.h \
  396. objectivec/google/protobuf/FieldMask.pbobjc.m \
  397. objectivec/google/protobuf/SourceContext.pbobjc.h \
  398. objectivec/google/protobuf/SourceContext.pbobjc.m \
  399. objectivec/google/protobuf/Struct.pbobjc.h \
  400. objectivec/google/protobuf/Struct.pbobjc.m \
  401. objectivec/google/protobuf/Timestamp.pbobjc.h \
  402. objectivec/google/protobuf/Timestamp.pbobjc.m \
  403. objectivec/google/protobuf/Type.pbobjc.h \
  404. objectivec/google/protobuf/Type.pbobjc.m \
  405. objectivec/google/protobuf/Wrappers.pbobjc.h \
  406. objectivec/google/protobuf/Wrappers.pbobjc.m \
  407. objectivec/GPBArray.h \
  408. objectivec/GPBArray.m \
  409. objectivec/GPBArray_PackagePrivate.h \
  410. objectivec/GPBBootstrap.h \
  411. objectivec/GPBCodedInputStream.h \
  412. objectivec/GPBCodedInputStream.m \
  413. objectivec/GPBCodedInputStream_PackagePrivate.h \
  414. objectivec/GPBCodedOutputStream.h \
  415. objectivec/GPBCodedOutputStream.m \
  416. objectivec/GPBCodedOutputStream_PackagePrivate.h \
  417. objectivec/GPBDescriptor.h \
  418. objectivec/GPBDescriptor.m \
  419. objectivec/GPBDescriptor_PackagePrivate.h \
  420. objectivec/GPBDictionary.h \
  421. objectivec/GPBDictionary.m \
  422. objectivec/GPBDictionary_PackagePrivate.h \
  423. objectivec/GPBExtensionInternals.h \
  424. objectivec/GPBExtensionInternals.m \
  425. objectivec/GPBExtensionRegistry.h \
  426. objectivec/GPBExtensionRegistry.m \
  427. objectivec/GPBMessage.h \
  428. objectivec/GPBMessage.m \
  429. objectivec/GPBMessage_PackagePrivate.h \
  430. objectivec/GPBProtocolBuffers.h \
  431. objectivec/GPBProtocolBuffers.m \
  432. objectivec/GPBProtocolBuffers_RuntimeSupport.h \
  433. objectivec/GPBRootObject.h \
  434. objectivec/GPBRootObject.m \
  435. objectivec/GPBRootObject_PackagePrivate.h \
  436. objectivec/GPBRuntimeTypes.h \
  437. objectivec/GPBUnknownField.h \
  438. objectivec/GPBUnknownField.m \
  439. objectivec/GPBUnknownField_PackagePrivate.h \
  440. objectivec/GPBUnknownFieldSet.h \
  441. objectivec/GPBUnknownFieldSet.m \
  442. objectivec/GPBUnknownFieldSet_PackagePrivate.h \
  443. objectivec/GPBUtilities.h \
  444. objectivec/GPBUtilities.m \
  445. objectivec/GPBUtilities_PackagePrivate.h \
  446. objectivec/GPBWellKnownTypes.h \
  447. objectivec/GPBWellKnownTypes.m \
  448. objectivec/GPBWireFormat.h \
  449. objectivec/GPBWireFormat.m \
  450. objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \
  451. objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
  452. objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
  453. objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/FFE465CA-0E74-40E8-9F09-500B66B7DCB2.plist \
  454. objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/Info.plist \
  455. objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
  456. objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
  457. objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \
  458. objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
  459. objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
  460. objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
  461. objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
  462. objectivec/README.md \
  463. objectivec/Tests/golden_message \
  464. objectivec/Tests/golden_packed_fields_message \
  465. objectivec/Tests/GPBARCUnittestProtos.m \
  466. objectivec/Tests/GPBArrayTests.m \
  467. objectivec/Tests/GPBCodedInputStreamTests.m \
  468. objectivec/Tests/GPBCodedOuputStreamTests.m \
  469. objectivec/Tests/GPBConcurrencyTests.m \
  470. objectivec/Tests/GPBDescriptorTests.m \
  471. objectivec/Tests/GPBDictionaryTests+Bool.m \
  472. objectivec/Tests/GPBDictionaryTests+Int32.m \
  473. objectivec/Tests/GPBDictionaryTests+Int64.m \
  474. objectivec/Tests/GPBDictionaryTests+String.m \
  475. objectivec/Tests/GPBDictionaryTests+UInt32.m \
  476. objectivec/Tests/GPBDictionaryTests+UInt64.m \
  477. objectivec/Tests/GPBDictionaryTests.pddm \
  478. objectivec/Tests/GPBMessageTests+Merge.m \
  479. objectivec/Tests/GPBMessageTests+Runtime.m \
  480. objectivec/Tests/GPBMessageTests+Serialization.m \
  481. objectivec/Tests/GPBMessageTests.m \
  482. objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \
  483. objectivec/Tests/GPBPerfTests.m \
  484. objectivec/Tests/GPBSwiftTests.swift \
  485. objectivec/Tests/GPBTestUtilities.h \
  486. objectivec/Tests/GPBTestUtilities.m \
  487. objectivec/Tests/GPBUnittestProtos.m \
  488. objectivec/Tests/GPBUnknownFieldSetTest.m \
  489. objectivec/Tests/GPBUtilitiesTests.m \
  490. objectivec/Tests/GPBWellKnownTypesTest.m \
  491. objectivec/Tests/GPBWireFormatTests.m \
  492. objectivec/Tests/iOSTestHarness/AppDelegate.m \
  493. objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings \
  494. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.json \
  495. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png \
  496. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6_2x.png \
  497. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png \
  498. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7_2x.png \
  499. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png \
  500. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6_2x.png \
  501. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_2x.png \
  502. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_3x.png \
  503. objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Contents.json \
  504. objectivec/Tests/iOSTestHarness/Info.plist \
  505. objectivec/Tests/iOSTestHarness/LaunchScreen.xib \
  506. objectivec/Tests/text_format_map_unittest_data.txt \
  507. objectivec/Tests/text_format_unittest_data.txt \
  508. objectivec/Tests/unittest_cycle.proto \
  509. objectivec/Tests/unittest_objc.proto \
  510. objectivec/Tests/unittest_objc_startup.proto \
  511. objectivec/Tests/unittest_runtime_proto2.proto \
  512. objectivec/Tests/unittest_runtime_proto3.proto \
  513. objectivec/Tests/UnitTests-Bridging-Header.h \
  514. objectivec/Tests/UnitTests-Info.plist \
  515. Protobuf.podspec
  516. python_EXTRA_DIST= \
  517. python/MANIFEST.in \
  518. python/google/__init__.py \
  519. python/google/protobuf/__init__.py \
  520. python/google/protobuf/descriptor.py \
  521. python/google/protobuf/descriptor_database.py \
  522. python/google/protobuf/descriptor_pool.py \
  523. python/google/protobuf/internal/__init__.py \
  524. python/google/protobuf/internal/_parameterized.py \
  525. python/google/protobuf/internal/any_test.proto \
  526. python/google/protobuf/internal/any_test.proto \
  527. python/google/protobuf/internal/api_implementation.cc \
  528. python/google/protobuf/internal/api_implementation.py \
  529. python/google/protobuf/internal/containers.py \
  530. python/google/protobuf/internal/decoder.py \
  531. python/google/protobuf/internal/descriptor_database_test.py \
  532. python/google/protobuf/internal/descriptor_pool_test.py \
  533. python/google/protobuf/internal/descriptor_pool_test1.proto \
  534. python/google/protobuf/internal/descriptor_pool_test2.proto \
  535. python/google/protobuf/internal/descriptor_test.py \
  536. python/google/protobuf/internal/encoder.py \
  537. python/google/protobuf/internal/enum_type_wrapper.py \
  538. python/google/protobuf/internal/factory_test1.proto \
  539. python/google/protobuf/internal/factory_test2.proto \
  540. python/google/protobuf/internal/generator_test.py \
  541. python/google/protobuf/internal/import_test_package/__init__.py \
  542. python/google/protobuf/internal/import_test_package/inner.proto \
  543. python/google/protobuf/internal/import_test_package/outer.proto \
  544. python/google/protobuf/internal/json_format_test.py \
  545. python/google/protobuf/internal/message_factory_test.py \
  546. python/google/protobuf/internal/message_listener.py \
  547. python/google/protobuf/internal/message_set_extensions.proto \
  548. python/google/protobuf/internal/message_test.py \
  549. python/google/protobuf/internal/missing_enum_values.proto \
  550. python/google/protobuf/internal/more_extensions.proto \
  551. python/google/protobuf/internal/more_extensions_dynamic.proto \
  552. python/google/protobuf/internal/more_messages.proto \
  553. python/google/protobuf/internal/packed_field_test.proto \
  554. python/google/protobuf/internal/proto_builder_test.py \
  555. python/google/protobuf/internal/python_message.py \
  556. python/google/protobuf/internal/reflection_test.py \
  557. python/google/protobuf/internal/service_reflection_test.py \
  558. python/google/protobuf/internal/symbol_database_test.py \
  559. python/google/protobuf/internal/test_bad_identifiers.proto \
  560. python/google/protobuf/internal/test_util.py \
  561. python/google/protobuf/internal/text_encoding_test.py \
  562. python/google/protobuf/internal/text_format_test.py \
  563. python/google/protobuf/internal/type_checkers.py \
  564. python/google/protobuf/internal/unknown_fields_test.py \
  565. python/google/protobuf/internal/well_known_types.py \
  566. python/google/protobuf/internal/well_known_types.py \
  567. python/google/protobuf/internal/well_known_types_test.py \
  568. python/google/protobuf/internal/well_known_types_test.py \
  569. python/google/protobuf/internal/wire_format.py \
  570. python/google/protobuf/internal/wire_format_test.py \
  571. python/google/protobuf/json_format.py \
  572. python/google/protobuf/message.py \
  573. python/google/protobuf/message_factory.py \
  574. python/google/protobuf/proto_builder.py \
  575. python/google/protobuf/pyext/README \
  576. python/google/protobuf/pyext/__init__.py \
  577. python/google/protobuf/pyext/cpp_message.py \
  578. python/google/protobuf/pyext/descriptor.cc \
  579. python/google/protobuf/pyext/descriptor.h \
  580. python/google/protobuf/pyext/descriptor_containers.cc \
  581. python/google/protobuf/pyext/descriptor_containers.h \
  582. python/google/protobuf/pyext/descriptor_database.cc \
  583. python/google/protobuf/pyext/descriptor_database.h \
  584. python/google/protobuf/pyext/descriptor_pool.cc \
  585. python/google/protobuf/pyext/descriptor_pool.h \
  586. python/google/protobuf/pyext/extension_dict.cc \
  587. python/google/protobuf/pyext/extension_dict.h \
  588. python/google/protobuf/pyext/map_container.cc \
  589. python/google/protobuf/pyext/map_container.h \
  590. python/google/protobuf/pyext/message.cc \
  591. python/google/protobuf/pyext/message.h \
  592. python/google/protobuf/pyext/proto2_api_test.proto \
  593. python/google/protobuf/pyext/python.proto \
  594. python/google/protobuf/pyext/python_protobuf.h \
  595. python/google/protobuf/pyext/repeated_composite_container.cc \
  596. python/google/protobuf/pyext/repeated_composite_container.h \
  597. python/google/protobuf/pyext/repeated_scalar_container.cc \
  598. python/google/protobuf/pyext/repeated_scalar_container.h \
  599. python/google/protobuf/pyext/scoped_pyobject_ptr.h \
  600. python/google/protobuf/reflection.py \
  601. python/google/protobuf/service.py \
  602. python/google/protobuf/service_reflection.py \
  603. python/google/protobuf/symbol_database.py \
  604. python/google/protobuf/text_encoding.py \
  605. python/google/protobuf/text_format.py \
  606. python/mox.py \
  607. python/setup.py \
  608. python/stubout.py \
  609. python/tox.ini \
  610. python/README.md
  611. ruby_EXTRA_DIST= \
  612. ruby/Gemfile \
  613. ruby/Gemfile.lock \
  614. ruby/.gitignore \
  615. ruby/README.md \
  616. ruby/Rakefile \
  617. ruby/ext/google/protobuf_c/defs.c \
  618. ruby/ext/google/protobuf_c/encode_decode.c \
  619. ruby/ext/google/protobuf_c/extconf.rb \
  620. ruby/ext/google/protobuf_c/map.c \
  621. ruby/ext/google/protobuf_c/message.c \
  622. ruby/ext/google/protobuf_c/protobuf.c \
  623. ruby/ext/google/protobuf_c/protobuf.h \
  624. ruby/ext/google/protobuf_c/repeated_field.c \
  625. ruby/ext/google/protobuf_c/storage.c \
  626. ruby/ext/google/protobuf_c/upb.c \
  627. ruby/ext/google/protobuf_c/upb.h \
  628. ruby/google-protobuf.gemspec \
  629. ruby/lib/google/protobuf/message_exts.rb \
  630. ruby/lib/google/protobuf/repeated_field.rb \
  631. ruby/lib/google/protobuf.rb \
  632. ruby/pom.xml \
  633. ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \
  634. ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \
  635. ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \
  636. ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \
  637. ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \
  638. ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \
  639. ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \
  640. ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \
  641. ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \
  642. ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \
  643. ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \
  644. ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \
  645. ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \
  646. ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \
  647. ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \
  648. ruby/src/main/java/com/google/protobuf/jruby/Utils.java \
  649. ruby/src/main/java/google/ProtobufJavaService.java \
  650. ruby/src/main/sentinel.proto \
  651. ruby/tests/basic.rb \
  652. ruby/tests/repeated_field_test.rb \
  653. ruby/tests/stress.rb \
  654. ruby/tests/generated_code.proto \
  655. ruby/tests/generated_code_test.rb \
  656. ruby/travis-test.sh
  657. js_EXTRA_DIST= \
  658. js/README.md \
  659. js/binary/arith.js \
  660. js/binary/arith_test.js \
  661. js/binary/constants.js \
  662. js/binary/decoder.js \
  663. js/binary/decoder_test.js \
  664. js/binary/proto_test.js \
  665. js/binary/reader.js \
  666. js/binary/reader_test.js \
  667. js/binary/utils.js \
  668. js/binary/utils_test.js \
  669. js/binary/writer.js \
  670. js/binary/writer_test.js \
  671. js/data.proto \
  672. js/debug.js \
  673. js/debug_test.js \
  674. js/gulpfile.js \
  675. js/jasmine.json \
  676. js/message.js \
  677. js/message_test.js \
  678. js/node_loader.js \
  679. js/package.json \
  680. js/proto3_test.js \
  681. js/proto3_test.proto \
  682. js/test.proto \
  683. js/test2.proto \
  684. js/test3.proto \
  685. js/test4.proto \
  686. js/test5.proto \
  687. js/test_bootstrap.js \
  688. js/testbinary.proto \
  689. js/testempty.proto
  690. all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(javanano_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) $(js_EXTRA_DIST)
  691. EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
  692. autogen.sh \
  693. generate_descriptor_proto.sh \
  694. README.md \
  695. LICENSE \
  696. CONTRIBUTORS.txt \
  697. CHANGES.txt \
  698. update_file_lists.sh \
  699. BUILD \
  700. gmock.BUILD \
  701. WORKSPACE \
  702. cmake/CMakeLists.txt \
  703. cmake/README.md \
  704. cmake/extract_includes.bat.in \
  705. cmake/install.cmake \
  706. cmake/libprotobuf.cmake \
  707. cmake/libprotobuf-lite.cmake \
  708. cmake/libprotoc.cmake \
  709. cmake/protobuf-config-version.cmake.in \
  710. cmake/protobuf-config.cmake.in \
  711. cmake/protobuf-module.cmake.in \
  712. cmake/protoc.cmake \
  713. cmake/tests.cmake \
  714. editors/README.txt \
  715. editors/proto.vim \
  716. editors/protobuf-mode.el \
  717. examples/README.txt \
  718. examples/Makefile \
  719. examples/addressbook.proto \
  720. examples/add_person.cc \
  721. examples/add_person.go \
  722. examples/add_person_test.go \
  723. examples/list_people.cc \
  724. examples/list_people.go \
  725. examples/AddPerson.java \
  726. examples/ListPeople.java \
  727. examples/add_person.py \
  728. examples/list_people.py \
  729. examples/list_people_test.go \
  730. protobuf.bzl \
  731. six.BUILD \
  732. util/python/BUILD
  733. # Deletes all the files generated by autogen.sh.
  734. MAINTAINERCLEANFILES = \
  735. aclocal.m4 \
  736. ar-lib \
  737. config.guess \
  738. config.sub \
  739. configure \
  740. depcomp \
  741. install-sh \
  742. ltmain.sh \
  743. Makefile.in \
  744. missing \
  745. mkinstalldirs \
  746. config.h.in \
  747. stamp.h.in \
  748. m4/ltsugar.m4 \
  749. m4/libtool.m4 \
  750. m4/ltversion.m4 \
  751. m4/lt~obsolete.m4 \
  752. m4/ltoptions.m4