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