Makefile.am 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  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 gtest in distributions.
  8. DIST_SUBDIRS = $(subdirs) src conformance
  9. # Build gtest before we build protobuf tests. We don't add gtest to SUBDIRS
  10. # because then "make check" would also build and run all of gtest'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 gtest since we don't want to overwrite
  13. # the installed version of gtest if there is one.
  14. check-local:
  15. @echo "Making lib/libgtest.a lib/libgtest_main.a in gtest"
  16. @cd gtest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la
  17. # We would like to clean gtest when "make clean" is invoked. But we have to
  18. # be careful because clean-local is also invoked during "make distclean", but
  19. # "make distclean" already recurses into gtest because it's listed among the
  20. # DIST_SUBDIRS. distclean will delete gtest/Makefile, so if we then try to
  21. # cd to the directory again and "make clean" it will fail. So, check that the
  22. # Makefile exists before recursing.
  23. clean-local:
  24. @if test -e gtest/Makefile; then \
  25. echo "Making clean in gtest"; \
  26. cd gtest && $(MAKE) $(AM_MAKEFLAGS) clean; \
  27. fi; \
  28. if test -e conformance/Makefile; then \
  29. echo "Making clean in conformance"; \
  30. cd conformance && $(MAKE) $(AM_MAKEFLAGS) clean; \
  31. fi
  32. pkgconfigdir = $(libdir)/pkgconfig
  33. pkgconfig_DATA = protobuf.pc protobuf-lite.pc
  34. java_EXTRA_DIST= \
  35. java/src/main/java/com/google/protobuf/AbstractMessage.java \
  36. java/src/main/java/com/google/protobuf/AbstractMessageLite.java \
  37. java/src/main/java/com/google/protobuf/AbstractParser.java \
  38. java/src/main/java/com/google/protobuf/AbstractProtobufList.java \
  39. java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
  40. java/src/main/java/com/google/protobuf/BlockingService.java \
  41. java/src/main/java/com/google/protobuf/BoundedByteString.java \
  42. java/src/main/java/com/google/protobuf/BooleanArrayList.java \
  43. java/src/main/java/com/google/protobuf/ByteString.java \
  44. java/src/main/java/com/google/protobuf/CodedInputStream.java \
  45. java/src/main/java/com/google/protobuf/CodedOutputStream.java \
  46. java/src/main/java/com/google/protobuf/Descriptors.java \
  47. java/src/main/java/com/google/protobuf/DoubleArrayList.java \
  48. java/src/main/java/com/google/protobuf/DynamicMessage.java \
  49. java/src/main/java/com/google/protobuf/Extension.java \
  50. java/src/main/java/com/google/protobuf/ExtensionLite.java \
  51. java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
  52. java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
  53. java/src/main/java/com/google/protobuf/FieldSet.java \
  54. java/src/main/java/com/google/protobuf/FloatArrayList.java \
  55. java/src/main/java/com/google/protobuf/GeneratedMessage.java \
  56. java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
  57. java/src/main/java/com/google/protobuf/Internal.java \
  58. java/src/main/java/com/google/protobuf/IntArrayList.java \
  59. java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
  60. java/src/main/java/com/google/protobuf/LazyField.java \
  61. java/src/main/java/com/google/protobuf/LazyFieldLite.java \
  62. java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
  63. java/src/main/java/com/google/protobuf/LazyStringList.java \
  64. java/src/main/java/com/google/protobuf/LiteralByteString.java \
  65. java/src/main/java/com/google/protobuf/LongArrayList.java \
  66. java/src/main/java/com/google/protobuf/MapEntry.java \
  67. java/src/main/java/com/google/protobuf/MapEntryLite.java \
  68. java/src/main/java/com/google/protobuf/MapField.java \
  69. java/src/main/java/com/google/protobuf/MapFieldLite.java \
  70. java/src/main/java/com/google/protobuf/Message.java \
  71. java/src/main/java/com/google/protobuf/MessageLite.java \
  72. java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
  73. java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
  74. java/src/main/java/com/google/protobuf/MessageReflection.java \
  75. java/src/main/java/com/google/protobuf/MutabilityOracle.java \
  76. java/src/main/java/com/google/protobuf/Parser.java \
  77. java/src/main/java/com/google/protobuf/ProtobufArrayList.java \
  78. java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
  79. java/src/main/java/com/google/protobuf/ProtocolStringList.java \
  80. java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
  81. java/src/main/java/com/google/protobuf/RopeByteString.java \
  82. java/src/main/java/com/google/protobuf/RpcCallback.java \
  83. java/src/main/java/com/google/protobuf/RpcChannel.java \
  84. java/src/main/java/com/google/protobuf/RpcController.java \
  85. java/src/main/java/com/google/protobuf/RpcUtil.java \
  86. java/src/main/java/com/google/protobuf/ServiceException.java \
  87. java/src/main/java/com/google/protobuf/Service.java \
  88. java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
  89. java/src/main/java/com/google/protobuf/SmallSortedMap.java \
  90. java/src/main/java/com/google/protobuf/TextFormat.java \
  91. java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
  92. java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
  93. java/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
  94. java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
  95. java/src/main/java/com/google/protobuf/Utf8.java \
  96. java/src/main/java/com/google/protobuf/WireFormat.java \
  97. java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
  98. java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
  99. java/src/test/java/com/google/protobuf/BooleanArrayListTest.java \
  100. java/src/test/java/com/google/protobuf/ByteStringTest.java \
  101. java/src/test/java/com/google/protobuf/CheckUtf8Test.java \
  102. java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
  103. java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
  104. java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
  105. java/src/test/java/com/google/protobuf/DescriptorsTest.java \
  106. java/src/test/java/com/google/protobuf/DoubleArrayListTest.java \
  107. java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
  108. java/src/test/java/com/google/protobuf/FieldPresenceTest.java \
  109. java/src/test/java/com/google/protobuf/FloatArrayListTest.java \
  110. java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
  111. java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
  112. java/src/test/java/com/google/protobuf/IntArrayListTest.java \
  113. java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
  114. java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
  115. java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
  116. java/src/test/java/com/google/protobuf/LazyFieldTest.java \
  117. java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
  118. java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
  119. java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
  120. java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
  121. java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
  122. java/src/test/java/com/google/protobuf/LiteTest.java \
  123. java/src/test/java/com/google/protobuf/LongArrayListTest.java \
  124. java/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
  125. java/src/test/java/com/google/protobuf/MapForProto2Test.java \
  126. java/src/test/java/com/google/protobuf/MapTest.java \
  127. java/src/test/java/com/google/protobuf/MessageTest.java \
  128. java/src/test/java/com/google/protobuf/NestedBuildersTest.java \
  129. java/src/test/java/com/google/protobuf/ParserTest.java \
  130. java/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \
  131. java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
  132. java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
  133. java/src/test/java/com/google/protobuf/RopeByteStringTest.java \
  134. java/src/test/java/com/google/protobuf/ServiceTest.java \
  135. java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
  136. java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
  137. java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
  138. java/src/test/java/com/google/protobuf/TestUtil.java \
  139. java/src/test/java/com/google/protobuf/TextFormatTest.java \
  140. java/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
  141. java/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
  142. java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
  143. java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
  144. java/src/test/java/com/google/protobuf/WireFormatTest.java \
  145. java/src/test/java/com/google/protobuf/field_presence_test.proto \
  146. java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \
  147. java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \
  148. java/src/test/java/com/google/protobuf/map_for_proto2_lite_test.proto \
  149. java/src/test/java/com/google/protobuf/map_for_proto2_test.proto \
  150. java/src/test/java/com/google/protobuf/map_test.proto \
  151. java/src/test/java/com/google/protobuf/multiple_files_test.proto \
  152. java/src/test/java/com/google/protobuf/nested_builders_test.proto \
  153. java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
  154. java/src/test/java/com/google/protobuf/nested_extension.proto \
  155. java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
  156. java/src/test/java/com/google/protobuf/non_nested_extension.proto \
  157. java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \
  158. java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \
  159. java/src/test/java/com/google/protobuf/outer_class_name_test.proto \
  160. java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
  161. java/src/test/java/com/google/protobuf/test_check_utf8.proto \
  162. java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \
  163. java/src/test/java/com/google/protobuf/test_custom_options.proto \
  164. java/pom.xml \
  165. java/README.md
  166. javanano_EXTRA_DIST= \
  167. javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java \
  168. javanano/src/main/java/com/google/protobuf/nano/FieldData.java \
  169. javanano/src/main/java/com/google/protobuf/nano/FieldArray.java \
  170. javanano/src/main/java/com/google/protobuf/nano/WireFormatNano.java \
  171. javanano/src/main/java/com/google/protobuf/nano/Extension.java \
  172. javanano/src/main/java/com/google/protobuf/nano/CodedInputByteBufferNano.java \
  173. javanano/src/main/java/com/google/protobuf/nano/UnknownFieldData.java \
  174. javanano/src/main/java/com/google/protobuf/nano/MessageNano.java \
  175. javanano/src/main/java/com/google/protobuf/nano/InternalNano.java \
  176. javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java \
  177. javanano/src/main/java/com/google/protobuf/nano/MapFactories.java \
  178. javanano/src/main/java/com/google/protobuf/nano/ExtendableMessageNano.java \
  179. javanano/src/main/java/com/google/protobuf/nano/MessageNanoPrinter.java \
  180. javanano/src/test/java/com/google/protobuf/nano/unittest_accessors_nano.proto \
  181. javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_nano.proto \
  182. javanano/src/test/java/com/google/protobuf/nano/unittest_reference_types_nano.proto \
  183. javanano/src/test/java/com/google/protobuf/nano/unittest_extension_repeated_nano.proto \
  184. javanano/src/test/java/com/google/protobuf/nano/unittest_has_nano.proto \
  185. javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto \
  186. javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nameclash_nano.proto \
  187. javanano/src/test/java/com/google/protobuf/nano/unittest_single_nano.proto \
  188. javanano/src/test/java/com/google/protobuf/nano/NanoTest.java \
  189. javanano/src/test/java/com/google/protobuf/nano/unittest_simple_nano.proto \
  190. javanano/src/test/java/com/google/protobuf/nano/unittest_import_nano.proto \
  191. javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_merge_nano.proto \
  192. javanano/src/test/java/com/google/protobuf/nano/unittest_extension_nano.proto \
  193. javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_packables_nano.proto \
  194. javanano/src/test/java/com/google/protobuf/nano/unittest_extension_singular_nano.proto \
  195. javanano/src/test/java/com/google/protobuf/nano/unittest_recursive_nano.proto \
  196. javanano/src/test/java/com/google/protobuf/nano/unittest_extension_packed_nano.proto \
  197. javanano/src/test/java/com/google/protobuf/nano/unittest_enum_validity_nano.proto \
  198. javanano/src/test/java/com/google/protobuf/nano/unittest_stringutf8_nano.proto \
  199. javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nano.proto \
  200. javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_multiple_nano.proto \
  201. javanano/src/test/java/com/google/protobuf/nano/map_test.proto \
  202. javanano/README.md \
  203. javanano/pom.xml
  204. objectivec_EXTRA_DIST= \
  205. objectivec/DevTools/check_version_stamps.sh \
  206. objectivec/DevTools/pddm.py \
  207. objectivec/DevTools/pddm_tests.py \
  208. objectivec/generate_descriptors_proto.sh \
  209. objectivec/google/protobuf/Descriptor.pbobjc.h \
  210. objectivec/google/protobuf/Descriptor.pbobjc.m \
  211. objectivec/google/protobuf/Duration.pbobjc.h \
  212. objectivec/google/protobuf/Duration.pbobjc.m \
  213. objectivec/google/protobuf/Timestamp.pbobjc.h \
  214. objectivec/google/protobuf/Timestamp.pbobjc.m \
  215. objectivec/GPBArray.h \
  216. objectivec/GPBArray.m \
  217. objectivec/GPBArray_PackagePrivate.h \
  218. objectivec/GPBBootstrap.h \
  219. objectivec/GPBCodedInputStream.h \
  220. objectivec/GPBCodedInputStream.m \
  221. objectivec/GPBCodedInputStream_PackagePrivate.h \
  222. objectivec/GPBCodedOutputStream.h \
  223. objectivec/GPBCodedOutputStream.m \
  224. objectivec/GPBDescriptor.h \
  225. objectivec/GPBDescriptor.m \
  226. objectivec/GPBDescriptor_PackagePrivate.h \
  227. objectivec/GPBDictionary.h \
  228. objectivec/GPBDictionary.m \
  229. objectivec/GPBDictionary_PackagePrivate.h \
  230. objectivec/GPBExtensionField.h \
  231. objectivec/GPBExtensionField.m \
  232. objectivec/GPBExtensionField_PackagePrivate.h \
  233. objectivec/GPBExtensionRegistry.h \
  234. objectivec/GPBExtensionRegistry.m \
  235. objectivec/GPBField.h \
  236. objectivec/GPBField.m \
  237. objectivec/GPBField_PackagePrivate.h \
  238. objectivec/GPBMessage.h \
  239. objectivec/GPBMessage.m \
  240. objectivec/GPBMessage_PackagePrivate.h \
  241. objectivec/GPBProtocolBuffers.h \
  242. objectivec/GPBProtocolBuffers.m \
  243. objectivec/GPBProtocolBuffers_RuntimeSupport.h \
  244. objectivec/GPBRootObject.h \
  245. objectivec/GPBRootObject.m \
  246. objectivec/GPBRootObject_PackagePrivate.h \
  247. objectivec/GPBTypes.h \
  248. objectivec/GPBUnknownFieldSet.h \
  249. objectivec/GPBUnknownFieldSet.m \
  250. objectivec/GPBUnknownFieldSet_PackagePrivate.h \
  251. objectivec/GPBUtilities.h \
  252. objectivec/GPBUtilities.m \
  253. objectivec/GPBUtilities_PackagePrivate.h \
  254. objectivec/GPBWellKnownTypes.h \
  255. objectivec/GPBWellKnownTypes.m \
  256. objectivec/GPBWireFormat.h \
  257. objectivec/GPBWireFormat.m \
  258. objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \
  259. objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
  260. objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
  261. objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/FFE465CA-0E74-40E8-9F09-500B66B7DCB2.plist \
  262. objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/Info.plist \
  263. objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
  264. objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
  265. objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \
  266. objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
  267. objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
  268. objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
  269. objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
  270. objectivec/Tests/Filter1.txt \
  271. objectivec/Tests/Filter2.txt \
  272. objectivec/Tests/golden_message \
  273. objectivec/Tests/golden_packed_fields_message \
  274. objectivec/Tests/GPBARCUnittestProtos.m \
  275. objectivec/Tests/GPBArrayTests.m \
  276. objectivec/Tests/GPBCodedInputStreamTests.m \
  277. objectivec/Tests/GPBCodedOuputStreamTests.m \
  278. objectivec/Tests/GPBConcurrencyTests.m \
  279. objectivec/Tests/GPBDescriptorTests.m \
  280. objectivec/Tests/GPBDictionaryTests+Bool.m \
  281. objectivec/Tests/GPBDictionaryTests+Int32.m \
  282. objectivec/Tests/GPBDictionaryTests+Int64.m \
  283. objectivec/Tests/GPBDictionaryTests+String.m \
  284. objectivec/Tests/GPBDictionaryTests+UInt32.m \
  285. objectivec/Tests/GPBDictionaryTests+UInt64.m \
  286. objectivec/Tests/GPBDictionaryTests.pddm \
  287. objectivec/Tests/GPBFilteredMessageTests.m \
  288. objectivec/Tests/GPBMessageTests+Merge.m \
  289. objectivec/Tests/GPBMessageTests+Runtime.m \
  290. objectivec/Tests/GPBMessageTests+Serialization.m \
  291. objectivec/Tests/GPBMessageTests.m \
  292. objectivec/Tests/GPBPerfTests.m \
  293. objectivec/Tests/GPBStringTests.m \
  294. objectivec/Tests/GPBSwiftTests.swift \
  295. objectivec/Tests/GPBTestUtilities.h \
  296. objectivec/Tests/GPBTestUtilities.m \
  297. objectivec/Tests/GPBUnittestProtos.m \
  298. objectivec/Tests/GPBUnknownFieldSetTest.m \
  299. objectivec/Tests/GPBUtilitiesTests.m \
  300. objectivec/Tests/GPBWellKnownTypesTest.m \
  301. objectivec/Tests/GPBWireFormatTests.m \
  302. objectivec/Tests/iOSTestHarness/AppDelegate.m \
  303. objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings \
  304. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.json \
  305. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png \
  306. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6@2x.png \
  307. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png \
  308. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7@2x.png \
  309. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png \
  310. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6@2x.png \
  311. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7@2x.png \
  312. objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7@3x.png \
  313. objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Contents.json \
  314. objectivec/Tests/iOSTestHarness/Info.plist \
  315. objectivec/Tests/iOSTestHarness/LaunchScreen.xib \
  316. objectivec/Tests/text_format_map_unittest_data.txt \
  317. objectivec/Tests/text_format_unittest_data.txt \
  318. objectivec/Tests/unittest_cycle.proto \
  319. objectivec/Tests/unittest_filter.proto \
  320. objectivec/Tests/unittest_name_mangling.proto \
  321. objectivec/Tests/unittest_objc.proto \
  322. objectivec/Tests/unittest_runtime_proto2.proto \
  323. objectivec/Tests/unittest_runtime_proto3.proto \
  324. objectivec/Tests/UnitTests-Bridging-Header.h \
  325. objectivec/Tests/UnitTests-Info.plist \
  326. Protobuf.podspec
  327. python_EXTRA_DIST= \
  328. python/google/protobuf/internal/api_implementation.cc \
  329. python/google/protobuf/internal/api_implementation.py \
  330. python/google/protobuf/internal/containers.py \
  331. python/google/protobuf/internal/decoder.py \
  332. python/google/protobuf/internal/descriptor_database_test.py \
  333. python/google/protobuf/internal/descriptor_pool_test.py \
  334. python/google/protobuf/internal/descriptor_pool_test1.proto \
  335. python/google/protobuf/internal/descriptor_pool_test2.proto \
  336. python/google/protobuf/internal/descriptor_test.py \
  337. python/google/protobuf/internal/encoder.py \
  338. python/google/protobuf/internal/enum_type_wrapper.py \
  339. python/google/protobuf/internal/factory_test1.proto \
  340. python/google/protobuf/internal/factory_test2.proto \
  341. python/google/protobuf/internal/generator_test.py \
  342. python/google/protobuf/internal/message_factory_test.py \
  343. python/google/protobuf/internal/message_listener.py \
  344. python/google/protobuf/internal/message_test.py \
  345. python/google/protobuf/internal/missing_enum_values.proto \
  346. python/google/protobuf/internal/more_extensions.proto \
  347. python/google/protobuf/internal/more_extensions_dynamic.proto \
  348. python/google/protobuf/internal/more_messages.proto \
  349. python/google/protobuf/internal/_parameterized.py \
  350. python/google/protobuf/internal/proto_builder_test.py \
  351. python/google/protobuf/internal/python_message.py \
  352. python/google/protobuf/internal/reflection_test.py \
  353. python/google/protobuf/internal/service_reflection_test.py \
  354. python/google/protobuf/internal/symbol_database_test.py \
  355. python/google/protobuf/internal/test_bad_identifiers.proto \
  356. python/google/protobuf/internal/test_util.py \
  357. python/google/protobuf/internal/text_encoding_test.py \
  358. python/google/protobuf/internal/text_format_test.py \
  359. python/google/protobuf/internal/type_checkers.py \
  360. python/google/protobuf/internal/unknown_fields_test.py \
  361. python/google/protobuf/internal/wire_format.py \
  362. python/google/protobuf/internal/wire_format_test.py \
  363. python/google/protobuf/internal/__init__.py \
  364. python/google/protobuf/internal/import_test_package/__init__.py \
  365. python/google/protobuf/internal/import_test_package/inner.proto \
  366. python/google/protobuf/internal/import_test_package/outer.proto \
  367. python/google/protobuf/pyext/README \
  368. python/google/protobuf/pyext/cpp_message.py \
  369. python/google/protobuf/pyext/descriptor.h \
  370. python/google/protobuf/pyext/descriptor.cc \
  371. python/google/protobuf/pyext/descriptor_pool.h \
  372. python/google/protobuf/pyext/descriptor_pool.cc \
  373. python/google/protobuf/pyext/descriptor_containers.h \
  374. python/google/protobuf/pyext/descriptor_containers.cc \
  375. python/google/protobuf/pyext/extension_dict.h \
  376. python/google/protobuf/pyext/extension_dict.cc \
  377. python/google/protobuf/pyext/message.h \
  378. python/google/protobuf/pyext/message.cc \
  379. python/google/protobuf/pyext/proto2_api_test.proto \
  380. python/google/protobuf/pyext/python.proto \
  381. python/google/protobuf/pyext/python_protobuf.h \
  382. python/google/protobuf/pyext/repeated_composite_container.h \
  383. python/google/protobuf/pyext/repeated_composite_container.cc \
  384. python/google/protobuf/pyext/repeated_scalar_container.h \
  385. python/google/protobuf/pyext/repeated_scalar_container.cc \
  386. python/google/protobuf/pyext/scoped_pyobject_ptr.h \
  387. python/google/protobuf/pyext/__init__.py \
  388. python/google/protobuf/descriptor.py \
  389. python/google/protobuf/descriptor_database.py \
  390. python/google/protobuf/descriptor_pool.py \
  391. python/google/protobuf/message.py \
  392. python/google/protobuf/message_factory.py \
  393. python/google/protobuf/proto_builder.py \
  394. python/google/protobuf/reflection.py \
  395. python/google/protobuf/service.py \
  396. python/google/protobuf/service_reflection.py \
  397. python/google/protobuf/symbol_database.py \
  398. python/google/protobuf/text_encoding.py \
  399. python/google/protobuf/text_format.py \
  400. python/google/protobuf/__init__.py \
  401. python/google/__init__.py \
  402. python/ez_setup.py \
  403. python/setup.py \
  404. python/mox.py \
  405. python/stubout.py \
  406. python/README.md
  407. ruby_EXTRA_DIST= \
  408. ruby/README.md \
  409. ruby/Rakefile \
  410. ruby/ext/google/protobuf_c/defs.c \
  411. ruby/ext/google/protobuf_c/encode_decode.c \
  412. ruby/ext/google/protobuf_c/extconf.rb \
  413. ruby/ext/google/protobuf_c/map.c \
  414. ruby/ext/google/protobuf_c/message.c \
  415. ruby/ext/google/protobuf_c/protobuf.c \
  416. ruby/ext/google/protobuf_c/protobuf.h \
  417. ruby/ext/google/protobuf_c/repeated_field.c \
  418. ruby/ext/google/protobuf_c/storage.c \
  419. ruby/ext/google/protobuf_c/upb.c \
  420. ruby/ext/google/protobuf_c/upb.h \
  421. ruby/google-protobuf.gemspec \
  422. ruby/lib/google/protobuf.rb \
  423. ruby/tests/basic.rb \
  424. ruby/tests/stress.rb \
  425. ruby/tests/generated_code.proto \
  426. ruby/tests/generated_code.rb \
  427. ruby/tests/generated_code_test.rb
  428. all_EXTRA_DIST=$(java_EXTRA_DIST) $(javanano_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST)
  429. EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
  430. autogen.sh \
  431. generate_descriptor_proto.sh \
  432. README.md \
  433. INSTALL.txt \
  434. LICENSE \
  435. CONTRIBUTORS.txt \
  436. CHANGES.txt \
  437. config.h.include \
  438. editors/README.txt \
  439. editors/proto.vim \
  440. editors/protobuf-mode.el \
  441. vsprojects/config.h \
  442. vsprojects/google/protobuf/stubs/pbconfig.h \
  443. vsprojects/extract_includes.bat \
  444. vsprojects/libprotobuf.vcproj \
  445. vsprojects/libprotobuf-lite.vcproj \
  446. vsprojects/libprotoc.vcproj \
  447. vsprojects/protobuf.sln \
  448. vsprojects/protoc.vcproj \
  449. vsprojects/readme.txt \
  450. vsprojects/test_plugin.vcproj \
  451. vsprojects/tests.vcproj \
  452. vsprojects/lite-test.vcproj \
  453. vsprojects/convert2008to2005.sh \
  454. examples/README.txt \
  455. examples/Makefile \
  456. examples/addressbook.proto \
  457. examples/add_person.cc \
  458. examples/list_people.cc \
  459. examples/AddPerson.java \
  460. examples/ListPeople.java \
  461. examples/add_person.py \
  462. examples/list_people.py
  463. # Deletes all the files generated by autogen.sh.
  464. MAINTAINERCLEANFILES = \
  465. aclocal.m4 \
  466. config.guess \
  467. config.sub \
  468. configure \
  469. depcomp \
  470. install-sh \
  471. ltmain.sh \
  472. Makefile.in \
  473. missing \
  474. mkinstalldirs \
  475. config.h.in \
  476. stamp.h.in \
  477. m4/ltsugar.m4 \
  478. m4/libtool.m4 \
  479. m4/ltversion.m4 \
  480. m4/lt~obsolete.m4 \
  481. m4/ltoptions.m4