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