Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame^] | 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 |
| 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 objectivec/DevTools; then \ |
| 40 | echo "Cleaning any ObjC pyc files"; \ |
| 41 | rm -f objectivec/DevTools/*.pyc; \ |
| 42 | fi |
| 43 | |
| 44 | pkgconfigdir = $(libdir)/pkgconfig |
| 45 | pkgconfig_DATA = protobuf.pc protobuf-lite.pc |
| 46 | |
| 47 | csharp_EXTRA_DIST= \ |
| 48 | csharp/.gitignore \ |
| 49 | csharp/CHANGES.txt \ |
| 50 | csharp/README.md \ |
| 51 | csharp/build_packages.bat \ |
| 52 | csharp/buildall.sh \ |
| 53 | csharp/generate_protos.sh \ |
| 54 | csharp/keys/Google.Protobuf.public.snk \ |
| 55 | csharp/keys/README.md \ |
| 56 | csharp/protos/unittest_issues.proto \ |
| 57 | csharp/src/AddressBook/AddPerson.cs \ |
| 58 | csharp/src/AddressBook/AddressBook.csproj \ |
| 59 | csharp/src/AddressBook/Addressbook.cs \ |
| 60 | csharp/src/AddressBook/ListPeople.cs \ |
| 61 | csharp/src/AddressBook/Program.cs \ |
| 62 | csharp/src/AddressBook/Properties/AssemblyInfo.cs \ |
| 63 | csharp/src/AddressBook/SampleUsage.cs \ |
| 64 | csharp/src/AddressBook/app.config \ |
| 65 | csharp/src/Google.Protobuf.Conformance/App.config \ |
| 66 | csharp/src/Google.Protobuf.Conformance/Conformance.cs \ |
| 67 | csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj \ |
| 68 | csharp/src/Google.Protobuf.Conformance/Program.cs \ |
| 69 | csharp/src/Google.Protobuf.Conformance/Properties/AssemblyInfo.cs \ |
| 70 | csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \ |
| 71 | csharp/src/Google.Protobuf.JsonDump/Program.cs \ |
| 72 | csharp/src/Google.Protobuf.JsonDump/Properties/AssemblyInfo.cs \ |
| 73 | csharp/src/Google.Protobuf.JsonDump/app.config \ |
| 74 | csharp/src/Google.Protobuf.Test/ByteStringTest.cs \ |
| 75 | csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \ |
| 76 | csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \ |
| 77 | csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \ |
| 78 | csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \ |
| 79 | csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \ |
| 80 | csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \ |
| 81 | csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs \ |
| 82 | csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \ |
| 83 | csharp/src/Google.Protobuf.Test/EqualityTester.cs \ |
| 84 | csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \ |
| 85 | csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \ |
| 86 | csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \ |
| 87 | csharp/src/Google.Protobuf.Test/IssuesTest.cs \ |
| 88 | csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \ |
| 89 | csharp/src/Google.Protobuf.Test/JsonParserTest.cs \ |
| 90 | csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs \ |
| 91 | csharp/src/Google.Protobuf.Test/Properties/AppManifest.xml \ |
| 92 | csharp/src/Google.Protobuf.Test/Properties/AssemblyInfo.cs \ |
| 93 | csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \ |
| 94 | csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs \ |
| 95 | csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs \ |
| 96 | csharp/src/Google.Protobuf.Test/SampleEnum.cs \ |
| 97 | csharp/src/Google.Protobuf.Test/SampleMessages.cs \ |
| 98 | csharp/src/Google.Protobuf.Test/TestCornerCases.cs \ |
| 99 | csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs \ |
| 100 | csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs \ |
| 101 | csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs \ |
| 102 | csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs \ |
| 103 | csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs \ |
| 104 | csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs \ |
| 105 | csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \ |
| 106 | csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \ |
| 107 | csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \ |
| 108 | csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \ |
| 109 | csharp/src/Google.Protobuf.Test/packages.config \ |
| 110 | csharp/src/Google.Protobuf.sln \ |
| 111 | csharp/src/Google.Protobuf/ByteArray.cs \ |
| 112 | csharp/src/Google.Protobuf/ByteString.cs \ |
| 113 | csharp/src/Google.Protobuf/CodedInputStream.cs \ |
| 114 | csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \ |
| 115 | csharp/src/Google.Protobuf/CodedOutputStream.cs \ |
| 116 | csharp/src/Google.Protobuf/Collections/MapField.cs \ |
| 117 | csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \ |
| 118 | csharp/src/Google.Protobuf/Collections/RepeatedField.cs \ |
| 119 | csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \ |
| 120 | csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \ |
| 121 | csharp/src/Google.Protobuf/FieldCodec.cs \ |
| 122 | csharp/src/Google.Protobuf/FrameworkPortability.cs \ |
| 123 | csharp/src/Google.Protobuf/Google.Protobuf.csproj \ |
| 124 | csharp/src/Google.Protobuf/Google.Protobuf.nuspec \ |
| 125 | csharp/src/Google.Protobuf/IDeepCloneable.cs \ |
| 126 | csharp/src/Google.Protobuf/IMessage.cs \ |
| 127 | csharp/src/Google.Protobuf/InvalidJsonException.cs \ |
| 128 | csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \ |
| 129 | csharp/src/Google.Protobuf/JsonFormatter.cs \ |
| 130 | csharp/src/Google.Protobuf/JsonParser.cs \ |
| 131 | csharp/src/Google.Protobuf/JsonToken.cs \ |
| 132 | csharp/src/Google.Protobuf/JsonTokenizer.cs \ |
| 133 | csharp/src/Google.Protobuf/LimitedInputStream.cs \ |
| 134 | csharp/src/Google.Protobuf/MessageExtensions.cs \ |
| 135 | csharp/src/Google.Protobuf/MessageParser.cs \ |
| 136 | csharp/src/Google.Protobuf/ProtoPreconditions.cs \ |
| 137 | csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \ |
| 138 | csharp/src/Google.Protobuf/Reflection/Descriptor.cs \ |
| 139 | csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \ |
| 140 | csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \ |
| 141 | csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \ |
| 142 | csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \ |
| 143 | csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \ |
| 144 | csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \ |
| 145 | csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \ |
| 146 | csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \ |
| 147 | csharp/src/Google.Protobuf/Reflection/FieldType.cs \ |
| 148 | csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \ |
| 149 | csharp/src/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs \ |
| 150 | csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \ |
| 151 | csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \ |
| 152 | csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \ |
| 153 | csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \ |
| 154 | csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \ |
| 155 | csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \ |
| 156 | csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \ |
| 157 | csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \ |
| 158 | csharp/src/Google.Protobuf/Reflection/PartialClasses.cs \ |
| 159 | csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \ |
| 160 | csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \ |
| 161 | csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \ |
| 162 | csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \ |
| 163 | csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs \ |
| 164 | csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \ |
| 165 | csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \ |
| 166 | csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \ |
| 167 | csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \ |
| 168 | csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \ |
| 169 | csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \ |
| 170 | csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \ |
| 171 | csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \ |
| 172 | csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \ |
| 173 | csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \ |
| 174 | csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \ |
| 175 | csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \ |
| 176 | csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \ |
| 177 | csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs \ |
| 178 | csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \ |
| 179 | csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs \ |
| 180 | csharp/src/Google.Protobuf/WireFormat.cs \ |
| 181 | csharp/src/Google.Protobuf/packages.config \ |
| 182 | csharp/src/packages/repositories.config |
| 183 | |
| 184 | java_EXTRA_DIST= \ |
| 185 | java/README.md \ |
| 186 | java/core/generate-sources-build.xml \ |
| 187 | java/core/generate-test-sources-build.xml \ |
| 188 | java/core/pom.xml \ |
| 189 | java/core/src/main/java/com/google/protobuf/AbstractMessage.java \ |
| 190 | java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java \ |
| 191 | java/core/src/main/java/com/google/protobuf/AbstractParser.java \ |
| 192 | java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java \ |
| 193 | java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java \ |
| 194 | java/core/src/main/java/com/google/protobuf/BlockingService.java \ |
| 195 | java/core/src/main/java/com/google/protobuf/BooleanArrayList.java \ |
| 196 | java/core/src/main/java/com/google/protobuf/ByteString.java \ |
| 197 | java/core/src/main/java/com/google/protobuf/CodedInputStream.java \ |
| 198 | java/core/src/main/java/com/google/protobuf/CodedOutputStream.java \ |
| 199 | java/core/src/main/java/com/google/protobuf/Descriptors.java \ |
| 200 | java/core/src/main/java/com/google/protobuf/DoubleArrayList.java \ |
| 201 | java/core/src/main/java/com/google/protobuf/DynamicMessage.java \ |
| 202 | java/core/src/main/java/com/google/protobuf/Extension.java \ |
| 203 | java/core/src/main/java/com/google/protobuf/ExtensionLite.java \ |
| 204 | java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java \ |
| 205 | java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \ |
| 206 | java/core/src/main/java/com/google/protobuf/FieldSet.java \ |
| 207 | java/core/src/main/java/com/google/protobuf/FloatArrayList.java \ |
| 208 | java/core/src/main/java/com/google/protobuf/GeneratedMessage.java \ |
| 209 | java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java \ |
| 210 | java/core/src/main/java/com/google/protobuf/IntArrayList.java \ |
| 211 | java/core/src/main/java/com/google/protobuf/Internal.java \ |
| 212 | java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \ |
| 213 | java/core/src/main/java/com/google/protobuf/LazyField.java \ |
| 214 | java/core/src/main/java/com/google/protobuf/LazyFieldLite.java \ |
| 215 | java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java \ |
| 216 | java/core/src/main/java/com/google/protobuf/LazyStringList.java \ |
| 217 | java/core/src/main/java/com/google/protobuf/LongArrayList.java \ |
| 218 | java/core/src/main/java/com/google/protobuf/MapEntry.java \ |
| 219 | java/core/src/main/java/com/google/protobuf/MapEntryLite.java \ |
| 220 | java/core/src/main/java/com/google/protobuf/MapField.java \ |
| 221 | java/core/src/main/java/com/google/protobuf/MapFieldLite.java \ |
| 222 | java/core/src/main/java/com/google/protobuf/Message.java \ |
| 223 | java/core/src/main/java/com/google/protobuf/MessageLite.java \ |
| 224 | java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \ |
| 225 | java/core/src/main/java/com/google/protobuf/MessageLiteToString.java \ |
| 226 | java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java \ |
| 227 | java/core/src/main/java/com/google/protobuf/MessageReflection.java \ |
| 228 | java/core/src/main/java/com/google/protobuf/MutabilityOracle.java \ |
| 229 | java/core/src/main/java/com/google/protobuf/NioByteString.java \ |
| 230 | java/core/src/main/java/com/google/protobuf/Parser.java \ |
| 231 | java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java \ |
| 232 | java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \ |
| 233 | java/core/src/main/java/com/google/protobuf/ProtocolStringList.java \ |
| 234 | java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \ |
| 235 | java/core/src/main/java/com/google/protobuf/RopeByteString.java \ |
| 236 | java/core/src/main/java/com/google/protobuf/RpcCallback.java \ |
| 237 | java/core/src/main/java/com/google/protobuf/RpcChannel.java \ |
| 238 | java/core/src/main/java/com/google/protobuf/RpcController.java \ |
| 239 | java/core/src/main/java/com/google/protobuf/RpcUtil.java \ |
| 240 | java/core/src/main/java/com/google/protobuf/Service.java \ |
| 241 | java/core/src/main/java/com/google/protobuf/ServiceException.java \ |
| 242 | java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java \ |
| 243 | java/core/src/main/java/com/google/protobuf/SmallSortedMap.java \ |
| 244 | java/core/src/main/java/com/google/protobuf/TextFormat.java \ |
| 245 | java/core/src/main/java/com/google/protobuf/TextFormatEscaper.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/ByteStringTest.java \ |
| 258 | java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java \ |
| 259 | java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java \ |
| 260 | java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \ |
| 261 | java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \ |
| 262 | java/core/src/test/java/com/google/protobuf/DescriptorsTest.java \ |
| 263 | java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java \ |
| 264 | java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java \ |
| 265 | java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java \ |
| 266 | java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java \ |
| 267 | java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \ |
| 268 | java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java \ |
| 269 | java/core/src/test/java/com/google/protobuf/IntArrayListTest.java \ |
| 270 | java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java \ |
| 271 | java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \ |
| 272 | java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \ |
| 273 | java/core/src/test/java/com/google/protobuf/LazyFieldTest.java \ |
| 274 | java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \ |
| 275 | java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \ |
| 276 | java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \ |
| 277 | java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \ |
| 278 | java/core/src/test/java/com/google/protobuf/LiteTest.java \ |
| 279 | java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java \ |
| 280 | java/core/src/test/java/com/google/protobuf/LongArrayListTest.java \ |
| 281 | java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \ |
| 282 | java/core/src/test/java/com/google/protobuf/MapForProto2Test.java \ |
| 283 | java/core/src/test/java/com/google/protobuf/MapTest.java \ |
| 284 | java/core/src/test/java/com/google/protobuf/MessageTest.java \ |
| 285 | java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java \ |
| 286 | java/core/src/test/java/com/google/protobuf/NioByteStringTest.java \ |
| 287 | java/core/src/test/java/com/google/protobuf/ParserTest.java \ |
| 288 | java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \ |
| 289 | java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \ |
| 290 | java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \ |
| 291 | java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java \ |
| 292 | java/core/src/test/java/com/google/protobuf/ServiceTest.java \ |
| 293 | java/core/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \ |
| 294 | java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java \ |
| 295 | java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java \ |
| 296 | java/core/src/test/java/com/google/protobuf/TestUtil.java \ |
| 297 | java/core/src/test/java/com/google/protobuf/TextFormatTest.java \ |
| 298 | java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \ |
| 299 | java/core/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \ |
| 300 | java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \ |
| 301 | java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \ |
| 302 | java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java \ |
| 303 | java/core/src/test/java/com/google/protobuf/WireFormatTest.java \ |
| 304 | java/core/src/test/proto/com/google/protobuf/any_test.proto \ |
| 305 | java/core/src/test/proto/com/google/protobuf/field_presence_test.proto \ |
| 306 | java/core/src/test/proto/com/google/protobuf/lazy_fields_lite.proto \ |
| 307 | java/core/src/test/proto/com/google/protobuf/lite_equals_and_hash.proto \ |
| 308 | java/core/src/test/proto/com/google/protobuf/map_for_proto2_lite_test.proto \ |
| 309 | java/core/src/test/proto/com/google/protobuf/map_for_proto2_test.proto \ |
| 310 | java/core/src/test/proto/com/google/protobuf/map_initialization_order_test.proto \ |
| 311 | java/core/src/test/proto/com/google/protobuf/map_test.proto \ |
| 312 | java/core/src/test/proto/com/google/protobuf/multiple_files_test.proto \ |
| 313 | java/core/src/test/proto/com/google/protobuf/nested_builders_test.proto \ |
| 314 | java/core/src/test/proto/com/google/protobuf/nested_extension.proto \ |
| 315 | java/core/src/test/proto/com/google/protobuf/nested_extension_lite.proto \ |
| 316 | java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto \ |
| 317 | java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto \ |
| 318 | java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto \ |
| 319 | java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto \ |
| 320 | java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto \ |
| 321 | java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto \ |
| 322 | java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto \ |
| 323 | java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto \ |
| 324 | java/core/src/test/proto/com/google/protobuf/test_custom_options.proto \ |
| 325 | java/core/src/test/proto/com/google/protobuf/test_extra_interfaces.proto \ |
| 326 | java/lite/pom.xml \ |
| 327 | java/pom.xml \ |
| 328 | java/util/pom.xml \ |
| 329 | java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java \ |
| 330 | java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java \ |
| 331 | java/util/src/main/java/com/google/protobuf/util/JsonFormat.java \ |
| 332 | java/util/src/main/java/com/google/protobuf/util/TimeUtil.java \ |
| 333 | java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java \ |
| 334 | java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java \ |
| 335 | java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java \ |
| 336 | java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java \ |
| 337 | java/util/src/test/proto/com/google/protobuf/util/json_test.proto |
| 338 | |
| 339 | javanano_EXTRA_DIST= \ |
| 340 | javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java \ |
| 341 | javanano/src/main/java/com/google/protobuf/nano/FieldData.java \ |
| 342 | javanano/src/main/java/com/google/protobuf/nano/FieldArray.java \ |
| 343 | javanano/src/main/java/com/google/protobuf/nano/WireFormatNano.java \ |
| 344 | javanano/src/main/java/com/google/protobuf/nano/Extension.java \ |
| 345 | javanano/src/main/java/com/google/protobuf/nano/CodedInputByteBufferNano.java \ |
| 346 | javanano/src/main/java/com/google/protobuf/nano/UnknownFieldData.java \ |
| 347 | javanano/src/main/java/com/google/protobuf/nano/MessageNano.java \ |
| 348 | javanano/src/main/java/com/google/protobuf/nano/InternalNano.java \ |
| 349 | javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java \ |
| 350 | javanano/src/main/java/com/google/protobuf/nano/MapFactories.java \ |
| 351 | javanano/src/main/java/com/google/protobuf/nano/ExtendableMessageNano.java \ |
| 352 | javanano/src/main/java/com/google/protobuf/nano/MessageNanoPrinter.java \ |
| 353 | javanano/src/test/java/com/google/protobuf/nano/unittest_accessors_nano.proto \ |
| 354 | javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_nano.proto \ |
| 355 | javanano/src/test/java/com/google/protobuf/nano/unittest_reference_types_nano.proto \ |
| 356 | javanano/src/test/java/com/google/protobuf/nano/unittest_extension_repeated_nano.proto \ |
| 357 | javanano/src/test/java/com/google/protobuf/nano/unittest_has_nano.proto \ |
| 358 | javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto \ |
| 359 | javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nameclash_nano.proto \ |
| 360 | javanano/src/test/java/com/google/protobuf/nano/unittest_single_nano.proto \ |
| 361 | javanano/src/test/java/com/google/protobuf/nano/NanoTest.java \ |
| 362 | javanano/src/test/java/com/google/protobuf/nano/unittest_simple_nano.proto \ |
| 363 | javanano/src/test/java/com/google/protobuf/nano/unittest_import_nano.proto \ |
| 364 | javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_merge_nano.proto \ |
| 365 | javanano/src/test/java/com/google/protobuf/nano/unittest_extension_nano.proto \ |
| 366 | javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_packables_nano.proto \ |
| 367 | javanano/src/test/java/com/google/protobuf/nano/unittest_extension_singular_nano.proto \ |
| 368 | javanano/src/test/java/com/google/protobuf/nano/unittest_recursive_nano.proto \ |
| 369 | javanano/src/test/java/com/google/protobuf/nano/unittest_extension_packed_nano.proto \ |
| 370 | javanano/src/test/java/com/google/protobuf/nano/unittest_enum_validity_nano.proto \ |
| 371 | javanano/src/test/java/com/google/protobuf/nano/unittest_stringutf8_nano.proto \ |
| 372 | javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nano.proto \ |
| 373 | javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_multiple_nano.proto \ |
| 374 | javanano/src/test/java/com/google/protobuf/nano/map_test.proto \ |
| 375 | javanano/README.md \ |
| 376 | javanano/pom.xml |
| 377 | |
| 378 | objectivec_EXTRA_DIST= \ |
| 379 | objectivec/DevTools/check_version_stamps.sh \ |
| 380 | objectivec/DevTools/compile_testing_protos.sh \ |
| 381 | objectivec/DevTools/full_mac_build.sh \ |
| 382 | objectivec/DevTools/pddm.py \ |
| 383 | objectivec/DevTools/pddm_tests.py \ |
| 384 | objectivec/generate_descriptors_proto.sh \ |
| 385 | objectivec/google/protobuf/Any.pbobjc.h \ |
| 386 | objectivec/google/protobuf/Any.pbobjc.m \ |
| 387 | objectivec/google/protobuf/Api.pbobjc.h \ |
| 388 | objectivec/google/protobuf/Api.pbobjc.m \ |
| 389 | objectivec/google/protobuf/Descriptor.pbobjc.h \ |
| 390 | objectivec/google/protobuf/Descriptor.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/GPBDescriptor.h \ |
| 417 | objectivec/GPBDescriptor.m \ |
| 418 | objectivec/GPBDescriptor_PackagePrivate.h \ |
| 419 | objectivec/GPBDictionary.h \ |
| 420 | objectivec/GPBDictionary.m \ |
| 421 | objectivec/GPBDictionary_PackagePrivate.h \ |
| 422 | objectivec/GPBExtensionInternals.h \ |
| 423 | objectivec/GPBExtensionInternals.m \ |
| 424 | objectivec/GPBExtensionRegistry.h \ |
| 425 | objectivec/GPBExtensionRegistry.m \ |
| 426 | objectivec/GPBMessage.h \ |
| 427 | objectivec/GPBMessage.m \ |
| 428 | objectivec/GPBMessage_PackagePrivate.h \ |
| 429 | objectivec/GPBProtocolBuffers.h \ |
| 430 | objectivec/GPBProtocolBuffers.m \ |
| 431 | objectivec/GPBProtocolBuffers_RuntimeSupport.h \ |
| 432 | objectivec/GPBRootObject.h \ |
| 433 | objectivec/GPBRootObject.m \ |
| 434 | objectivec/GPBRootObject_PackagePrivate.h \ |
| 435 | objectivec/GPBRuntimeTypes.h \ |
| 436 | objectivec/GPBUnknownField.h \ |
| 437 | objectivec/GPBUnknownField.m \ |
| 438 | objectivec/GPBUnknownField_PackagePrivate.h \ |
| 439 | objectivec/GPBUnknownFieldSet.h \ |
| 440 | objectivec/GPBUnknownFieldSet.m \ |
| 441 | objectivec/GPBUnknownFieldSet_PackagePrivate.h \ |
| 442 | objectivec/GPBUtilities.h \ |
| 443 | objectivec/GPBUtilities.m \ |
| 444 | objectivec/GPBUtilities_PackagePrivate.h \ |
| 445 | objectivec/GPBWellKnownTypes.h \ |
| 446 | objectivec/GPBWellKnownTypes.m \ |
| 447 | objectivec/GPBWireFormat.h \ |
| 448 | objectivec/GPBWireFormat.m \ |
| 449 | objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \ |
| 450 | objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ |
| 451 | objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ |
| 452 | objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/FFE465CA-0E74-40E8-9F09-500B66B7DCB2.plist \ |
| 453 | objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/Info.plist \ |
| 454 | objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ |
| 455 | objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ |
| 456 | objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \ |
| 457 | objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ |
| 458 | objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ |
| 459 | objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ |
| 460 | objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ |
| 461 | objectivec/README.md \ |
| 462 | objectivec/Tests/golden_message \ |
| 463 | objectivec/Tests/golden_packed_fields_message \ |
| 464 | objectivec/Tests/GPBARCUnittestProtos.m \ |
| 465 | objectivec/Tests/GPBArrayTests.m \ |
| 466 | objectivec/Tests/GPBCodedInputStreamTests.m \ |
| 467 | objectivec/Tests/GPBCodedOuputStreamTests.m \ |
| 468 | objectivec/Tests/GPBConcurrencyTests.m \ |
| 469 | objectivec/Tests/GPBDescriptorTests.m \ |
| 470 | objectivec/Tests/GPBDictionaryTests+Bool.m \ |
| 471 | objectivec/Tests/GPBDictionaryTests+Int32.m \ |
| 472 | objectivec/Tests/GPBDictionaryTests+Int64.m \ |
| 473 | objectivec/Tests/GPBDictionaryTests+String.m \ |
| 474 | objectivec/Tests/GPBDictionaryTests+UInt32.m \ |
| 475 | objectivec/Tests/GPBDictionaryTests+UInt64.m \ |
| 476 | objectivec/Tests/GPBDictionaryTests.pddm \ |
| 477 | objectivec/Tests/GPBMessageTests+Merge.m \ |
| 478 | objectivec/Tests/GPBMessageTests+Runtime.m \ |
| 479 | objectivec/Tests/GPBMessageTests+Serialization.m \ |
| 480 | objectivec/Tests/GPBMessageTests.m \ |
| 481 | objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \ |
| 482 | objectivec/Tests/GPBPerfTests.m \ |
| 483 | objectivec/Tests/GPBSwiftTests.swift \ |
| 484 | objectivec/Tests/GPBTestUtilities.h \ |
| 485 | objectivec/Tests/GPBTestUtilities.m \ |
| 486 | objectivec/Tests/GPBUnittestProtos.m \ |
| 487 | objectivec/Tests/GPBUnknownFieldSetTest.m \ |
| 488 | objectivec/Tests/GPBUtilitiesTests.m \ |
| 489 | objectivec/Tests/GPBWellKnownTypesTest.m \ |
| 490 | objectivec/Tests/GPBWireFormatTests.m \ |
| 491 | objectivec/Tests/iOSTestHarness/AppDelegate.m \ |
| 492 | objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings \ |
| 493 | objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.json \ |
| 494 | objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png \ |
| 495 | objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6_2x.png \ |
| 496 | objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png \ |
| 497 | objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7_2x.png \ |
| 498 | objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png \ |
| 499 | objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6_2x.png \ |
| 500 | objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_2x.png \ |
| 501 | objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_3x.png \ |
| 502 | objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Contents.json \ |
| 503 | objectivec/Tests/iOSTestHarness/Info.plist \ |
| 504 | objectivec/Tests/iOSTestHarness/LaunchScreen.xib \ |
| 505 | objectivec/Tests/text_format_map_unittest_data.txt \ |
| 506 | objectivec/Tests/text_format_unittest_data.txt \ |
| 507 | objectivec/Tests/unittest_cycle.proto \ |
| 508 | objectivec/Tests/unittest_objc.proto \ |
| 509 | objectivec/Tests/unittest_objc_startup.proto \ |
| 510 | objectivec/Tests/unittest_runtime_proto2.proto \ |
| 511 | objectivec/Tests/unittest_runtime_proto3.proto \ |
| 512 | objectivec/Tests/UnitTests-Bridging-Header.h \ |
| 513 | objectivec/Tests/UnitTests-Info.plist \ |
| 514 | Protobuf.podspec |
| 515 | |
| 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 | |
| 612 | ruby_EXTRA_DIST= \ |
| 613 | ruby/Gemfile \ |
| 614 | ruby/Gemfile.lock \ |
| 615 | ruby/.gitignore \ |
| 616 | ruby/README.md \ |
| 617 | ruby/Rakefile \ |
| 618 | ruby/ext/google/protobuf_c/defs.c \ |
| 619 | ruby/ext/google/protobuf_c/encode_decode.c \ |
| 620 | ruby/ext/google/protobuf_c/extconf.rb \ |
| 621 | ruby/ext/google/protobuf_c/map.c \ |
| 622 | ruby/ext/google/protobuf_c/message.c \ |
| 623 | ruby/ext/google/protobuf_c/protobuf.c \ |
| 624 | ruby/ext/google/protobuf_c/protobuf.h \ |
| 625 | ruby/ext/google/protobuf_c/repeated_field.c \ |
| 626 | ruby/ext/google/protobuf_c/storage.c \ |
| 627 | ruby/ext/google/protobuf_c/upb.c \ |
| 628 | ruby/ext/google/protobuf_c/upb.h \ |
| 629 | ruby/google-protobuf.gemspec \ |
| 630 | ruby/lib/google/protobuf/message_exts.rb \ |
| 631 | ruby/lib/google/protobuf/repeated_field.rb \ |
| 632 | ruby/lib/google/protobuf.rb \ |
| 633 | ruby/pom.xml \ |
| 634 | ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \ |
| 635 | ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \ |
| 636 | ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \ |
| 637 | ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \ |
| 638 | ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \ |
| 639 | ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \ |
| 640 | ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \ |
| 641 | ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \ |
| 642 | ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \ |
| 643 | ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \ |
| 644 | ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \ |
| 645 | ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \ |
| 646 | ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \ |
| 647 | ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \ |
| 648 | ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \ |
| 649 | ruby/src/main/java/com/google/protobuf/jruby/Utils.java \ |
| 650 | ruby/src/main/java/google/ProtobufJavaService.java \ |
| 651 | ruby/src/main/sentinel.proto \ |
| 652 | ruby/tests/basic.rb \ |
| 653 | ruby/tests/repeated_field_test.rb \ |
| 654 | ruby/tests/stress.rb \ |
| 655 | ruby/tests/generated_code.proto \ |
| 656 | ruby/tests/generated_code.rb \ |
| 657 | ruby/tests/generated_code_test.rb \ |
| 658 | ruby/travis-test.sh |
| 659 | |
| 660 | js_EXTRA_DIST= \ |
| 661 | js/README.md \ |
| 662 | js/binary/arith.js \ |
| 663 | js/binary/arith_test.js \ |
| 664 | js/binary/constants.js \ |
| 665 | js/binary/decoder.js \ |
| 666 | js/binary/decoder_test.js \ |
| 667 | js/binary/proto_test.js \ |
| 668 | js/binary/reader.js \ |
| 669 | js/binary/reader_test.js \ |
| 670 | js/binary/utils.js \ |
| 671 | js/binary/utils_test.js \ |
| 672 | js/binary/writer.js \ |
| 673 | js/binary/writer_test.js \ |
| 674 | js/data.proto \ |
| 675 | js/debug.js \ |
| 676 | js/debug_test.js \ |
| 677 | js/gulpfile.js \ |
| 678 | js/jasmine.json \ |
| 679 | js/message.js \ |
| 680 | js/message_test.js \ |
| 681 | js/node_loader.js \ |
| 682 | js/package.json \ |
| 683 | js/proto3_test.js \ |
| 684 | js/proto3_test.proto \ |
| 685 | js/test.proto \ |
| 686 | js/test2.proto \ |
| 687 | js/test3.proto \ |
| 688 | js/test4.proto \ |
| 689 | js/test5.proto \ |
| 690 | js/test_bootstrap.js \ |
| 691 | js/testbinary.proto \ |
| 692 | js/testempty.proto |
| 693 | |
| 694 | all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(javanano_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) $(js_EXTRA_DIST) |
| 695 | |
| 696 | EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \ |
| 697 | autogen.sh \ |
| 698 | generate_descriptor_proto.sh \ |
| 699 | README.md \ |
| 700 | LICENSE \ |
| 701 | CONTRIBUTORS.txt \ |
| 702 | CHANGES.txt \ |
| 703 | update_file_lists.sh \ |
| 704 | BUILD \ |
| 705 | gmock.BUILD \ |
| 706 | WORKSPACE \ |
| 707 | cmake/CMakeLists.txt \ |
| 708 | cmake/README.md \ |
| 709 | cmake/extract_includes.bat.in \ |
| 710 | cmake/install.cmake \ |
| 711 | cmake/libprotobuf.cmake \ |
| 712 | cmake/libprotobuf-lite.cmake \ |
| 713 | cmake/libprotoc.cmake \ |
| 714 | cmake/protobuf-config-version.cmake.in \ |
| 715 | cmake/protobuf-config.cmake.in \ |
| 716 | cmake/protobuf-module.cmake.in \ |
| 717 | cmake/protoc.cmake \ |
| 718 | cmake/tests.cmake \ |
| 719 | editors/README.txt \ |
| 720 | editors/proto.vim \ |
| 721 | editors/protobuf-mode.el \ |
| 722 | examples/README.txt \ |
| 723 | examples/Makefile \ |
| 724 | examples/addressbook.proto \ |
| 725 | examples/add_person.cc \ |
| 726 | examples/add_person.go \ |
| 727 | examples/add_person_test.go \ |
| 728 | examples/list_people.cc \ |
| 729 | examples/list_people.go \ |
| 730 | examples/AddPerson.java \ |
| 731 | examples/ListPeople.java \ |
| 732 | examples/add_person.py \ |
| 733 | examples/list_people.py \ |
| 734 | examples/list_people_test.go \ |
| 735 | protobuf.bzl \ |
| 736 | six.BUILD \ |
| 737 | util/python/BUILD |
| 738 | |
| 739 | # Deletes all the files generated by autogen.sh. |
| 740 | MAINTAINERCLEANFILES = \ |
| 741 | aclocal.m4 \ |
| 742 | ar-lib \ |
| 743 | config.guess \ |
| 744 | config.sub \ |
| 745 | configure \ |
| 746 | depcomp \ |
| 747 | install-sh \ |
| 748 | ltmain.sh \ |
| 749 | Makefile.in \ |
| 750 | missing \ |
| 751 | mkinstalldirs \ |
| 752 | config.h.in \ |
| 753 | stamp.h.in \ |
| 754 | m4/ltsugar.m4 \ |
| 755 | m4/libtool.m4 \ |
| 756 | m4/ltversion.m4 \ |
| 757 | m4/lt~obsolete.m4 \ |
| 758 | m4/ltoptions.m4 |