1## Process this file with automake to produce Makefile.in
2
3ACLOCAL_AMFLAGS = -I m4
4
5AUTOMAKE_OPTIONS = foreign
6
7# Build . before src so that our all-local and clean-local hooks kicks in at
8# the right time.
9SUBDIRS = . src
10
11# Always include third_party directories in distributions.
12DIST_SUBDIRS = src conformance benchmarks third_party/googletest
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.
19check-local:
20	@echo "Making lib/libgmock.a lib/libgmock_main.a in gmock"
21	@cd third_party/googletest/googletest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la
22	@cd third_party/googletest/googlemock && $(MAKE) $(AM_MAKEFLAGS) lib/libgmock.la lib/libgmock_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.
30clean-local:
31	@if test -e third_party/googletest/Makefile; then \
32	  echo "Making clean in googletest"; \
33	  cd third_party/googletest && $(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
48pkgconfigdir = $(libdir)/pkgconfig
49pkgconfig_DATA = protobuf.pc protobuf-lite.pc
50
51csharp_EXTRA_DIST=                                                           \
52  global.json                                                                \
53  csharp/.gitignore                                                          \
54  csharp/CHANGES.txt                                                         \
55  csharp/Google.Protobuf.Tools.targets                                       \
56  csharp/Google.Protobuf.Tools.nuspec                                        \
57  csharp/README.md                                                           \
58  csharp/build_packages.bat                                                  \
59  csharp/build_tools.sh                                                      \
60  csharp/buildall.bat                                                        \
61  csharp/buildall.sh                                                         \
62  csharp/generate_protos.sh                                                  \
63  csharp/install_dotnet_sdk.ps1                                              \
64  csharp/keys/Google.Protobuf.public.snk                                     \
65  csharp/keys/Google.Protobuf.snk                                            \
66  csharp/keys/README.md                                                      \
67  csharp/protos/README.md                                                    \
68  csharp/protos/map_unittest_proto3.proto                                    \
69  csharp/protos/unittest_custom_options_proto3.proto                         \
70  csharp/protos/unittest_import_public_proto3.proto                          \
71  csharp/protos/unittest_import_proto3.proto                                 \
72  csharp/protos/unittest_issues.proto                                        \
73  csharp/protos/unittest_proto3.proto                                        \
74  csharp/src/AddressBook/AddPerson.cs                                        \
75  csharp/src/AddressBook/Addressbook.cs                                      \
76  csharp/src/AddressBook/AddressBook.csproj                                  \
77  csharp/src/AddressBook/ListPeople.cs                                       \
78  csharp/src/AddressBook/Program.cs                                          \
79  csharp/src/AddressBook/SampleUsage.cs                                      \
80  csharp/src/Google.Protobuf.Benchmarks/SerializationConfig.cs               \
81  csharp/src/Google.Protobuf.Benchmarks/SerializationBenchmark.cs            \
82  csharp/src/Google.Protobuf.Benchmarks/Program.cs                           \
83  csharp/src/Google.Protobuf.Benchmarks/Google.Protobuf.Benchmarks.csproj    \
84  csharp/src/Google.Protobuf.Benchmarks/Benchmarks.cs                        \
85  csharp/src/Google.Protobuf.Benchmarks/BenchmarkMessage1Proto3.cs           \
86  csharp/src/Google.Protobuf.Conformance/Conformance.cs                      \
87  csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj  \
88  csharp/src/Google.Protobuf.Conformance/Program.cs                          \
89  csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj        \
90  csharp/src/Google.Protobuf.JsonDump/Program.cs                             \
91  csharp/src/Google.Protobuf.Test/ByteStringTest.cs                          \
92  csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs              \
93  csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs                    \
94  csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs                   \
95  csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs                \
96  csharp/src/Google.Protobuf.Test/Collections/ProtobufEqualityComparersTest.cs \
97  csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs           \
98  csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \
99  csharp/src/Google.Protobuf.Test/Compatibility/StreamExtensionsTest.cs      \
100  csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs        \
101  csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs                    \
102  csharp/src/Google.Protobuf.Test/EqualityTester.cs                          \
103  csharp/src/Google.Protobuf.Test/FieldCodecTest.cs                          \
104  csharp/src/Google.Protobuf.Test/FieldMaskTreeTest.cs                       \
105  csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs                    \
106  csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj                \
107  csharp/src/Google.Protobuf.Test/IssuesTest.cs                              \
108  csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs                       \
109  csharp/src/Google.Protobuf.Test/JsonParserTest.cs                          \
110  csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs                       \
111  csharp/src/Google.Protobuf.Test/Reflection/CustomOptionsTest.cs            \
112  csharp/src/Google.Protobuf.Test/Reflection/DescriptorDeclarationTest.cs    \
113  csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs              \
114  csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs              \
115  csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs             \
116  csharp/src/Google.Protobuf.Test/SampleEnum.cs                              \
117  csharp/src/Google.Protobuf.Test/SampleMessages.cs                          \
118  csharp/src/Google.Protobuf.Test/SampleNaNs.cs                              \
119  csharp/src/Google.Protobuf.Test/TestCornerCases.cs                         \
120  csharp/src/Google.Protobuf.Test/TestProtos/ForeignMessagePartial.cs        \
121  csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs            \
122  csharp/src/Google.Protobuf.Test/TestProtos/TestMessagesProto3.cs           \
123  csharp/src/Google.Protobuf.Test/TestProtos/UnittestCustomOptionsProto3.cs  \
124  csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs         \
125  csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs   \
126  csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs               \
127  csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs               \
128  csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs       \
129  csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs                  \
130  csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs             \
131  csharp/src/Google.Protobuf.Test/WellKnownTypes/FieldMaskTest.cs            \
132  csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs            \
133  csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs             \
134  csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs                     \
135  csharp/src/Google.Protobuf.Test/testprotos.pb                              \
136  csharp/src/Google.Protobuf.sln                                             \
137  csharp/src/Google.Protobuf/ByteArray.cs                                    \
138  csharp/src/Google.Protobuf/ByteString.cs                                   \
139  csharp/src/Google.Protobuf/CodedInputStream.cs                             \
140  csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs                \
141  csharp/src/Google.Protobuf/CodedOutputStream.cs                            \
142  csharp/src/Google.Protobuf/Collections/Lists.cs                            \
143  csharp/src/Google.Protobuf/Collections/MapField.cs                         \
144  csharp/src/Google.Protobuf/Collections/ProtobufEqualityComparers.cs        \
145  csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs               \
146  csharp/src/Google.Protobuf/Collections/RepeatedField.cs                    \
147  csharp/src/Google.Protobuf/Compatibility/MethodInfoExtensions.cs           \
148  csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs         \
149  csharp/src/Google.Protobuf/Compatibility/StreamExtensions.cs               \
150  csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs                 \
151  csharp/src/Google.Protobuf/Extension.cs                                    \
152  csharp/src/Google.Protobuf/ExtensionRegistry.cs                            \
153  csharp/src/Google.Protobuf/ExtensionSet.cs                                 \
154  csharp/src/Google.Protobuf/ExtensionValue.cs                               \
155  csharp/src/Google.Protobuf/FieldCodec.cs                                   \
156  csharp/src/Google.Protobuf/FieldMaskTree.cs                                \
157  csharp/src/Google.Protobuf/FrameworkPortability.cs                         \
158  csharp/src/Google.Protobuf/Google.Protobuf.csproj                          \
159  csharp/src/Google.Protobuf/ICustomDiagnosticMessage.cs                     \
160  csharp/src/Google.Protobuf/IDeepCloneable.cs                               \
161  csharp/src/Google.Protobuf/IExtendableMessage.cs                           \
162  csharp/src/Google.Protobuf/IMessage.cs                                     \
163  csharp/src/Google.Protobuf/InvalidJsonException.cs                         \
164  csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs               \
165  csharp/src/Google.Protobuf/JsonFormatter.cs                                \
166  csharp/src/Google.Protobuf/JsonParser.cs                                   \
167  csharp/src/Google.Protobuf/JsonToken.cs                                    \
168  csharp/src/Google.Protobuf/JsonTokenizer.cs                                \
169  csharp/src/Google.Protobuf/LimitedInputStream.cs                           \
170  csharp/src/Google.Protobuf/MessageExtensions.cs                            \
171  csharp/src/Google.Protobuf/MessageParser.cs                                \
172  csharp/src/Google.Protobuf/ObjectIntPair.cs                                \
173  csharp/src/Google.Protobuf/ProtoPreconditions.cs                           \
174  csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs                      \
175  csharp/src/Google.Protobuf/Reflection/CustomOptions.cs                     \
176  csharp/src/Google.Protobuf/Reflection/Descriptor.cs                        \
177  csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs                    \
178  csharp/src/Google.Protobuf/Reflection/DescriptorDeclaration.cs             \
179  csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs                    \
180  csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs                    \
181  csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs     \
182  csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs                    \
183  csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs               \
184  csharp/src/Google.Protobuf/Reflection/ExtensionAccessor.cs                 \
185  csharp/src/Google.Protobuf/Reflection/ExtensionCollection.cs               \
186  csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs                 \
187  csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs                   \
188  csharp/src/Google.Protobuf/Reflection/FieldType.cs                         \
189  csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs                    \
190  csharp/src/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs              \
191  csharp/src/Google.Protobuf/Reflection/IDescriptor.cs                       \
192  csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs                    \
193  csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs                  \
194  csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs                 \
195  csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs                  \
196  csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs                     \
197  csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs                   \
198  csharp/src/Google.Protobuf/Reflection/OriginalNameAttribute.cs             \
199  csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs                 \
200  csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs                    \
201  csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs             \
202  csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs                 \
203  csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs               \
204  csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs                      \
205  csharp/src/Google.Protobuf/WellKnownTypes/Any.cs                           \
206  csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs                    \
207  csharp/src/Google.Protobuf/WellKnownTypes/Api.cs                           \
208  csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs                      \
209  csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs               \
210  csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs                         \
211  csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs                     \
212  csharp/src/Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs              \
213  csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs                 \
214  csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs                        \
215  csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs                \
216  csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs                     \
217  csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs              \
218  csharp/src/Google.Protobuf/WellKnownTypes/Type.cs                          \
219  csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs                  \
220  csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs                      \
221  csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs               \
222  csharp/src/Google.Protobuf/WireFormat.cs                                   \
223  csharp/src/Google.Protobuf/UnknownField.cs                                 \
224  csharp/src/Google.Protobuf/UnknownFieldSet.cs
225
226java_EXTRA_DIST=                                                                   \
227  java/README.md                                                                   \
228  java/bom/pom.xml                                                                 \
229  java/core/generate-sources-build.xml                                             \
230  java/core/generate-test-sources-build.xml                                        \
231  java/core/pom.xml                                                                \
232  java/core/src/main/java/com/google/protobuf/AbstractMessage.java                 \
233  java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java             \
234  java/core/src/main/java/com/google/protobuf/AbstractParser.java                  \
235  java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java            \
236  java/core/src/main/java/com/google/protobuf/AllocatedBuffer.java                 \
237  java/core/src/main/java/com/google/protobuf/Android.java                         \
238  java/core/src/main/java/com/google/protobuf/ArrayDecoders.java                   \
239  java/core/src/main/java/com/google/protobuf/BinaryReader.java                    \
240  java/core/src/main/java/com/google/protobuf/BinaryWriter.java                    \
241  java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java              \
242  java/core/src/main/java/com/google/protobuf/BlockingService.java                 \
243  java/core/src/main/java/com/google/protobuf/BooleanArrayList.java                \
244  java/core/src/main/java/com/google/protobuf/BufferAllocator.java                 \
245  java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java                \
246  java/core/src/main/java/com/google/protobuf/ByteOutput.java                      \
247  java/core/src/main/java/com/google/protobuf/ByteString.java                      \
248  java/core/src/main/java/com/google/protobuf/CodedInputStream.java                \
249  java/core/src/main/java/com/google/protobuf/CodedInputStreamReader.java          \
250  java/core/src/main/java/com/google/protobuf/CodedOutputStream.java               \
251  java/core/src/main/java/com/google/protobuf/CodedOutputStreamWriter.java         \
252  java/core/src/main/java/com/google/protobuf/DescriptorMessageInfoFactory.java    \
253  java/core/src/main/java/com/google/protobuf/Descriptors.java                     \
254  java/core/src/main/java/com/google/protobuf/DiscardUnknownFieldsParser.java      \
255  java/core/src/main/java/com/google/protobuf/DoubleArrayList.java                 \
256  java/core/src/main/java/com/google/protobuf/DynamicMessage.java                  \
257  java/core/src/main/java/com/google/protobuf/ExperimentalApi.java                 \
258  java/core/src/main/java/com/google/protobuf/Extension.java                       \
259  java/core/src/main/java/com/google/protobuf/ExtensionLite.java                   \
260  java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java               \
261  java/core/src/main/java/com/google/protobuf/ExtensionRegistryFactory.java        \
262  java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java           \
263  java/core/src/main/java/com/google/protobuf/ExtensionSchema.java                 \
264  java/core/src/main/java/com/google/protobuf/ExtensionSchemaFull.java             \
265  java/core/src/main/java/com/google/protobuf/ExtensionSchemaLite.java             \
266  java/core/src/main/java/com/google/protobuf/ExtensionSchemas.java                \
267  java/core/src/main/java/com/google/protobuf/FieldInfo.java                       \
268  java/core/src/main/java/com/google/protobuf/FieldSet.java                        \
269  java/core/src/main/java/com/google/protobuf/FieldType.java                       \
270  java/core/src/main/java/com/google/protobuf/FloatArrayList.java                  \
271  java/core/src/main/java/com/google/protobuf/GeneratedMessage.java                \
272  java/core/src/main/java/com/google/protobuf/GeneratedMessageInfoFactory.java     \
273  java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java            \
274  java/core/src/main/java/com/google/protobuf/GeneratedMessageV3.java              \
275  java/core/src/main/java/com/google/protobuf/IntArrayList.java                    \
276  java/core/src/main/java/com/google/protobuf/Internal.java                        \
277  java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java  \
278  java/core/src/main/java/com/google/protobuf/IterableByteBufferInputStream.java   \
279  java/core/src/main/java/com/google/protobuf/JavaType.java                        \
280  java/core/src/main/java/com/google/protobuf/LazyField.java                       \
281  java/core/src/main/java/com/google/protobuf/LazyFieldLite.java                   \
282  java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java             \
283  java/core/src/main/java/com/google/protobuf/LazyStringList.java                  \
284  java/core/src/main/java/com/google/protobuf/ListFieldSchema.java                 \
285  java/core/src/main/java/com/google/protobuf/LongArrayList.java                   \
286  java/core/src/main/java/com/google/protobuf/ManifestSchemaFactory.java           \
287  java/core/src/main/java/com/google/protobuf/MapEntry.java                        \
288  java/core/src/main/java/com/google/protobuf/MapEntryLite.java                    \
289  java/core/src/main/java/com/google/protobuf/MapField.java                        \
290  java/core/src/main/java/com/google/protobuf/MapFieldLite.java                    \
291  java/core/src/main/java/com/google/protobuf/MapFieldSchema.java                  \
292  java/core/src/main/java/com/google/protobuf/MapFieldSchemaFull.java              \
293  java/core/src/main/java/com/google/protobuf/MapFieldSchemaLite.java              \
294  java/core/src/main/java/com/google/protobuf/MapFieldSchemas.java                 \
295  java/core/src/main/java/com/google/protobuf/Message.java                         \
296  java/core/src/main/java/com/google/protobuf/MessageInfo.java                     \
297  java/core/src/main/java/com/google/protobuf/MessageInfoFactory.java              \
298  java/core/src/main/java/com/google/protobuf/MessageLite.java                     \
299  java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java            \
300  java/core/src/main/java/com/google/protobuf/MessageLiteToString.java             \
301  java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java                \
302  java/core/src/main/java/com/google/protobuf/MessageReflection.java               \
303  java/core/src/main/java/com/google/protobuf/MessageSchema.java                   \
304  java/core/src/main/java/com/google/protobuf/MessageSetSchema.java                \
305  java/core/src/main/java/com/google/protobuf/MutabilityOracle.java                \
306  java/core/src/main/java/com/google/protobuf/NewInstanceSchema.java               \
307  java/core/src/main/java/com/google/protobuf/NewInstanceSchemaFull.java           \
308  java/core/src/main/java/com/google/protobuf/NewInstanceSchemaLite.java           \
309  java/core/src/main/java/com/google/protobuf/NewInstanceSchemas.java              \
310  java/core/src/main/java/com/google/protobuf/NioByteString.java                   \
311  java/core/src/main/java/com/google/protobuf/OneofInfo.java                       \
312  java/core/src/main/java/com/google/protobuf/Parser.java                          \
313  java/core/src/main/java/com/google/protobuf/PrimitiveNonBoxingCollection.java    \
314  java/core/src/main/java/com/google/protobuf/ProtoSyntax.java                     \
315  java/core/src/main/java/com/google/protobuf/Protobuf.java                        \
316  java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java               \
317  java/core/src/main/java/com/google/protobuf/ProtobufLists.java                   \
318  java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java             \
319  java/core/src/main/java/com/google/protobuf/ProtocolStringList.java              \
320  java/core/src/main/java/com/google/protobuf/RawMessageInfo.java                  \
321  java/core/src/main/java/com/google/protobuf/Reader.java                          \
322  java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java            \
323  java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java          \
324  java/core/src/main/java/com/google/protobuf/RopeByteString.java                  \
325  java/core/src/main/java/com/google/protobuf/RpcCallback.java                     \
326  java/core/src/main/java/com/google/protobuf/RpcChannel.java                      \
327  java/core/src/main/java/com/google/protobuf/RpcController.java                   \
328  java/core/src/main/java/com/google/protobuf/RpcUtil.java                         \
329  java/core/src/main/java/com/google/protobuf/Schema.java                          \
330  java/core/src/main/java/com/google/protobuf/SchemaFactory.java                   \
331  java/core/src/main/java/com/google/protobuf/SchemaUtil.java                      \
332  java/core/src/main/java/com/google/protobuf/Service.java                         \
333  java/core/src/main/java/com/google/protobuf/ServiceException.java                \
334  java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java              \
335  java/core/src/main/java/com/google/protobuf/SingleFieldBuilderV3.java            \
336  java/core/src/main/java/com/google/protobuf/SmallSortedMap.java                  \
337  java/core/src/main/java/com/google/protobuf/StructuralMessageInfo.java           \
338  java/core/src/main/java/com/google/protobuf/TextFormat.java                      \
339  java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java               \
340  java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java         \
341  java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java         \
342  java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java   \
343  java/core/src/main/java/com/google/protobuf/UnknownFieldSchema.java              \
344  java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java                 \
345  java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java             \
346  java/core/src/main/java/com/google/protobuf/UnknownFieldSetLiteSchema.java       \
347  java/core/src/main/java/com/google/protobuf/UnknownFieldSetSchema.java           \
348  java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java      \
349  java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java            \
350  java/core/src/main/java/com/google/protobuf/UnsafeUtil.java                      \
351  java/core/src/main/java/com/google/protobuf/Utf8.java                            \
352  java/core/src/main/java/com/google/protobuf/WireFormat.java                      \
353  java/core/src/main/java/com/google/protobuf/Writer.java                          \
354  java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java             \
355  java/core/src/test/java/com/google/protobuf/AbstractProto2LiteSchemaTest.java    \
356  java/core/src/test/java/com/google/protobuf/AbstractProto2SchemaTest.java        \
357  java/core/src/test/java/com/google/protobuf/AbstractProto3LiteSchemaTest.java    \
358  java/core/src/test/java/com/google/protobuf/AbstractProto3SchemaTest.java        \
359  java/core/src/test/java/com/google/protobuf/AbstractSchemaTest.java              \
360  java/core/src/test/java/com/google/protobuf/AnyTest.java                         \
361  java/core/src/test/java/com/google/protobuf/ArrayDecodersTest.java               \
362  java/core/src/test/java/com/google/protobuf/BinaryProtocolTest.java              \
363  java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java            \
364  java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java           \
365  java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java            \
366  java/core/src/test/java/com/google/protobuf/ByteStringTest.java                  \
367  java/core/src/test/java/com/google/protobuf/CachedFieldSizeTest.java             \
368  java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java                   \
369  java/core/src/test/java/com/google/protobuf/CodedAdapterTest.java                \
370  java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java            \
371  java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java           \
372  java/core/src/test/java/com/google/protobuf/DecodeUtf8Test.java                  \
373  java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java             \
374  java/core/src/test/java/com/google/protobuf/DescriptorsTest.java                 \
375  java/core/src/test/java/com/google/protobuf/DiscardUnknownFieldsTest.java        \
376  java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java             \
377  java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java              \
378  java/core/src/test/java/com/google/protobuf/EnumTest.java                        \
379  java/core/src/test/java/com/google/protobuf/ExperimentalMessageFactory.java      \
380  java/core/src/test/java/com/google/protobuf/ExperimentalSerializationUtil.java   \
381  java/core/src/test/java/com/google/protobuf/ExperimentalTestDataProvider.java    \
382  java/core/src/test/java/com/google/protobuf/ExtensionRegistryFactoryTest.java    \
383  java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java               \
384  java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java              \
385  java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java        \
386  java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java            \
387  java/core/src/test/java/com/google/protobuf/IntArrayListTest.java                \
388  java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java                 \
389  java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java             \
390  java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java               \
391  java/core/src/test/java/com/google/protobuf/LazyFieldTest.java                   \
392  java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java             \
393  java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java         \
394  java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java          \
395  java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java           \
396  java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java           \
397  java/core/src/test/java/com/google/protobuf/LongArrayListTest.java               \
398  java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java            \
399  java/core/src/test/java/com/google/protobuf/MapForProto2Test.java                \
400  java/core/src/test/java/com/google/protobuf/MapLiteTest.java                     \
401  java/core/src/test/java/com/google/protobuf/MapTest.java                         \
402  java/core/src/test/java/com/google/protobuf/MessageTest.java                     \
403  java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java              \
404  java/core/src/test/java/com/google/protobuf/NioByteStringTest.java               \
405  java/core/src/test/java/com/google/protobuf/PackedFieldTest.java                 \
406  java/core/src/test/java/com/google/protobuf/ParseExceptionsTest.java             \
407  java/core/src/test/java/com/google/protobuf/ParserLiteTest.java                  \
408  java/core/src/test/java/com/google/protobuf/ParserTest.java                      \
409  java/core/src/test/java/com/google/protobuf/Proto2ExtensionLookupSchemaTest.java \
410  java/core/src/test/java/com/google/protobuf/Proto2LiteSchemaTest.java            \
411  java/core/src/test/java/com/google/protobuf/Proto2MessageFactory.java            \
412  java/core/src/test/java/com/google/protobuf/Proto2MessageInfoFactory.java        \
413  java/core/src/test/java/com/google/protobuf/Proto2MessageLiteFactory.java        \
414  java/core/src/test/java/com/google/protobuf/Proto2SchemaTest.java                \
415  java/core/src/test/java/com/google/protobuf/Proto2UnknownEnumValueTest.java      \
416  java/core/src/test/java/com/google/protobuf/Proto3LiteSchemaTest.java            \
417  java/core/src/test/java/com/google/protobuf/Proto3MessageFactory.java            \
418  java/core/src/test/java/com/google/protobuf/Proto3MessageInfoFactory.java        \
419  java/core/src/test/java/com/google/protobuf/Proto3MessageLiteFactory.java        \
420  java/core/src/test/java/com/google/protobuf/Proto3MessageLiteInfoFactory.java    \
421  java/core/src/test/java/com/google/protobuf/Proto3SchemaTest.java                \
422  java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java           \
423  java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderV3Test.java      \
424  java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java     \
425  java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java              \
426  java/core/src/test/java/com/google/protobuf/ServiceTest.java                     \
427  java/core/src/test/java/com/google/protobuf/SingleFieldBuilderV3Test.java        \
428  java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java              \
429  java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java              \
430  java/core/src/test/java/com/google/protobuf/TestBadIdentifiersLite.java          \
431  java/core/src/test/java/com/google/protobuf/TestSchemas.java                     \
432  java/core/src/test/java/com/google/protobuf/TestSchemasLite.java                 \
433  java/core/src/test/java/com/google/protobuf/TestUtil.java                        \
434  java/core/src/test/java/com/google/protobuf/TestUtilLite.java                    \
435  java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java     \
436  java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java     \
437  java/core/src/test/java/com/google/protobuf/TextFormatTest.java                  \
438  java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java            \
439  java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java             \
440  java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java  \
441  java/core/src/test/java/com/google/protobuf/Utf8Test.java                        \
442  java/core/src/test/java/com/google/protobuf/Utf8Utils.java                       \
443  java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java              \
444  java/core/src/test/java/com/google/protobuf/WireFormatLiteTest.java              \
445  java/core/src/test/java/com/google/protobuf/WireFormatTest.java                  \
446  java/core/src/test/java/com/google/protobuf/WrappersLiteOfMethodTest.java        \
447  java/core/src/test/java/com/google/protobuf/WrappersOfMethodTest.java            \
448  java/core/src/test/proto/com/google/protobuf/any_test.proto                      \
449  java/core/src/test/proto/com/google/protobuf/cached_field_size_test.proto        \
450  java/core/src/test/proto/com/google/protobuf/deprecated_file.proto               \
451  java/core/src/test/proto/com/google/protobuf/field_presence_test.proto           \
452  java/core/src/test/proto/com/google/protobuf/lazy_fields_lite.proto              \
453  java/core/src/test/proto/com/google/protobuf/lite_equals_and_hash.proto          \
454  java/core/src/test/proto/com/google/protobuf/map_for_proto2_lite_test.proto      \
455  java/core/src/test/proto/com/google/protobuf/map_for_proto2_test.proto           \
456  java/core/src/test/proto/com/google/protobuf/map_initialization_order_test.proto \
457  java/core/src/test/proto/com/google/protobuf/map_lite_test.proto                 \
458  java/core/src/test/proto/com/google/protobuf/map_test.proto                      \
459  java/core/src/test/proto/com/google/protobuf/message_lite_extension_util_test.proto\
460  java/core/src/test/proto/com/google/protobuf/multiple_files_test.proto           \
461  java/core/src/test/proto/com/google/protobuf/nested_builders_test.proto          \
462  java/core/src/test/proto/com/google/protobuf/nested_extension.proto              \
463  java/core/src/test/proto/com/google/protobuf/nested_extension_lite.proto         \
464  java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto          \
465  java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto     \
466  java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto         \
467  java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto        \
468  java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto        \
469  java/core/src/test/proto/com/google/protobuf/packed_field_test.proto             \
470  java/core/src/test/proto/com/google/protobuf/proto2_message.proto                \
471  java/core/src/test/proto/com/google/protobuf/proto2_message_lite.proto           \
472  java/core/src/test/proto/com/google/protobuf/proto2_unknown_enum_values.proto    \
473  java/core/src/test/proto/com/google/protobuf/proto3_message.proto                \
474  java/core/src/test/proto/com/google/protobuf/proto3_message_lite.proto           \
475  java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto          \
476  java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto               \
477  java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto          \
478  java/core/src/test/proto/com/google/protobuf/test_custom_options.proto           \
479  java/core/src/test/proto/com/google/protobuf/test_extra_interfaces.proto         \
480  java/core/src/test/proto/com/google/protobuf/wrappers_test.proto                 \
481  java/lite.md                                                                     \
482  java/lite/generate-sources-build.xml                                             \
483  java/lite/generate-test-sources-build.xml                                        \
484  java/lite/lite.awk                                                               \
485  java/lite/pom.xml                                                                \
486  java/lite/process-lite-sources-build.xml                                         \
487  java/lite/src/test/java/com/google/protobuf/LiteTest.java                        \
488  java/lite/src/test/java/com/google/protobuf/Proto2MessageLiteInfoFactory.java    \
489  java/pom.xml                                                                     \
490  java/util/pom.xml                                                                \
491  java/util/src/main/java/com/google/protobuf/util/Durations.java                  \
492  java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java              \
493  java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java              \
494  java/util/src/main/java/com/google/protobuf/util/JsonFormat.java                 \
495  java/util/src/main/java/com/google/protobuf/util/TimeUtil.java                   \
496  java/util/src/main/java/com/google/protobuf/util/Structs.java                    \
497  java/util/src/main/java/com/google/protobuf/util/Timestamps.java                 \
498  java/util/src/main/java/com/google/protobuf/util/Values.java                     \
499  java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java          \
500  java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java          \
501  java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java             \
502  java/util/src/test/java/com/google/protobuf/util/StructsTest.java                 \
503  java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java               \
504  java/util/src/test/java/com/google/protobuf/util/ValuesTest.java                 \
505  java/util/src/test/proto/com/google/protobuf/util/json_test.proto
506
507objectivec_EXTRA_DIST=                                                       \
508  objectivec/DevTools/check_version_stamps.sh                                \
509  objectivec/DevTools/compile_testing_protos.sh                              \
510  objectivec/DevTools/full_mac_build.sh                                      \
511  objectivec/DevTools/pddm.py                                                \
512  objectivec/DevTools/pddm_tests.py                                          \
513  objectivec/generate_well_known_types.sh                                    \
514  objectivec/google/protobuf/Any.pbobjc.h                                    \
515  objectivec/google/protobuf/Any.pbobjc.m                                    \
516  objectivec/google/protobuf/Api.pbobjc.h                                    \
517  objectivec/google/protobuf/Api.pbobjc.m                                    \
518  objectivec/google/protobuf/Duration.pbobjc.h                               \
519  objectivec/google/protobuf/Duration.pbobjc.m                               \
520  objectivec/google/protobuf/Empty.pbobjc.h                                  \
521  objectivec/google/protobuf/Empty.pbobjc.m                                  \
522  objectivec/google/protobuf/FieldMask.pbobjc.h                              \
523  objectivec/google/protobuf/FieldMask.pbobjc.m                              \
524  objectivec/google/protobuf/SourceContext.pbobjc.h                          \
525  objectivec/google/protobuf/SourceContext.pbobjc.m                          \
526  objectivec/google/protobuf/Struct.pbobjc.h                                 \
527  objectivec/google/protobuf/Struct.pbobjc.m                                 \
528  objectivec/google/protobuf/Timestamp.pbobjc.h                              \
529  objectivec/google/protobuf/Timestamp.pbobjc.m                              \
530  objectivec/google/protobuf/Type.pbobjc.h                                   \
531  objectivec/google/protobuf/Type.pbobjc.m                                   \
532  objectivec/google/protobuf/Wrappers.pbobjc.h                               \
533  objectivec/google/protobuf/Wrappers.pbobjc.m                               \
534  objectivec/GPBArray.h                                                      \
535  objectivec/GPBArray.m                                                      \
536  objectivec/GPBArray_PackagePrivate.h                                       \
537  objectivec/GPBBootstrap.h                                                  \
538  objectivec/GPBCodedInputStream.h                                           \
539  objectivec/GPBCodedInputStream.m                                           \
540  objectivec/GPBCodedInputStream_PackagePrivate.h                            \
541  objectivec/GPBCodedOutputStream.h                                          \
542  objectivec/GPBCodedOutputStream.m                                          \
543  objectivec/GPBCodedOutputStream_PackagePrivate.h                           \
544  objectivec/GPBDescriptor.h                                                 \
545  objectivec/GPBDescriptor.m                                                 \
546  objectivec/GPBDescriptor_PackagePrivate.h                                  \
547  objectivec/GPBDictionary.h                                                 \
548  objectivec/GPBDictionary.m                                                 \
549  objectivec/GPBDictionary_PackagePrivate.h                                  \
550  objectivec/GPBExtensionInternals.h                                         \
551  objectivec/GPBExtensionInternals.m                                         \
552  objectivec/GPBExtensionRegistry.h                                          \
553  objectivec/GPBExtensionRegistry.m                                          \
554  objectivec/GPBMessage.h                                                    \
555  objectivec/GPBMessage.m                                                    \
556  objectivec/GPBMessage_PackagePrivate.h                                     \
557  objectivec/GPBProtocolBuffers.h                                            \
558  objectivec/GPBProtocolBuffers.m                                            \
559  objectivec/GPBProtocolBuffers_RuntimeSupport.h                             \
560  objectivec/GPBRootObject.h                                                 \
561  objectivec/GPBRootObject.m                                                 \
562  objectivec/GPBRootObject_PackagePrivate.h                                  \
563  objectivec/GPBRuntimeTypes.h                                               \
564  objectivec/GPBUnknownField.h                                               \
565  objectivec/GPBUnknownField.m                                               \
566  objectivec/GPBUnknownField_PackagePrivate.h                                \
567  objectivec/GPBUnknownFieldSet.h                                            \
568  objectivec/GPBUnknownFieldSet.m                                            \
569  objectivec/GPBUnknownFieldSet_PackagePrivate.h                             \
570  objectivec/GPBUtilities.h                                                  \
571  objectivec/GPBUtilities.m                                                  \
572  objectivec/GPBUtilities_PackagePrivate.h                                   \
573  objectivec/GPBWellKnownTypes.h                                             \
574  objectivec/GPBWellKnownTypes.m                                             \
575  objectivec/GPBWireFormat.h                                                 \
576  objectivec/GPBWireFormat.m                                                 \
577  objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj                   \
578  objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
579  objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
580  objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
581  objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
582  objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
583  objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj                   \
584  objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
585  objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
586  objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
587  objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
588  objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
589  objectivec/ProtocolBuffers_tvOS.xcodeproj/project.pbxproj                  \
590  objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
591  objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
592  objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
593  objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
594  objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
595  objectivec/README.md                                                       \
596  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.pbxproj \
597  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
598  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/OSXCocoaPodsTester.xcscheme \
599  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.h \
600  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.m \
601  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \
602  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Base.lproj/MainMenu.xib \
603  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Info.plist \
604  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/main.m    \
605  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-framework            \
606  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-static               \
607  objectivec/Tests/CocoaPods/README.md                                       \
608  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-framework            \
609  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-static               \
610  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.pbxproj \
611  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
612  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/iOSCocoaPodsTester.xcscheme \
613  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.h \
614  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.m \
615  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \
616  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/LaunchScreen.storyboard \
617  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/Main.storyboard \
618  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Info.plist \
619  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.h \
620  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.m \
621  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/main.m    \
622  objectivec/Tests/CocoaPods/run_tests.sh                                    \
623  objectivec/Tests/golden_message                                            \
624  objectivec/Tests/golden_packed_fields_message                              \
625  objectivec/Tests/GPBARCUnittestProtos.m                                    \
626  objectivec/Tests/GPBArrayTests.m                                           \
627  objectivec/Tests/GPBCodedInputStreamTests.m                                \
628  objectivec/Tests/GPBCodedOuputStreamTests.m                                \
629  objectivec/Tests/GPBCompileTest01.m                                        \
630  objectivec/Tests/GPBCompileTest02.m                                        \
631  objectivec/Tests/GPBCompileTest03.m                                        \
632  objectivec/Tests/GPBCompileTest04.m                                        \
633  objectivec/Tests/GPBCompileTest05.m                                        \
634  objectivec/Tests/GPBCompileTest06.m                                        \
635  objectivec/Tests/GPBCompileTest07.m                                        \
636  objectivec/Tests/GPBCompileTest08.m                                        \
637  objectivec/Tests/GPBCompileTest09.m                                        \
638  objectivec/Tests/GPBCompileTest10.m                                        \
639  objectivec/Tests/GPBCompileTest11.m                                        \
640  objectivec/Tests/GPBCompileTest12.m                                        \
641  objectivec/Tests/GPBCompileTest13.m                                        \
642  objectivec/Tests/GPBCompileTest14.m                                        \
643  objectivec/Tests/GPBCompileTest15.m                                        \
644  objectivec/Tests/GPBCompileTest16.m                                        \
645  objectivec/Tests/GPBCompileTest17.m                                        \
646  objectivec/Tests/GPBCompileTest18.m                                        \
647  objectivec/Tests/GPBCompileTest19.m                                        \
648  objectivec/Tests/GPBCompileTest20.m                                        \
649  objectivec/Tests/GPBCompileTest21.m                                        \
650  objectivec/Tests/GPBCompileTest22.m                                        \
651  objectivec/Tests/GPBCompileTest23.m                                        \
652  objectivec/Tests/GPBCompileTest24.m                                        \
653  objectivec/Tests/GPBCompileTest25.m                                        \
654  objectivec/Tests/GPBConcurrencyTests.m                                     \
655  objectivec/Tests/GPBDescriptorTests.m                                      \
656  objectivec/Tests/GPBDictionaryTests+Bool.m                                 \
657  objectivec/Tests/GPBDictionaryTests+Int32.m                                \
658  objectivec/Tests/GPBDictionaryTests+Int64.m                                \
659  objectivec/Tests/GPBDictionaryTests+String.m                               \
660  objectivec/Tests/GPBDictionaryTests+UInt32.m                               \
661  objectivec/Tests/GPBDictionaryTests+UInt64.m                               \
662  objectivec/Tests/GPBDictionaryTests.m                                      \
663  objectivec/Tests/GPBDictionaryTests.pddm                                   \
664  objectivec/Tests/GPBExtensionRegistryTest.m                                \
665  objectivec/Tests/GPBMessageTests+Merge.m                                   \
666  objectivec/Tests/GPBMessageTests+Runtime.m                                 \
667  objectivec/Tests/GPBMessageTests+Serialization.m                           \
668  objectivec/Tests/GPBMessageTests.m                                         \
669  objectivec/Tests/GPBObjectiveCPlusPlusTest.mm                              \
670  objectivec/Tests/GPBPerfTests.m                                            \
671  objectivec/Tests/GPBSwiftTests.swift                                       \
672  objectivec/Tests/GPBTestUtilities.h                                        \
673  objectivec/Tests/GPBTestUtilities.m                                        \
674  objectivec/Tests/GPBUnittestProtos.m                                       \
675  objectivec/Tests/GPBUnittestProtos2.m                                      \
676  objectivec/Tests/GPBUnknownFieldSetTest.m                                  \
677  objectivec/Tests/GPBUtilitiesTests.m                                       \
678  objectivec/Tests/GPBWellKnownTypesTest.m                                   \
679  objectivec/Tests/GPBWireFormatTests.m                                      \
680  objectivec/Tests/text_format_extensions_unittest_data.txt                   \
681  objectivec/Tests/text_format_map_unittest_data.txt                          \
682  objectivec/Tests/text_format_unittest_data.txt                              \
683  objectivec/Tests/unittest_cycle.proto                                       \
684  objectivec/Tests/unittest_deprecated.proto                                  \
685  objectivec/Tests/unittest_deprecated_file.proto                             \
686  objectivec/Tests/unittest_extension_chain_a.proto                           \
687  objectivec/Tests/unittest_extension_chain_b.proto                           \
688  objectivec/Tests/unittest_extension_chain_c.proto                           \
689  objectivec/Tests/unittest_extension_chain_d.proto                           \
690  objectivec/Tests/unittest_extension_chain_e.proto                           \
691  objectivec/Tests/unittest_extension_chain_f.proto                           \
692  objectivec/Tests/unittest_extension_chain_g.proto                           \
693  objectivec/Tests/unittest_objc.proto                                        \
694  objectivec/Tests/unittest_objc_options.proto                                \
695  objectivec/Tests/unittest_objc_startup.proto                                \
696  objectivec/Tests/unittest_runtime_proto2.proto                              \
697  objectivec/Tests/unittest_runtime_proto3.proto                              \
698  objectivec/Tests/UnitTests-Bridging-Header.h                                \
699  objectivec/Tests/UnitTests-Info.plist                                       \
700  Protobuf.podspec
701
702php_EXTRA_DIST=                                                       \
703  composer.json                                                       \
704  php/README.md                                                       \
705  php/composer.json                                                   \
706  php/ext/google/protobuf/array.c                                     \
707  php/ext/google/protobuf/builtin_descriptors.inc                     \
708  php/ext/google/protobuf/config.m4                                   \
709  php/ext/google/protobuf/def.c                                       \
710  php/ext/google/protobuf/encode_decode.c                             \
711  php/ext/google/protobuf/map.c                                       \
712  php/ext/google/protobuf/message.c                                   \
713  php/ext/google/protobuf/package.xml                                 \
714  php/ext/google/protobuf/protobuf.c                                  \
715  php/ext/google/protobuf/protobuf.h                                  \
716  php/ext/google/protobuf/storage.c                                   \
717  php/ext/google/protobuf/type_check.c                                \
718  php/ext/google/protobuf/upb.c                                       \
719  php/ext/google/protobuf/upb.h                                       \
720  php/ext/google/protobuf/utf8.c                                      \
721  php/ext/google/protobuf/utf8.h                                      \
722  php/generate_descriptor_protos.sh                                   \
723  php/phpunit.xml                                                     \
724  php/release.sh                                                      \
725  php/src/GPBMetadata/Google/Protobuf/Any.php                         \
726  php/src/GPBMetadata/Google/Protobuf/Api.php                         \
727  php/src/GPBMetadata/Google/Protobuf/Duration.php                    \
728  php/src/GPBMetadata/Google/Protobuf/FieldMask.php                   \
729  php/src/GPBMetadata/Google/Protobuf/GPBEmpty.php                    \
730  php/src/GPBMetadata/Google/Protobuf/Internal/Descriptor.php         \
731  php/src/GPBMetadata/Google/Protobuf/SourceContext.php               \
732  php/src/GPBMetadata/Google/Protobuf/Struct.php                      \
733  php/src/GPBMetadata/Google/Protobuf/Timestamp.php                   \
734  php/src/GPBMetadata/Google/Protobuf/Type.php                        \
735  php/src/GPBMetadata/Google/Protobuf/Wrappers.php                    \
736  php/src/Google/Protobuf/Any.php                                     \
737  php/src/Google/Protobuf/Api.php                                     \
738  php/src/Google/Protobuf/BoolValue.php                               \
739  php/src/Google/Protobuf/BytesValue.php                              \
740  php/src/Google/Protobuf/Descriptor.php                              \
741  php/src/Google/Protobuf/DescriptorPool.php                          \
742  php/src/Google/Protobuf/DoubleValue.php                             \
743  php/src/Google/Protobuf/Duration.php                                \
744  php/src/Google/Protobuf/Enum.php                                    \
745  php/src/Google/Protobuf/EnumDescriptor.php                          \
746  php/src/Google/Protobuf/EnumValue.php                               \
747  php/src/Google/Protobuf/EnumValueDescriptor.php                     \
748  php/src/Google/Protobuf/Field.php                                   \
749  php/src/Google/Protobuf/FieldDescriptor.php                         \
750  php/src/Google/Protobuf/FieldMask.php                               \
751  php/src/Google/Protobuf/Field/Cardinality.php                       \
752  php/src/Google/Protobuf/Field_Cardinality.php                       \
753  php/src/Google/Protobuf/Field/Kind.php                              \
754  php/src/Google/Protobuf/Field_Kind.php                              \
755  php/src/Google/Protobuf/FloatValue.php                              \
756  php/src/Google/Protobuf/GPBEmpty.php                                \
757  php/src/Google/Protobuf/Int32Value.php                              \
758  php/src/Google/Protobuf/Int64Value.php                              \
759  php/src/Google/Protobuf/Internal/CodedInputStream.php               \
760  php/src/Google/Protobuf/Internal/CodedOutputStream.php              \
761  php/src/Google/Protobuf/Internal/Descriptor.php                     \
762  php/src/Google/Protobuf/Internal/DescriptorPool.php                 \
763  php/src/Google/Protobuf/Internal/DescriptorProto.php                \
764  php/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php \
765  php/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php  \
766  php/src/Google/Protobuf/Internal/EnumBuilderContext.php             \
767  php/src/Google/Protobuf/Internal/EnumDescriptor.php                 \
768  php/src/Google/Protobuf/Internal/EnumDescriptorProto.php            \
769  php/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php \
770  php/src/Google/Protobuf/Internal/EnumOptions.php                    \
771  php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php       \
772  php/src/Google/Protobuf/Internal/EnumValueOptions.php               \
773  php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php          \
774  php/src/Google/Protobuf/Internal/FieldDescriptorProto.php           \
775  php/src/Google/Protobuf/Internal/FieldDescriptor.php                \
776  php/src/Google/Protobuf/Internal/FieldDescriptorProto.php           \
777  php/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php     \
778  php/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php      \
779  php/src/Google/Protobuf/Internal/FieldOptions.php                   \
780  php/src/Google/Protobuf/Internal/FieldOptions/CType.php             \
781  php/src/Google/Protobuf/Internal/FieldOptions/JSType.php            \
782  php/src/Google/Protobuf/Internal/FileDescriptor.php                 \
783  php/src/Google/Protobuf/Internal/FileDescriptorProto.php            \
784  php/src/Google/Protobuf/Internal/FileDescriptorSet.php              \
785  php/src/Google/Protobuf/Internal/FileOptions.php                    \
786  php/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php       \
787  php/src/Google/Protobuf/Internal/GPBDecodeException.php             \
788  php/src/Google/Protobuf/Internal/GPBJsonWire.php                    \
789  php/src/Google/Protobuf/Internal/GPBLabel.php                       \
790  php/src/Google/Protobuf/Internal/GPBType.php                        \
791  php/src/Google/Protobuf/Internal/GPBUtil.php                        \
792  php/src/Google/Protobuf/Internal/GPBWire.php                        \
793  php/src/Google/Protobuf/Internal/GPBWireType.php                    \
794  php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php              \
795  php/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php   \
796  php/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php       \
797  php/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php       \
798  php/src/Google/Protobuf/Internal/MapEntry.php                       \
799  php/src/Google/Protobuf/Internal/MapField.php                       \
800  php/src/Google/Protobuf/Internal/MapFieldIter.php                   \
801  php/src/Google/Protobuf/Internal/Message.php                        \
802  php/src/Google/Protobuf/Internal/MessageBuilderContext.php          \
803  php/src/Google/Protobuf/Internal/MessageOptions.php                 \
804  php/src/Google/Protobuf/Internal/MethodDescriptorProto.php          \
805  php/src/Google/Protobuf/Internal/MethodOptions.php                  \
806  php/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php \
807  php/src/Google/Protobuf/Internal/OneofDescriptor.php                \
808  php/src/Google/Protobuf/Internal/OneofDescriptorProto.php           \
809  php/src/Google/Protobuf/Internal/OneofField.php                     \
810  php/src/Google/Protobuf/Internal/OneofOptions.php                   \
811  php/src/Google/Protobuf/Internal/RawInputStream.php                 \
812  php/src/Google/Protobuf/Internal/RepeatedField.php                  \
813  php/src/Google/Protobuf/Internal/RepeatedFieldIter.php              \
814  php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php         \
815  php/src/Google/Protobuf/Internal/ServiceOptions.php                 \
816  php/src/Google/Protobuf/Internal/SourceCodeInfo.php                 \
817  php/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php        \
818  php/src/Google/Protobuf/Internal/UninterpretedOption.php            \
819  php/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php   \
820  php/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php \
821  php/src/Google/Protobuf/Internal/DescriptorProto_ReservedRange.php  \
822  php/src/Google/Protobuf/Internal/EnumDescriptorProto_EnumReservedRange.php \
823  php/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php     \
824  php/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php      \
825  php/src/Google/Protobuf/Internal/FieldOptions_CType.php             \
826  php/src/Google/Protobuf/Internal/FieldOptions_JSType.php            \
827  php/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.php       \
828  php/src/Google/Protobuf/Internal/GeneratedCodeInfo_Annotation.php   \
829  php/src/Google/Protobuf/Internal/MethodOptions_IdempotencyLevel.php \
830  php/src/Google/Protobuf/Internal/SourceCodeInfo_Location.php        \
831  php/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php   \
832  php/src/Google/Protobuf/ListValue.php                               \
833  php/src/Google/Protobuf/Method.php                                  \
834  php/src/Google/Protobuf/Mixin.php                                   \
835  php/src/Google/Protobuf/NullValue.php                               \
836  php/src/Google/Protobuf/OneofDescriptor.php                         \
837  php/src/Google/Protobuf/Option.php                                  \
838  php/src/Google/Protobuf/SourceContext.php                           \
839  php/src/Google/Protobuf/StringValue.php                             \
840  php/src/Google/Protobuf/Struct.php                                  \
841  php/src/Google/Protobuf/Syntax.php                                  \
842  php/src/Google/Protobuf/Timestamp.php                               \
843  php/src/Google/Protobuf/Type.php                                    \
844  php/src/Google/Protobuf/UInt32Value.php                             \
845  php/src/Google/Protobuf/UInt64Value.php                             \
846  php/src/Google/Protobuf/Value.php                                   \
847  php/src/phpdoc.dist.xml                                             \
848  php/tests/array_test.php                                            \
849  php/tests/autoload.php                                              \
850  php/tests/bootstrap_phpunit.php                                     \
851  php/tests/compatibility_test.sh                                     \
852  php/tests/compile_extension.sh                                      \
853  php/tests/descriptors_test.php                                      \
854  php/tests/encode_decode_test.php                                    \
855  php/tests/gdb_test.sh                                               \
856  php/tests/generated_class_test.php                                  \
857  php/tests/generated_phpdoc_test.php                                 \
858  php/tests/generated_service_test.php                                \
859  php/tests/map_field_test.php                                        \
860  php/tests/memory_leak_test.php                                      \
861  php/tests/php_implementation_test.php                               \
862  php/tests/proto/empty/echo.proto                                    \
863  php/tests/proto/test.proto                                          \
864  php/tests/proto/test_descriptors.proto                              \
865  php/tests/proto/test_empty_php_namespace.proto                      \
866  php/tests/proto/test_import_descriptor_proto.proto                  \
867  php/tests/proto/test_include.proto                                  \
868  php/tests/proto/test_no_namespace.proto                             \
869  php/tests/proto/test_php_namespace.proto                            \
870  php/tests/proto/test_prefix.proto                                   \
871  php/tests/proto/test_reserved_enum_lower.proto                      \
872  php/tests/proto/test_reserved_enum_upper.proto                      \
873  php/tests/proto/test_reserved_enum_value_lower.proto                \
874  php/tests/proto/test_reserved_enum_value_upper.proto                \
875  php/tests/proto/test_reserved_message_lower.proto                   \
876  php/tests/proto/test_reserved_message_upper.proto                   \
877  php/tests/proto/test_service.proto                                  \
878  php/tests/proto/test_service_namespace.proto                        \
879  php/tests/proto/test_wrapper_type_setters.proto                     \
880  php/tests/test.sh                                                   \
881  php/tests/test_base.php                                             \
882  php/tests/test_util.php                                             \
883  php/tests/undefined_test.php                                        \
884  php/tests/well_known_test.php                                       \
885  php/tests/wrapper_type_setters_test.php
886
887python_EXTRA_DIST=                                                           \
888  python/MANIFEST.in                                                         \
889  python/google/__init__.py                                                  \
890  python/google/protobuf/__init__.py                                         \
891  python/google/protobuf/compiler/__init__.py                                \
892  python/google/protobuf/descriptor.py                                       \
893  python/google/protobuf/descriptor_database.py                              \
894  python/google/protobuf/descriptor_pool.py                                  \
895  python/google/protobuf/internal/__init__.py                                \
896  python/google/protobuf/internal/_parameterized.py                          \
897  python/google/protobuf/internal/any_test.proto                             \
898  python/google/protobuf/internal/any_test.proto                             \
899  python/google/protobuf/internal/api_implementation.cc                      \
900  python/google/protobuf/internal/api_implementation.py                      \
901  python/google/protobuf/internal/containers.py                              \
902  python/google/protobuf/internal/decoder.py                                 \
903  python/google/protobuf/internal/descriptor_database_test.py                \
904  python/google/protobuf/internal/descriptor_pool_test.py                    \
905  python/google/protobuf/internal/descriptor_pool_test1.proto                \
906  python/google/protobuf/internal/descriptor_pool_test2.proto                \
907  python/google/protobuf/internal/descriptor_test.py                         \
908  python/google/protobuf/internal/encoder.py                                 \
909  python/google/protobuf/internal/enum_type_wrapper.py                       \
910  python/google/protobuf/internal/extension_dict.py                          \
911  python/google/protobuf/internal/factory_test1.proto                        \
912  python/google/protobuf/internal/factory_test2.proto                        \
913  python/google/protobuf/internal/file_options_test.proto                    \
914  python/google/protobuf/internal/generator_test.py                          \
915  python/google/protobuf/internal/import_test_package/__init__.py            \
916  python/google/protobuf/internal/import_test_package/inner.proto            \
917  python/google/protobuf/internal/import_test_package/outer.proto            \
918  python/google/protobuf/internal/json_format_test.py                        \
919  python/google/protobuf/internal/keywords_test.py                           \
920  python/google/protobuf/internal/message_factory_test.py                    \
921  python/google/protobuf/internal/message_listener.py                        \
922  python/google/protobuf/internal/message_set_extensions.proto               \
923  python/google/protobuf/internal/message_test.py                            \
924  python/google/protobuf/internal/missing_enum_values.proto                  \
925  python/google/protobuf/internal/more_extensions.proto                      \
926  python/google/protobuf/internal/more_extensions_dynamic.proto              \
927  python/google/protobuf/internal/more_messages.proto                        \
928  python/google/protobuf/internal/no_package.proto                           \
929  python/google/protobuf/internal/packed_field_test.proto                    \
930  python/google/protobuf/internal/proto_builder_test.py                      \
931  python/google/protobuf/internal/python_message.py                          \
932  python/google/protobuf/internal/python_protobuf.cc                         \
933  python/google/protobuf/internal/reflection_test.py                         \
934  python/google/protobuf/internal/service_reflection_test.py                 \
935  python/google/protobuf/internal/symbol_database_test.py                    \
936  python/google/protobuf/internal/test_bad_identifiers.proto                 \
937  python/google/protobuf/internal/test_util.py                               \
938  python/google/protobuf/internal/testing_refleaks.py                        \
939  python/google/protobuf/internal/text_encoding_test.py                      \
940  python/google/protobuf/internal/text_format_test.py                        \
941  python/google/protobuf/internal/type_checkers.py                           \
942  python/google/protobuf/internal/unknown_fields_test.py                     \
943  python/google/protobuf/internal/well_known_types.py                        \
944  python/google/protobuf/internal/well_known_types.py                        \
945  python/google/protobuf/internal/well_known_types_test.py                   \
946  python/google/protobuf/internal/well_known_types_test.py                   \
947  python/google/protobuf/internal/wire_format.py                             \
948  python/google/protobuf/internal/wire_format_test.py                        \
949  python/google/protobuf/json_format.py                                      \
950  python/google/protobuf/message.py                                          \
951  python/google/protobuf/message_factory.py                                  \
952  python/google/protobuf/python_protobuf.h                                   \
953  python/google/protobuf/proto_api.h                                         \
954  python/google/protobuf/proto_builder.py                                    \
955  python/google/protobuf/pyext/README                                        \
956  python/google/protobuf/pyext/__init__.py                                   \
957  python/google/protobuf/pyext/cpp_message.py                                \
958  python/google/protobuf/pyext/descriptor.cc                                 \
959  python/google/protobuf/pyext/descriptor.h                                  \
960  python/google/protobuf/pyext/descriptor_containers.cc                      \
961  python/google/protobuf/pyext/descriptor_containers.h                       \
962  python/google/protobuf/pyext/descriptor_database.cc                        \
963  python/google/protobuf/pyext/descriptor_database.h                         \
964  python/google/protobuf/pyext/descriptor_pool.cc                            \
965  python/google/protobuf/pyext/descriptor_pool.h                             \
966  python/google/protobuf/pyext/extension_dict.cc                             \
967  python/google/protobuf/pyext/extension_dict.h                              \
968  python/google/protobuf/pyext/map_container.cc                              \
969  python/google/protobuf/pyext/map_container.h                               \
970  python/google/protobuf/pyext/message.cc                                    \
971  python/google/protobuf/pyext/message.h                                     \
972  python/google/protobuf/pyext/field.cc                                      \
973  python/google/protobuf/pyext/field.h                                       \
974  python/google/protobuf/pyext/unknown_fields.cc                             \
975  python/google/protobuf/pyext/unknown_fields.h                              \
976  python/google/protobuf/pyext/message_factory.cc                            \
977  python/google/protobuf/pyext/message_factory.h                             \
978  python/google/protobuf/pyext/message_module.cc                             \
979  python/google/protobuf/pyext/proto2_api_test.proto                         \
980  python/google/protobuf/pyext/python.proto                                  \
981  python/google/protobuf/pyext/repeated_composite_container.cc               \
982  python/google/protobuf/pyext/repeated_composite_container.h                \
983  python/google/protobuf/pyext/repeated_scalar_container.cc                  \
984  python/google/protobuf/pyext/repeated_scalar_container.h                   \
985  python/google/protobuf/pyext/safe_numerics.h                               \
986  python/google/protobuf/pyext/scoped_pyobject_ptr.h                         \
987  python/google/protobuf/reflection.py                                       \
988  python/google/protobuf/service.py                                          \
989  python/google/protobuf/service_reflection.py                               \
990  python/google/protobuf/symbol_database.py                                  \
991  python/google/protobuf/text_encoding.py                                    \
992  python/google/protobuf/text_format.py                                      \
993  python/google/protobuf/util/__init__.py                                    \
994  python/release.sh                                                          \
995  python/mox.py                                                              \
996  python/setup.cfg                                                           \
997  python/setup.py                                                            \
998  python/stubout.py                                                          \
999  python/tox.ini                                                             \
1000  python/README.md
1001
1002ruby_EXTRA_DIST=                                                             \
1003  ruby/Gemfile                                                               \
1004  ruby/.gitignore                                                            \
1005  ruby/README.md                                                             \
1006  ruby/Rakefile                                                              \
1007  ruby/compatibility_tests/v3.0.0/tests/test_import.proto                    \
1008  ruby/compatibility_tests/v3.0.0/tests/stress.rb                            \
1009  ruby/compatibility_tests/v3.0.0/tests/repeated_field_test.rb               \
1010  ruby/compatibility_tests/v3.0.0/tests/generated_code_test.rb               \
1011  ruby/compatibility_tests/v3.0.0/tests/generated_code.proto                 \
1012  ruby/compatibility_tests/v3.0.0/tests/basic.rb                             \
1013  ruby/compatibility_tests/v3.0.0/test.sh                                    \
1014  ruby/compatibility_tests/v3.0.0/Rakefile                                   \
1015  ruby/compatibility_tests/v3.0.0/README.md                                  \
1016  ruby/ext/google/protobuf_c/defs.c                                          \
1017  ruby/ext/google/protobuf_c/encode_decode.c                                 \
1018  ruby/ext/google/protobuf_c/extconf.rb                                      \
1019  ruby/ext/google/protobuf_c/map.c                                           \
1020  ruby/ext/google/protobuf_c/message.c                                       \
1021  ruby/ext/google/protobuf_c/protobuf.c                                      \
1022  ruby/ext/google/protobuf_c/protobuf.h                                      \
1023  ruby/ext/google/protobuf_c/repeated_field.c                                \
1024  ruby/ext/google/protobuf_c/storage.c                                       \
1025  ruby/ext/google/protobuf_c/upb.c                                           \
1026  ruby/ext/google/protobuf_c/upb.h                                           \
1027  ruby/ext/google/protobuf_c/wrap_memcpy.c                                   \
1028  ruby/google-protobuf.gemspec                                               \
1029  ruby/lib/google/protobuf/message_exts.rb                                   \
1030  ruby/lib/google/protobuf/repeated_field.rb                                 \
1031  ruby/lib/google/protobuf/well_known_types.rb                               \
1032  ruby/lib/google/protobuf.rb                                                \
1033  ruby/pom.xml                                                               \
1034  ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java              \
1035  ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java           \
1036  ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java       \
1037  ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java   \
1038  ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java       \
1039  ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java                 \
1040  ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java      \
1041  ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java                  \
1042  ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \
1043  ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java              \
1044  ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java  \
1045  ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java      \
1046  ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java             \
1047  ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java        \
1048  ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java       \
1049  ruby/src/main/java/com/google/protobuf/jruby/Utils.java                    \
1050  ruby/src/main/java/google/ProtobufJavaService.java                         \
1051  ruby/src/main/sentinel.proto                                               \
1052  ruby/tests/basic_proto2.rb                                                 \
1053  ruby/tests/basic_test_proto2.proto                                         \
1054  ruby/tests/basic_test.proto                                                \
1055  ruby/tests/basic.rb                                                        \
1056  ruby/tests/common_tests.rb                                                 \
1057  ruby/tests/encode_decode_test.rb                                           \
1058  ruby/tests/gc_test.rb                                                      \
1059  ruby/tests/repeated_field_test.rb                                          \
1060  ruby/tests/stress.rb                                                       \
1061  ruby/tests/generated_code_proto2_test.rb                                   \
1062  ruby/tests/generated_code_proto2.proto                                     \
1063  ruby/tests/generated_code.proto                                            \
1064  ruby/tests/test_import_proto2.proto                                        \
1065  ruby/tests/test_import.proto                                               \
1066  ruby/tests/test_ruby_package_proto2.proto                                  \
1067  ruby/tests/test_ruby_package.proto                                         \
1068  ruby/tests/generated_code_test.rb                                          \
1069  ruby/tests/well_known_types_test.rb                                        \
1070  ruby/tests/type_errors.rb                                                  \
1071  ruby/travis-test.sh
1072
1073js_EXTRA_DIST=                                                         \
1074  js/README.md                                                         \
1075  js/binary/arith.js                                                   \
1076  js/binary/arith_test.js                                              \
1077  js/binary/constants.js                                               \
1078  js/binary/decoder.js                                                 \
1079  js/binary/decoder_test.js                                            \
1080  js/binary/encoder.js                                                 \
1081  js/binary/message_test.js                                            \
1082  js/binary/proto_test.js                                              \
1083  js/binary/reader.js                                                  \
1084  js/binary/reader_test.js                                             \
1085  js/binary/utils.js                                                   \
1086  js/binary/utils_test.js                                              \
1087  js/binary/writer.js                                                  \
1088  js/binary/writer_test.js                                             \
1089  js/commonjs/export.js                                                \
1090  js/commonjs/export_asserts.js                                        \
1091  js/commonjs/export_testdeps.js                                       \
1092  js/commonjs/import_test.js                                           \
1093  js/commonjs/jasmine.json                                             \
1094  js/commonjs/rewrite_tests_for_commonjs.js                            \
1095  js/commonjs/strict_test.js                                           \
1096  js/commonjs/test6/test6.proto                                        \
1097  js/commonjs/test7/test7.proto                                        \
1098  js/compatibility_tests/v3.0.0/binary/arith_test.js                   \
1099  js/compatibility_tests/v3.0.0/binary/decoder_test.js                 \
1100  js/compatibility_tests/v3.0.0/binary/proto_test.js                   \
1101  js/compatibility_tests/v3.0.0/binary/reader_test.js                  \
1102  js/compatibility_tests/v3.0.0/binary/utils_test.js                   \
1103  js/compatibility_tests/v3.0.0/binary/writer_test.js                  \
1104  js/compatibility_tests/v3.0.0/commonjs/export_asserts.js             \
1105  js/compatibility_tests/v3.0.0/commonjs/export_testdeps.js            \
1106  js/compatibility_tests/v3.0.0/commonjs/import_test.js                \
1107  js/compatibility_tests/v3.0.0/commonjs/jasmine.json                  \
1108  js/compatibility_tests/v3.0.0/commonjs/rewrite_tests_for_commonjs.js \
1109  js/compatibility_tests/v3.0.0/commonjs/test6/test6.proto             \
1110  js/compatibility_tests/v3.0.0/commonjs/test7/test7.proto             \
1111  js/compatibility_tests/v3.0.0/data.proto                             \
1112  js/compatibility_tests/v3.0.0/debug_test.js                          \
1113  js/compatibility_tests/v3.0.0/jasmine1.json                          \
1114  js/compatibility_tests/v3.0.0/jasmine2.json                          \
1115  js/compatibility_tests/v3.0.0/jasmine3.json                          \
1116  js/compatibility_tests/v3.0.0/message_test.js                        \
1117  js/compatibility_tests/v3.0.0/proto3_test.js                         \
1118  js/compatibility_tests/v3.0.0/proto3_test.proto                      \
1119  js/compatibility_tests/v3.0.0/test2.proto                            \
1120  js/compatibility_tests/v3.0.0/test3.proto                            \
1121  js/compatibility_tests/v3.0.0/test4.proto                            \
1122  js/compatibility_tests/v3.0.0/test5.proto                            \
1123  js/compatibility_tests/v3.0.0/testbinary.proto                       \
1124  js/compatibility_tests/v3.0.0/testempty.proto                        \
1125  js/compatibility_tests/v3.0.0/test.proto                             \
1126  js/compatibility_tests/v3.0.0/test.sh                                \
1127  js/compatibility_tests/v3.1.0/testempty.proto                        \
1128  js/compatibility_tests/v3.1.0/testbinary.proto                       \
1129  js/compatibility_tests/v3.1.0/test5.proto                            \
1130  js/compatibility_tests/v3.1.0/test4.proto                            \
1131  js/compatibility_tests/v3.1.0/test3.proto                            \
1132  js/compatibility_tests/v3.1.0/test2.proto                            \
1133  js/compatibility_tests/v3.1.0/test.proto                             \
1134  js/compatibility_tests/v3.1.0/proto3_test.proto                      \
1135  js/compatibility_tests/v3.1.0/proto3_test.js                         \
1136  js/compatibility_tests/v3.1.0/message_test.js                        \
1137  js/compatibility_tests/v3.1.0/maps_test.js                           \
1138  js/compatibility_tests/v3.1.0/debug_test.js                          \
1139  js/compatibility_tests/v3.1.0/data.proto                             \
1140  js/compatibility_tests/v3.1.0/commonjs/test7/test7.proto             \
1141  js/compatibility_tests/v3.1.0/commonjs/test6/test6.proto             \
1142  js/compatibility_tests/v3.1.0/binary/writer_test.js                  \
1143  js/compatibility_tests/v3.1.0/binary/utils_test.js                   \
1144  js/compatibility_tests/v3.1.0/binary/reader_test.js                  \
1145  js/compatibility_tests/v3.1.0/binary/proto_test.js                   \
1146  js/compatibility_tests/v3.1.0/binary/decoder_test.js                 \
1147  js/compatibility_tests/v3.1.0/binary/arith_test.js                   \
1148  js/data.proto                                                        \
1149  js/debug.js                                                          \
1150  js/debug_test.js                                                     \
1151  js/gulpfile.js                                                       \
1152  js/jasmine.json                                                      \
1153  js/map.js                                                            \
1154  js/maps_test.js                                                      \
1155  js/message.js                                                        \
1156  js/message_test.js                                                   \
1157  js/node_loader.js                                                    \
1158  js/package.json                                                      \
1159  js/proto3_test.js                                                    \
1160  js/proto3_test.proto                                                 \
1161  js/test.proto                                                        \
1162  js/test2.proto                                                       \
1163  js/test3.proto                                                       \
1164  js/test4.proto                                                       \
1165  js/test5.proto                                                       \
1166  js/test8.proto                                                       \
1167  js/test9.proto                                                       \
1168  js/test10.proto                                                      \
1169  js/test11.proto                                                      \
1170  js/test12.proto                                                      \
1171  js/test13.proto                                                      \
1172  js/test14.proto                                                      \
1173  js/test15.proto                                                      \
1174  js/test_bootstrap.js                                                 \
1175  js/testbinary.proto                                                  \
1176  js/testempty.proto
1177
1178all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(php_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) $(js_EXTRA_DIST)
1179
1180EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST)   \
1181  autogen.sh                             \
1182  generate_descriptor_proto.sh           \
1183  README.md                              \
1184  LICENSE                                \
1185  CONTRIBUTORS.txt                       \
1186  CHANGES.txt                            \
1187  update_file_lists.sh                   \
1188  BUILD                                  \
1189  WORKSPACE                              \
1190  cmake/CMakeLists.txt                   \
1191  cmake/README.md                        \
1192  cmake/conformance.cmake                   \
1193  cmake/examples.cmake                   \
1194  cmake/extract_includes.bat.in          \
1195  cmake/install.cmake                    \
1196  cmake/libprotobuf.cmake                \
1197  cmake/libprotobuf-lite.cmake           \
1198  cmake/libprotoc.cmake                  \
1199  cmake/protobuf-config-version.cmake.in \
1200  cmake/protobuf-config.cmake.in         \
1201  cmake/protobuf-lite.pc.cmake           \
1202  cmake/protobuf-module.cmake.in         \
1203  cmake/protobuf-options.cmake           \
1204  cmake/protobuf.pc.cmake                \
1205  cmake/protoc.cmake                     \
1206  cmake/tests.cmake                      \
1207  cmake/version.rc.in                    \
1208  compiler_config_setting.bzl            \
1209  editors/README.txt                     \
1210  editors/proto.vim                      \
1211  editors/protobuf-mode.el               \
1212  examples/AddPerson.java                \
1213  examples/BUILD                         \
1214  examples/CMakeLists.txt                \
1215  examples/ListPeople.java               \
1216  examples/Makefile                      \
1217  examples/README.md                     \
1218  examples/WORKSPACE                     \
1219  examples/add_person.cc                 \
1220  examples/add_person.dart               \
1221  examples/add_person.go                 \
1222  examples/add_person.py                 \
1223  examples/add_person_test.go            \
1224  examples/addressbook.proto             \
1225  examples/list_people.cc                \
1226  examples/list_people.dart              \
1227  examples/list_people.go                \
1228  examples/list_people.py                \
1229  examples/list_people_test.go           \
1230  examples/pubspec.yaml                  \
1231  examples/third_party/zlib.BUILD        \
1232  protobuf.bzl                           \
1233  protobuf_deps.bzl                      \
1234  python/release/wheel/build_wheel_manylinux.sh  \
1235  python/release/wheel/Dockerfile                \
1236  python/release/wheel/protobuf_optimized_pip.sh \
1237  python/release/wheel/README.md         \
1238  six.BUILD                              \
1239  third_party/zlib.BUILD                 \
1240  util/python/BUILD
1241
1242
1243# Deletes all the files generated by autogen.sh.
1244MAINTAINERCLEANFILES =   \
1245  aclocal.m4             \
1246  ar-lib                 \
1247  config.guess           \
1248  config.sub             \
1249  configure              \
1250  depcomp                \
1251  install-sh             \
1252  ltmain.sh              \
1253  Makefile.in            \
1254  missing                \
1255  mkinstalldirs          \
1256  config.h.in            \
1257  stamp.h.in             \
1258  m4/ltsugar.m4          \
1259  m4/libtool.m4          \
1260  m4/ltversion.m4        \
1261  m4/lt~obsolete.m4      \
1262  m4/ltoptions.m4
1263