Makefile.am 94 KB
Newer Older
temporal's avatar
temporal committed
1 2 3 4
## Process this file with automake to produce Makefile.in

ACLOCAL_AMFLAGS = -I m4

kenton@google.com's avatar
kenton@google.com committed
5 6
AUTOMAKE_OPTIONS = foreign

7 8 9 10
# Build . before src so that our all-local and clean-local hooks kicks in at
# the right time.
SUBDIRS = . src

11 12
# Always include third_party directories in distributions.
DIST_SUBDIRS = src conformance benchmarks third_party/googletest
13

14 15
# Build gmock before we build protobuf tests.  We don't add gmock to SUBDIRS
# 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 18
# want "make install" to recurse into gmock since we don't want to overwrite
# the installed version of gmock if there is one.
19
check-local:
20
	@echo "Making lib/libgmock.a lib/libgmock_main.a in gmock"
21 22
	@cd third_party/googletest/googletest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la
	@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 27
# "make distclean" already recurses into gmock because it's listed among the
# DIST_SUBDIRS.  distclean will delete gmock/Makefile, so if we then try to
28 29 30
# cd to the directory again and "make clean" it will fail.  So, check that the
# Makefile exists before recursing.
clean-local:
31 32 33
	@if test -e third_party/googletest/Makefile; then \
	  echo "Making clean in googletest"; \
	  cd third_party/googletest && $(MAKE) $(AM_MAKEFLAGS) clean; \
34 35 36 37
	fi; \
	if test -e conformance/Makefile; then \
	  echo "Making clean in conformance"; \
	  cd conformance && $(MAKE) $(AM_MAKEFLAGS) clean; \
38
	fi; \
39 40 41 42
	if test -e benchmarks/Makefile; then \
	  echo "Making clean in benchmarks"; \
	  cd benchmarks && $(MAKE) $(AM_MAKEFLAGS) clean; \
	fi; \
43 44 45
	if test -e objectivec/DevTools; then \
	  echo "Cleaning any ObjC pyc files"; \
	  rm -f objectivec/DevTools/*.pyc; \
46
	fi
temporal's avatar
temporal committed
47

48 49 50
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = protobuf.pc protobuf-lite.pc

51
csharp_EXTRA_DIST=                                                           \
52
  global.json                                                                \
Feng Xiao's avatar
Feng Xiao committed
53
  csharp/.gitignore                                                          \
54
  csharp/CHANGES.txt                                                         \
55
  csharp/Google.Protobuf.Tools.targets                                       \
56
  csharp/Google.Protobuf.Tools.nuspec                                        \
57 58
  csharp/README.md                                                           \
  csharp/build_packages.bat                                                  \
59
  csharp/build_tools.sh                                                      \
60
  csharp/buildall.bat                                                        \
61 62
  csharp/buildall.sh                                                         \
  csharp/generate_protos.sh                                                  \
63
  csharp/install_dotnet_sdk.ps1                                              \
Jan Tattermusch's avatar
Jan Tattermusch committed
64
  csharp/keys/Google.Protobuf.public.snk                                     \
65
  csharp/keys/Google.Protobuf.snk                                            \
Jan Tattermusch's avatar
Jan Tattermusch committed
66
  csharp/keys/README.md                                                      \
67 68
  csharp/protos/README.md                                                    \
  csharp/protos/map_unittest_proto3.proto                                    \
Jon Skeet's avatar
Jon Skeet committed
69 70
  csharp/protos/old_extensions1.proto                                        \
  csharp/protos/old_extensions2.proto                                        \
71 72 73
  csharp/protos/unittest_issue6936_a.proto                                   \
  csharp/protos/unittest_issue6936_b.proto                                   \
  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.proto                                               \
82 83
  csharp/src/AddressBook/AddPerson.cs                                        \
  csharp/src/AddressBook/Addressbook.cs                                      \
84
  csharp/src/AddressBook/AddressBook.csproj                                  \
85 86 87
  csharp/src/AddressBook/ListPeople.cs                                       \
  csharp/src/AddressBook/Program.cs                                          \
  csharp/src/AddressBook/SampleUsage.cs                                      \
88
  csharp/src/Google.Protobuf.Benchmarks/BenchmarkMessage1Proto3.cs           \
Jan Tattermusch's avatar
Jan Tattermusch committed
89 90 91 92 93 94 95 96
  csharp/src/Google.Protobuf.Benchmarks/Benchmarks.cs                        \
  csharp/src/Google.Protobuf.Benchmarks/Google.Protobuf.Benchmarks.csproj    \
  csharp/src/Google.Protobuf.Benchmarks/Program.cs                           \
  csharp/src/Google.Protobuf.Benchmarks/SerializationBenchmark.cs            \
  csharp/src/Google.Protobuf.Benchmarks/SerializationConfig.cs               \
  csharp/src/Google.Protobuf.Benchmarks/wrapper_benchmark_messages.proto     \
  csharp/src/Google.Protobuf.Benchmarks/WrapperBenchmark.cs                  \
  csharp/src/Google.Protobuf.Benchmarks/WrapperBenchmarkMessages.cs          \
Feng Xiao's avatar
Feng Xiao committed
97
  csharp/src/Google.Protobuf.Conformance/Conformance.cs                      \
98
  csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj  \
Feng Xiao's avatar
Feng Xiao committed
99
  csharp/src/Google.Protobuf.Conformance/Program.cs                          \
100
  csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj        \
101 102 103 104 105 106
  csharp/src/Google.Protobuf.JsonDump/Program.cs                             \
  csharp/src/Google.Protobuf.Test/ByteStringTest.cs                          \
  csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs              \
  csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs                    \
  csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs                   \
  csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs                \
107
  csharp/src/Google.Protobuf.Test/Collections/ProtobufEqualityComparersTest.cs \
108
  csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs           \
Feng Xiao's avatar
Feng Xiao committed
109
  csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \
110
  csharp/src/Google.Protobuf.Test/Compatibility/StreamExtensionsTest.cs      \
Feng Xiao's avatar
Feng Xiao committed
111
  csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs        \
112 113
  csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs                    \
  csharp/src/Google.Protobuf.Test/EqualityTester.cs                          \
114
  csharp/src/Google.Protobuf.Test/ExtensionSetTest.cs                        \
115
  csharp/src/Google.Protobuf.Test/FieldCodecTest.cs                          \
116
  csharp/src/Google.Protobuf.Test/FieldMaskTreeTest.cs                       \
117
  csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs                    \
118
  csharp/src/Google.Protobuf.Test/GeneratedMessageTest.Proto2.cs             \
119
  csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj                \
120 121
  csharp/src/Google.Protobuf.Test/IssuesTest.cs                              \
  csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs                       \
122 123
  csharp/src/Google.Protobuf.Test/JsonParserTest.cs                          \
  csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs                       \
124
  csharp/src/Google.Protobuf.Test/Reflection/CustomOptionsTest.cs            \
125
  csharp/src/Google.Protobuf.Test/Reflection/DescriptorDeclarationTest.cs    \
126
  csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs              \
Feng Xiao's avatar
Feng Xiao committed
127
  csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs              \
128
  csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs             \
129 130
  csharp/src/Google.Protobuf.Test/SampleEnum.cs                              \
  csharp/src/Google.Protobuf.Test/SampleMessages.cs                          \
131
  csharp/src/Google.Protobuf.Test/SampleNaNs.cs                              \
132
  csharp/src/Google.Protobuf.Test/TestCornerCases.cs                         \
133
  csharp/src/Google.Protobuf.Test.TestProtos/Google.Protobuf.Test.TestProtos.csproj \
134 135 136
  csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936A.cs              \
  csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.cs              \
  csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.cs              \
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
  csharp/src/Google.Protobuf.Test.TestProtos/ForeignMessagePartial.cs           \
  csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.cs               \
  csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs                  \
  csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions2.cs                  \
  csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.cs              \
  csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.cs              \
  csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.cs     \
  csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.cs            \
  csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.cs      \
  csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.cs            \
  csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.cs                  \
  csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.cs                  \
  csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.cs                  \
  csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.cs          \
  csharp/src/Google.Protobuf.Test.TestProtos/Unittest.cs                        \
152
  csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs                  \
Feng Xiao's avatar
Feng Xiao committed
153
  csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs             \
154
  csharp/src/Google.Protobuf.Test/WellKnownTypes/FieldMaskTest.cs            \
Feng Xiao's avatar
Feng Xiao committed
155
  csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs            \
156
  csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs             \
157
  csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs                     \
158
  csharp/src/Google.Protobuf.Test/testprotos.pb                              \
159 160 161 162 163 164
  csharp/src/Google.Protobuf.sln                                             \
  csharp/src/Google.Protobuf/ByteArray.cs                                    \
  csharp/src/Google.Protobuf/ByteString.cs                                   \
  csharp/src/Google.Protobuf/CodedInputStream.cs                             \
  csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs                \
  csharp/src/Google.Protobuf/CodedOutputStream.cs                            \
165
  csharp/src/Google.Protobuf/Collections/Lists.cs                            \
166
  csharp/src/Google.Protobuf/Collections/MapField.cs                         \
167
  csharp/src/Google.Protobuf/Collections/ProtobufEqualityComparers.cs        \
168 169
  csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs               \
  csharp/src/Google.Protobuf/Collections/RepeatedField.cs                    \
170
  csharp/src/Google.Protobuf/Compatibility/MethodInfoExtensions.cs           \
Feng Xiao's avatar
Feng Xiao committed
171
  csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs         \
172
  csharp/src/Google.Protobuf/Compatibility/StreamExtensions.cs               \
Feng Xiao's avatar
Feng Xiao committed
173
  csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs                 \
174 175 176 177
  csharp/src/Google.Protobuf/Extension.cs                                    \
  csharp/src/Google.Protobuf/ExtensionRegistry.cs                            \
  csharp/src/Google.Protobuf/ExtensionSet.cs                                 \
  csharp/src/Google.Protobuf/ExtensionValue.cs                               \
178
  csharp/src/Google.Protobuf/FieldCodec.cs                                   \
179
  csharp/src/Google.Protobuf/FieldMaskTree.cs                                \
180
  csharp/src/Google.Protobuf/FrameworkPortability.cs                         \
181
  csharp/src/Google.Protobuf/Google.Protobuf.csproj                          \
182
  csharp/src/Google.Protobuf/ICustomDiagnosticMessage.cs                     \
Feng Xiao's avatar
Feng Xiao committed
183
  csharp/src/Google.Protobuf/IDeepCloneable.cs                               \
184
  csharp/src/Google.Protobuf/IExtendableMessage.cs                           \
185
  csharp/src/Google.Protobuf/IMessage.cs                                     \
186
  csharp/src/Google.Protobuf/InvalidJsonException.cs                         \
187 188
  csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs               \
  csharp/src/Google.Protobuf/JsonFormatter.cs                                \
189 190 191
  csharp/src/Google.Protobuf/JsonParser.cs                                   \
  csharp/src/Google.Protobuf/JsonToken.cs                                    \
  csharp/src/Google.Protobuf/JsonTokenizer.cs                                \
192 193 194
  csharp/src/Google.Protobuf/LimitedInputStream.cs                           \
  csharp/src/Google.Protobuf/MessageExtensions.cs                            \
  csharp/src/Google.Protobuf/MessageParser.cs                                \
195
  csharp/src/Google.Protobuf/ObjectIntPair.cs                                \
196
  csharp/src/Google.Protobuf/ProtoPreconditions.cs                           \
197
  csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs                      \
198
  csharp/src/Google.Protobuf/Reflection/CustomOptions.cs                     \
199
  csharp/src/Google.Protobuf/Reflection/Descriptor.cs                        \
200
  csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs                    \
201
  csharp/src/Google.Protobuf/Reflection/DescriptorDeclaration.cs             \
202 203 204 205 206
  csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs                    \
  csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs                    \
  csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs     \
  csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs                    \
  csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs               \
207 208
  csharp/src/Google.Protobuf/Reflection/ExtensionAccessor.cs                 \
  csharp/src/Google.Protobuf/Reflection/ExtensionCollection.cs               \
209 210 211 212
  csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs                 \
  csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs                   \
  csharp/src/Google.Protobuf/Reflection/FieldType.cs                         \
  csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs                    \
213
  csharp/src/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs              \
214 215 216 217 218 219 220
  csharp/src/Google.Protobuf/Reflection/IDescriptor.cs                       \
  csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs                    \
  csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs                  \
  csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs                 \
  csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs                  \
  csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs                     \
  csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs                   \
221
  csharp/src/Google.Protobuf/Reflection/OriginalNameAttribute.cs             \
222 223 224 225 226
  csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs                 \
  csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs                    \
  csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs             \
  csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs                 \
  csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs               \
227
  csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs                      \
228
  csharp/src/Google.Protobuf/WellKnownTypes/Any.cs                           \
229
  csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs                    \
230 231
  csharp/src/Google.Protobuf/WellKnownTypes/Api.cs                           \
  csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs                      \
Feng Xiao's avatar
Feng Xiao committed
232
  csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs               \
233 234
  csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs                         \
  csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs                     \
235
  csharp/src/Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs              \
236 237
  csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs                 \
  csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs                        \
Feng Xiao's avatar
Feng Xiao committed
238
  csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs                \
239
  csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs                     \
Feng Xiao's avatar
Feng Xiao committed
240
  csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs              \
241
  csharp/src/Google.Protobuf/WellKnownTypes/Type.cs                          \
242
  csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs                  \
243
  csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs                      \
244
  csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs               \
245 246 247
  csharp/src/Google.Protobuf/WireFormat.cs                                   \
  csharp/src/Google.Protobuf/UnknownField.cs                                 \
  csharp/src/Google.Protobuf/UnknownFieldSet.cs
248

249 250
java_EXTRA_DIST=                                                                   \
  java/README.md                                                                   \
251
  java/bom/pom.xml                                                                 \
252 253 254 255 256 257 258
  java/core/generate-sources-build.xml                                             \
  java/core/generate-test-sources-build.xml                                        \
  java/core/pom.xml                                                                \
  java/core/src/main/java/com/google/protobuf/AbstractMessage.java                 \
  java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java             \
  java/core/src/main/java/com/google/protobuf/AbstractParser.java                  \
  java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java            \
259
  java/core/src/main/java/com/google/protobuf/AllocatedBuffer.java                 \
260
  java/core/src/main/java/com/google/protobuf/Android.java                         \
261 262 263
  java/core/src/main/java/com/google/protobuf/ArrayDecoders.java                   \
  java/core/src/main/java/com/google/protobuf/BinaryReader.java                    \
  java/core/src/main/java/com/google/protobuf/BinaryWriter.java                    \
264 265 266
  java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java              \
  java/core/src/main/java/com/google/protobuf/BlockingService.java                 \
  java/core/src/main/java/com/google/protobuf/BooleanArrayList.java                \
267
  java/core/src/main/java/com/google/protobuf/BufferAllocator.java                 \
268 269
  java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java                \
  java/core/src/main/java/com/google/protobuf/ByteOutput.java                      \
270 271
  java/core/src/main/java/com/google/protobuf/ByteString.java                      \
  java/core/src/main/java/com/google/protobuf/CodedInputStream.java                \
272
  java/core/src/main/java/com/google/protobuf/CodedInputStreamReader.java          \
273
  java/core/src/main/java/com/google/protobuf/CodedOutputStream.java               \
274 275
  java/core/src/main/java/com/google/protobuf/CodedOutputStreamWriter.java         \
  java/core/src/main/java/com/google/protobuf/DescriptorMessageInfoFactory.java    \
276
  java/core/src/main/java/com/google/protobuf/Descriptors.java                     \
277
  java/core/src/main/java/com/google/protobuf/DiscardUnknownFieldsParser.java      \
278 279
  java/core/src/main/java/com/google/protobuf/DoubleArrayList.java                 \
  java/core/src/main/java/com/google/protobuf/DynamicMessage.java                  \
280
  java/core/src/main/java/com/google/protobuf/ExperimentalApi.java                 \
281 282 283
  java/core/src/main/java/com/google/protobuf/Extension.java                       \
  java/core/src/main/java/com/google/protobuf/ExtensionLite.java                   \
  java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java               \
284
  java/core/src/main/java/com/google/protobuf/ExtensionRegistryFactory.java        \
285
  java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java           \
286 287 288 289 290
  java/core/src/main/java/com/google/protobuf/ExtensionSchema.java                 \
  java/core/src/main/java/com/google/protobuf/ExtensionSchemaFull.java             \
  java/core/src/main/java/com/google/protobuf/ExtensionSchemaLite.java             \
  java/core/src/main/java/com/google/protobuf/ExtensionSchemas.java                \
  java/core/src/main/java/com/google/protobuf/FieldInfo.java                       \
291
  java/core/src/main/java/com/google/protobuf/FieldSet.java                        \
292
  java/core/src/main/java/com/google/protobuf/FieldType.java                       \
293 294
  java/core/src/main/java/com/google/protobuf/FloatArrayList.java                  \
  java/core/src/main/java/com/google/protobuf/GeneratedMessage.java                \
295
  java/core/src/main/java/com/google/protobuf/GeneratedMessageInfoFactory.java     \
296
  java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java            \
297
  java/core/src/main/java/com/google/protobuf/GeneratedMessageV3.java              \
298 299 300
  java/core/src/main/java/com/google/protobuf/IntArrayList.java                    \
  java/core/src/main/java/com/google/protobuf/Internal.java                        \
  java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java  \
301
  java/core/src/main/java/com/google/protobuf/IterableByteBufferInputStream.java   \
302
  java/core/src/main/java/com/google/protobuf/JavaType.java                        \
303 304 305 306
  java/core/src/main/java/com/google/protobuf/LazyField.java                       \
  java/core/src/main/java/com/google/protobuf/LazyFieldLite.java                   \
  java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java             \
  java/core/src/main/java/com/google/protobuf/LazyStringList.java                  \
307
  java/core/src/main/java/com/google/protobuf/ListFieldSchema.java                 \
308
  java/core/src/main/java/com/google/protobuf/LongArrayList.java                   \
309
  java/core/src/main/java/com/google/protobuf/ManifestSchemaFactory.java           \
310 311 312 313
  java/core/src/main/java/com/google/protobuf/MapEntry.java                        \
  java/core/src/main/java/com/google/protobuf/MapEntryLite.java                    \
  java/core/src/main/java/com/google/protobuf/MapField.java                        \
  java/core/src/main/java/com/google/protobuf/MapFieldLite.java                    \
314 315 316 317
  java/core/src/main/java/com/google/protobuf/MapFieldSchema.java                  \
  java/core/src/main/java/com/google/protobuf/MapFieldSchemaFull.java              \
  java/core/src/main/java/com/google/protobuf/MapFieldSchemaLite.java              \
  java/core/src/main/java/com/google/protobuf/MapFieldSchemas.java                 \
318
  java/core/src/main/java/com/google/protobuf/Message.java                         \
319 320
  java/core/src/main/java/com/google/protobuf/MessageInfo.java                     \
  java/core/src/main/java/com/google/protobuf/MessageInfoFactory.java              \
321 322 323 324 325
  java/core/src/main/java/com/google/protobuf/MessageLite.java                     \
  java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java            \
  java/core/src/main/java/com/google/protobuf/MessageLiteToString.java             \
  java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java                \
  java/core/src/main/java/com/google/protobuf/MessageReflection.java               \
326 327
  java/core/src/main/java/com/google/protobuf/MessageSchema.java                   \
  java/core/src/main/java/com/google/protobuf/MessageSetSchema.java                \
328
  java/core/src/main/java/com/google/protobuf/MutabilityOracle.java                \
329 330 331 332
  java/core/src/main/java/com/google/protobuf/NewInstanceSchema.java               \
  java/core/src/main/java/com/google/protobuf/NewInstanceSchemaFull.java           \
  java/core/src/main/java/com/google/protobuf/NewInstanceSchemaLite.java           \
  java/core/src/main/java/com/google/protobuf/NewInstanceSchemas.java              \
333
  java/core/src/main/java/com/google/protobuf/NioByteString.java                   \
334
  java/core/src/main/java/com/google/protobuf/OneofInfo.java                       \
335
  java/core/src/main/java/com/google/protobuf/Parser.java                          \
336
  java/core/src/main/java/com/google/protobuf/PrimitiveNonBoxingCollection.java    \
337 338
  java/core/src/main/java/com/google/protobuf/ProtoSyntax.java                     \
  java/core/src/main/java/com/google/protobuf/Protobuf.java                        \
339
  java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java               \
340
  java/core/src/main/java/com/google/protobuf/ProtobufLists.java                   \
341 342
  java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java             \
  java/core/src/main/java/com/google/protobuf/ProtocolStringList.java              \
343 344
  java/core/src/main/java/com/google/protobuf/RawMessageInfo.java                  \
  java/core/src/main/java/com/google/protobuf/Reader.java                          \
345
  java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java            \
346
  java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java          \
347 348 349 350 351
  java/core/src/main/java/com/google/protobuf/RopeByteString.java                  \
  java/core/src/main/java/com/google/protobuf/RpcCallback.java                     \
  java/core/src/main/java/com/google/protobuf/RpcChannel.java                      \
  java/core/src/main/java/com/google/protobuf/RpcController.java                   \
  java/core/src/main/java/com/google/protobuf/RpcUtil.java                         \
352 353 354
  java/core/src/main/java/com/google/protobuf/Schema.java                          \
  java/core/src/main/java/com/google/protobuf/SchemaFactory.java                   \
  java/core/src/main/java/com/google/protobuf/SchemaUtil.java                      \
355 356 357
  java/core/src/main/java/com/google/protobuf/Service.java                         \
  java/core/src/main/java/com/google/protobuf/ServiceException.java                \
  java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java              \
358
  java/core/src/main/java/com/google/protobuf/SingleFieldBuilderV3.java            \
359
  java/core/src/main/java/com/google/protobuf/SmallSortedMap.java                  \
360
  java/core/src/main/java/com/google/protobuf/StructuralMessageInfo.java           \
361 362
  java/core/src/main/java/com/google/protobuf/TextFormat.java                      \
  java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java               \
363 364
  java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java         \
  java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java         \
365
  java/core/src/main/java/com/google/protobuf/TypeRegistry.java                    \
366
  java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java   \
367
  java/core/src/main/java/com/google/protobuf/UnknownFieldSchema.java              \
368 369
  java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java                 \
  java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java             \
370 371
  java/core/src/main/java/com/google/protobuf/UnknownFieldSetLiteSchema.java       \
  java/core/src/main/java/com/google/protobuf/UnknownFieldSetSchema.java           \
372
  java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java      \
373
  java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java            \
374
  java/core/src/main/java/com/google/protobuf/UnsafeUtil.java                      \
375 376
  java/core/src/main/java/com/google/protobuf/Utf8.java                            \
  java/core/src/main/java/com/google/protobuf/WireFormat.java                      \
377
  java/core/src/main/java/com/google/protobuf/Writer.java                          \
378
  java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java             \
379 380 381 382 383
  java/core/src/test/java/com/google/protobuf/AbstractProto2LiteSchemaTest.java    \
  java/core/src/test/java/com/google/protobuf/AbstractProto2SchemaTest.java        \
  java/core/src/test/java/com/google/protobuf/AbstractProto3LiteSchemaTest.java    \
  java/core/src/test/java/com/google/protobuf/AbstractProto3SchemaTest.java        \
  java/core/src/test/java/com/google/protobuf/AbstractSchemaTest.java              \
384
  java/core/src/test/java/com/google/protobuf/AnyTest.java                         \
385 386
  java/core/src/test/java/com/google/protobuf/ArrayDecodersTest.java               \
  java/core/src/test/java/com/google/protobuf/BinaryProtocolTest.java              \
387 388
  java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java            \
  java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java           \
389
  java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java            \
390
  java/core/src/test/java/com/google/protobuf/ByteStringTest.java                  \
391
  java/core/src/test/java/com/google/protobuf/CachedFieldSizeTest.java             \
392
  java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java                   \
393
  java/core/src/test/java/com/google/protobuf/CodedAdapterTest.java                \
394 395
  java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java            \
  java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java           \
396
  java/core/src/test/java/com/google/protobuf/DecodeUtf8Test.java                  \
397 398
  java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java             \
  java/core/src/test/java/com/google/protobuf/DescriptorsTest.java                 \
Jisi Liu's avatar
Jisi Liu committed
399
  java/core/src/test/java/com/google/protobuf/DiscardUnknownFieldsTest.java        \
400 401
  java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java             \
  java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java              \
402
  java/core/src/test/java/com/google/protobuf/EnumTest.java                        \
403 404 405
  java/core/src/test/java/com/google/protobuf/ExperimentalMessageFactory.java      \
  java/core/src/test/java/com/google/protobuf/ExperimentalSerializationUtil.java   \
  java/core/src/test/java/com/google/protobuf/ExperimentalTestDataProvider.java    \
406
  java/core/src/test/java/com/google/protobuf/ExtensionRegistryFactoryTest.java    \
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
  java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java               \
  java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java              \
  java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java        \
  java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java            \
  java/core/src/test/java/com/google/protobuf/IntArrayListTest.java                \
  java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java                 \
  java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java             \
  java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java               \
  java/core/src/test/java/com/google/protobuf/LazyFieldTest.java                   \
  java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java             \
  java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java         \
  java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java          \
  java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java           \
  java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java           \
  java/core/src/test/java/com/google/protobuf/LongArrayListTest.java               \
  java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java            \
  java/core/src/test/java/com/google/protobuf/MapForProto2Test.java                \
424
  java/core/src/test/java/com/google/protobuf/MapLiteTest.java                     \
425 426 427 428
  java/core/src/test/java/com/google/protobuf/MapTest.java                         \
  java/core/src/test/java/com/google/protobuf/MessageTest.java                     \
  java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java              \
  java/core/src/test/java/com/google/protobuf/NioByteStringTest.java               \
429
  java/core/src/test/java/com/google/protobuf/PackedFieldTest.java                 \
430
  java/core/src/test/java/com/google/protobuf/ParseExceptionsTest.java             \
431
  java/core/src/test/java/com/google/protobuf/ParserLiteTest.java                  \
432
  java/core/src/test/java/com/google/protobuf/ParserTest.java                      \
433 434 435 436 437 438 439 440 441 442 443 444 445
  java/core/src/test/java/com/google/protobuf/Proto2ExtensionLookupSchemaTest.java \
  java/core/src/test/java/com/google/protobuf/Proto2LiteSchemaTest.java            \
  java/core/src/test/java/com/google/protobuf/Proto2MessageFactory.java            \
  java/core/src/test/java/com/google/protobuf/Proto2MessageInfoFactory.java        \
  java/core/src/test/java/com/google/protobuf/Proto2MessageLiteFactory.java        \
  java/core/src/test/java/com/google/protobuf/Proto2SchemaTest.java                \
  java/core/src/test/java/com/google/protobuf/Proto2UnknownEnumValueTest.java      \
  java/core/src/test/java/com/google/protobuf/Proto3LiteSchemaTest.java            \
  java/core/src/test/java/com/google/protobuf/Proto3MessageFactory.java            \
  java/core/src/test/java/com/google/protobuf/Proto3MessageInfoFactory.java        \
  java/core/src/test/java/com/google/protobuf/Proto3MessageLiteFactory.java        \
  java/core/src/test/java/com/google/protobuf/Proto3MessageLiteInfoFactory.java    \
  java/core/src/test/java/com/google/protobuf/Proto3SchemaTest.java                \
446
  java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java           \
447
  java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderV3Test.java      \
448 449 450
  java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java     \
  java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java              \
  java/core/src/test/java/com/google/protobuf/ServiceTest.java                     \
451
  java/core/src/test/java/com/google/protobuf/SingleFieldBuilderV3Test.java        \
452 453
  java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java              \
  java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java              \
454
  java/core/src/test/java/com/google/protobuf/TestBadIdentifiersLite.java          \
455 456
  java/core/src/test/java/com/google/protobuf/TestSchemas.java                     \
  java/core/src/test/java/com/google/protobuf/TestSchemasLite.java                 \
457
  java/core/src/test/java/com/google/protobuf/TestUtil.java                        \
458
  java/core/src/test/java/com/google/protobuf/TestUtilLite.java                    \
459 460
  java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java     \
  java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java     \
461
  java/core/src/test/java/com/google/protobuf/TextFormatTest.java                  \
462
  java/core/src/test/java/com/google/protobuf/TypeRegistryTest.java                \
463 464 465
  java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java            \
  java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java             \
  java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java  \
466 467
  java/core/src/test/java/com/google/protobuf/Utf8Test.java                        \
  java/core/src/test/java/com/google/protobuf/Utf8Utils.java                       \
468
  java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java              \
469
  java/core/src/test/java/com/google/protobuf/WireFormatLiteTest.java              \
470
  java/core/src/test/java/com/google/protobuf/WireFormatTest.java                  \
471 472
  java/core/src/test/java/com/google/protobuf/WrappersLiteOfMethodTest.java        \
  java/core/src/test/java/com/google/protobuf/WrappersOfMethodTest.java            \
473
  java/core/src/test/proto/com/google/protobuf/any_test.proto                      \
474
  java/core/src/test/proto/com/google/protobuf/cached_field_size_test.proto        \
Jisi Liu's avatar
Jisi Liu committed
475
  java/core/src/test/proto/com/google/protobuf/deprecated_file.proto               \
476 477 478 479 480 481
  java/core/src/test/proto/com/google/protobuf/field_presence_test.proto           \
  java/core/src/test/proto/com/google/protobuf/lazy_fields_lite.proto              \
  java/core/src/test/proto/com/google/protobuf/lite_equals_and_hash.proto          \
  java/core/src/test/proto/com/google/protobuf/map_for_proto2_lite_test.proto      \
  java/core/src/test/proto/com/google/protobuf/map_for_proto2_test.proto           \
  java/core/src/test/proto/com/google/protobuf/map_initialization_order_test.proto \
482
  java/core/src/test/proto/com/google/protobuf/map_lite_test.proto                 \
483
  java/core/src/test/proto/com/google/protobuf/map_test.proto                      \
484
  java/core/src/test/proto/com/google/protobuf/message_lite_extension_util_test.proto\
485 486 487 488 489 490 491 492 493
  java/core/src/test/proto/com/google/protobuf/multiple_files_test.proto           \
  java/core/src/test/proto/com/google/protobuf/nested_builders_test.proto          \
  java/core/src/test/proto/com/google/protobuf/nested_extension.proto              \
  java/core/src/test/proto/com/google/protobuf/nested_extension_lite.proto         \
  java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto          \
  java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto     \
  java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto         \
  java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto        \
  java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto        \
494 495 496
  java/core/src/test/proto/com/google/protobuf/packed_field_test.proto             \
  java/core/src/test/proto/com/google/protobuf/proto2_message.proto                \
  java/core/src/test/proto/com/google/protobuf/proto2_message_lite.proto           \
497
  java/core/src/test/proto/com/google/protobuf/proto2_unknown_enum_values.proto    \
498 499
  java/core/src/test/proto/com/google/protobuf/proto3_message.proto                \
  java/core/src/test/proto/com/google/protobuf/proto3_message_lite.proto           \
500 501 502 503 504
  java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto          \
  java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto               \
  java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto          \
  java/core/src/test/proto/com/google/protobuf/test_custom_options.proto           \
  java/core/src/test/proto/com/google/protobuf/test_extra_interfaces.proto         \
505
  java/core/src/test/proto/com/google/protobuf/wrappers_test.proto                 \
506
  java/lite.md                                                                     \
507 508 509 510 511 512 513
  java/lite/generate-sources-build.xml                                             \
  java/lite/generate-test-sources-build.xml                                        \
  java/lite/lite.awk                                                               \
  java/lite/pom.xml                                                                \
  java/lite/process-lite-sources-build.xml                                         \
  java/lite/src/test/java/com/google/protobuf/LiteTest.java                        \
  java/lite/src/test/java/com/google/protobuf/Proto2MessageLiteInfoFactory.java    \
514 515
  java/pom.xml                                                                     \
  java/util/pom.xml                                                                \
516
  java/util/src/main/java/com/google/protobuf/util/Durations.java                  \
517 518 519 520
  java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java              \
  java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java              \
  java/util/src/main/java/com/google/protobuf/util/JsonFormat.java                 \
  java/util/src/main/java/com/google/protobuf/util/TimeUtil.java                   \
521
  java/util/src/main/java/com/google/protobuf/util/Structs.java                    \
522
  java/util/src/main/java/com/google/protobuf/util/Timestamps.java                 \
523
  java/util/src/main/java/com/google/protobuf/util/Values.java                     \
524 525 526
  java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java          \
  java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java          \
  java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java             \
527
  java/util/src/test/java/com/google/protobuf/util/StructsTest.java                 \
528
  java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java               \
529
  java/util/src/test/java/com/google/protobuf/util/ValuesTest.java                 \
530
  java/util/src/test/proto/com/google/protobuf/util/json_test.proto
531

532
objectivec_EXTRA_DIST=                                                       \
533
  objectivec/DevTools/check_version_stamps.sh                                \
Feng Xiao's avatar
Feng Xiao committed
534
  objectivec/DevTools/compile_testing_protos.sh                              \
Bo Yang's avatar
Bo Yang committed
535
  objectivec/DevTools/full_mac_build.sh                                      \
536 537
  objectivec/DevTools/pddm.py                                                \
  objectivec/DevTools/pddm_tests.py                                          \
538
  objectivec/generate_well_known_types.sh                                    \
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558
  objectivec/google/protobuf/Any.pbobjc.h                                    \
  objectivec/google/protobuf/Any.pbobjc.m                                    \
  objectivec/google/protobuf/Api.pbobjc.h                                    \
  objectivec/google/protobuf/Api.pbobjc.m                                    \
  objectivec/google/protobuf/Duration.pbobjc.h                               \
  objectivec/google/protobuf/Duration.pbobjc.m                               \
  objectivec/google/protobuf/Empty.pbobjc.h                                  \
  objectivec/google/protobuf/Empty.pbobjc.m                                  \
  objectivec/google/protobuf/FieldMask.pbobjc.h                              \
  objectivec/google/protobuf/FieldMask.pbobjc.m                              \
  objectivec/google/protobuf/SourceContext.pbobjc.h                          \
  objectivec/google/protobuf/SourceContext.pbobjc.m                          \
  objectivec/google/protobuf/Struct.pbobjc.h                                 \
  objectivec/google/protobuf/Struct.pbobjc.m                                 \
  objectivec/google/protobuf/Timestamp.pbobjc.h                              \
  objectivec/google/protobuf/Timestamp.pbobjc.m                              \
  objectivec/google/protobuf/Type.pbobjc.h                                   \
  objectivec/google/protobuf/Type.pbobjc.m                                   \
  objectivec/google/protobuf/Wrappers.pbobjc.h                               \
  objectivec/google/protobuf/Wrappers.pbobjc.m                               \
559 560 561 562 563 564 565 566 567
  objectivec/GPBArray.h                                                      \
  objectivec/GPBArray.m                                                      \
  objectivec/GPBArray_PackagePrivate.h                                       \
  objectivec/GPBBootstrap.h                                                  \
  objectivec/GPBCodedInputStream.h                                           \
  objectivec/GPBCodedInputStream.m                                           \
  objectivec/GPBCodedInputStream_PackagePrivate.h                            \
  objectivec/GPBCodedOutputStream.h                                          \
  objectivec/GPBCodedOutputStream.m                                          \
568
  objectivec/GPBCodedOutputStream_PackagePrivate.h                           \
569 570 571 572 573 574
  objectivec/GPBDescriptor.h                                                 \
  objectivec/GPBDescriptor.m                                                 \
  objectivec/GPBDescriptor_PackagePrivate.h                                  \
  objectivec/GPBDictionary.h                                                 \
  objectivec/GPBDictionary.m                                                 \
  objectivec/GPBDictionary_PackagePrivate.h                                  \
575 576
  objectivec/GPBExtensionInternals.h                                         \
  objectivec/GPBExtensionInternals.m                                         \
577 578 579 580 581 582 583 584 585 586 587
  objectivec/GPBExtensionRegistry.h                                          \
  objectivec/GPBExtensionRegistry.m                                          \
  objectivec/GPBMessage.h                                                    \
  objectivec/GPBMessage.m                                                    \
  objectivec/GPBMessage_PackagePrivate.h                                     \
  objectivec/GPBProtocolBuffers.h                                            \
  objectivec/GPBProtocolBuffers.m                                            \
  objectivec/GPBProtocolBuffers_RuntimeSupport.h                             \
  objectivec/GPBRootObject.h                                                 \
  objectivec/GPBRootObject.m                                                 \
  objectivec/GPBRootObject_PackagePrivate.h                                  \
588 589 590 591
  objectivec/GPBRuntimeTypes.h                                               \
  objectivec/GPBUnknownField.h                                               \
  objectivec/GPBUnknownField.m                                               \
  objectivec/GPBUnknownField_PackagePrivate.h                                \
592 593 594 595 596 597 598 599 600 601 602 603
  objectivec/GPBUnknownFieldSet.h                                            \
  objectivec/GPBUnknownFieldSet.m                                            \
  objectivec/GPBUnknownFieldSet_PackagePrivate.h                             \
  objectivec/GPBUtilities.h                                                  \
  objectivec/GPBUtilities.m                                                  \
  objectivec/GPBUtilities_PackagePrivate.h                                   \
  objectivec/GPBWellKnownTypes.h                                             \
  objectivec/GPBWellKnownTypes.m                                             \
  objectivec/GPBWireFormat.h                                                 \
  objectivec/GPBWireFormat.m                                                 \
  objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj                   \
  objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
604
  objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
605 606 607 608 609
  objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
  objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
  objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
  objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj                   \
  objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
610
  objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
611 612 613
  objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
  objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
  objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
614 615 616 617 618 619
  objectivec/ProtocolBuffers_tvOS.xcodeproj/project.pbxproj                  \
  objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
  objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
  objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
  objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
  objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
Bo Yang's avatar
Bo Yang committed
620
  objectivec/README.md                                                       \
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.pbxproj \
  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/OSXCocoaPodsTester.xcscheme \
  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.h \
  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.m \
  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \
  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Base.lproj/MainMenu.xib \
  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Info.plist \
  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/main.m    \
  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-framework            \
  objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-static               \
  objectivec/Tests/CocoaPods/README.md                                       \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-framework            \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-static               \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.pbxproj \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/iOSCocoaPodsTester.xcscheme \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.h \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.m \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/LaunchScreen.storyboard \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/Main.storyboard \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Info.plist \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.h \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.m \
  objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/main.m    \
  objectivec/Tests/CocoaPods/run_tests.sh                                    \
648 649 650 651 652 653
  objectivec/Tests/golden_message                                            \
  objectivec/Tests/golden_packed_fields_message                              \
  objectivec/Tests/GPBARCUnittestProtos.m                                    \
  objectivec/Tests/GPBArrayTests.m                                           \
  objectivec/Tests/GPBCodedInputStreamTests.m                                \
  objectivec/Tests/GPBCodedOuputStreamTests.m                                \
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
  objectivec/Tests/GPBCompileTest01.m                                        \
  objectivec/Tests/GPBCompileTest02.m                                        \
  objectivec/Tests/GPBCompileTest03.m                                        \
  objectivec/Tests/GPBCompileTest04.m                                        \
  objectivec/Tests/GPBCompileTest05.m                                        \
  objectivec/Tests/GPBCompileTest06.m                                        \
  objectivec/Tests/GPBCompileTest07.m                                        \
  objectivec/Tests/GPBCompileTest08.m                                        \
  objectivec/Tests/GPBCompileTest09.m                                        \
  objectivec/Tests/GPBCompileTest10.m                                        \
  objectivec/Tests/GPBCompileTest11.m                                        \
  objectivec/Tests/GPBCompileTest12.m                                        \
  objectivec/Tests/GPBCompileTest13.m                                        \
  objectivec/Tests/GPBCompileTest14.m                                        \
  objectivec/Tests/GPBCompileTest15.m                                        \
  objectivec/Tests/GPBCompileTest16.m                                        \
  objectivec/Tests/GPBCompileTest17.m                                        \
  objectivec/Tests/GPBCompileTest18.m                                        \
  objectivec/Tests/GPBCompileTest19.m                                        \
  objectivec/Tests/GPBCompileTest20.m                                        \
  objectivec/Tests/GPBCompileTest21.m                                        \
  objectivec/Tests/GPBCompileTest22.m                                        \
  objectivec/Tests/GPBCompileTest23.m                                        \
  objectivec/Tests/GPBCompileTest24.m                                        \
  objectivec/Tests/GPBCompileTest25.m                                        \
679 680 681 682 683 684 685 686
  objectivec/Tests/GPBConcurrencyTests.m                                     \
  objectivec/Tests/GPBDescriptorTests.m                                      \
  objectivec/Tests/GPBDictionaryTests+Bool.m                                 \
  objectivec/Tests/GPBDictionaryTests+Int32.m                                \
  objectivec/Tests/GPBDictionaryTests+Int64.m                                \
  objectivec/Tests/GPBDictionaryTests+String.m                               \
  objectivec/Tests/GPBDictionaryTests+UInt32.m                               \
  objectivec/Tests/GPBDictionaryTests+UInt64.m                               \
687
  objectivec/Tests/GPBDictionaryTests.m                                      \
688
  objectivec/Tests/GPBDictionaryTests.pddm                                   \
689
  objectivec/Tests/GPBExtensionRegistryTest.m                                \
690 691 692 693
  objectivec/Tests/GPBMessageTests+Merge.m                                   \
  objectivec/Tests/GPBMessageTests+Runtime.m                                 \
  objectivec/Tests/GPBMessageTests+Serialization.m                           \
  objectivec/Tests/GPBMessageTests.m                                         \
694
  objectivec/Tests/GPBObjectiveCPlusPlusTest.mm                              \
695 696 697 698 699
  objectivec/Tests/GPBPerfTests.m                                            \
  objectivec/Tests/GPBSwiftTests.swift                                       \
  objectivec/Tests/GPBTestUtilities.h                                        \
  objectivec/Tests/GPBTestUtilities.m                                        \
  objectivec/Tests/GPBUnittestProtos.m                                       \
700
  objectivec/Tests/GPBUnittestProtos2.m                                      \
701 702 703 704
  objectivec/Tests/GPBUnknownFieldSetTest.m                                  \
  objectivec/Tests/GPBUtilitiesTests.m                                       \
  objectivec/Tests/GPBWellKnownTypesTest.m                                   \
  objectivec/Tests/GPBWireFormatTests.m                                      \
705
  objectivec/Tests/text_format_extensions_unittest_data.txt                   \
706 707 708
  objectivec/Tests/text_format_map_unittest_data.txt                          \
  objectivec/Tests/text_format_unittest_data.txt                              \
  objectivec/Tests/unittest_cycle.proto                                       \
709 710
  objectivec/Tests/unittest_deprecated.proto                                  \
  objectivec/Tests/unittest_deprecated_file.proto                             \
711 712 713 714 715 716 717
  objectivec/Tests/unittest_extension_chain_a.proto                           \
  objectivec/Tests/unittest_extension_chain_b.proto                           \
  objectivec/Tests/unittest_extension_chain_c.proto                           \
  objectivec/Tests/unittest_extension_chain_d.proto                           \
  objectivec/Tests/unittest_extension_chain_e.proto                           \
  objectivec/Tests/unittest_extension_chain_f.proto                           \
  objectivec/Tests/unittest_extension_chain_g.proto                           \
718
  objectivec/Tests/unittest_objc.proto                                        \
719
  objectivec/Tests/unittest_objc_options.proto                                \
Bo Yang's avatar
Bo Yang committed
720
  objectivec/Tests/unittest_objc_startup.proto                                \
721 722 723
  objectivec/Tests/unittest_runtime_proto2.proto                              \
  objectivec/Tests/unittest_runtime_proto3.proto                              \
  objectivec/Tests/UnitTests-Bridging-Header.h                                \
724 725
  objectivec/Tests/UnitTests-Info.plist                                       \
  Protobuf.podspec
726

727
php_EXTRA_DIST=                                                       \
728 729 730
  composer.json                                                       \
  php/README.md                                                       \
  php/composer.json                                                   \
731
  php/ext/google/protobuf/array.c                                     \
732
  php/ext/google/protobuf/builtin_descriptors.inc                     \
733 734
  php/ext/google/protobuf/config.m4                                   \
  php/ext/google/protobuf/def.c                                       \
735
  php/ext/google/protobuf/encode_decode.c                             \
736 737 738 739
  php/ext/google/protobuf/map.c                                       \
  php/ext/google/protobuf/message.c                                   \
  php/ext/google/protobuf/package.xml                                 \
  php/ext/google/protobuf/protobuf.c                                  \
740 741
  php/ext/google/protobuf/protobuf.h                                  \
  php/ext/google/protobuf/storage.c                                   \
742
  php/ext/google/protobuf/type_check.c                                \
743
  php/ext/google/protobuf/upb.c                                       \
744 745 746 747 748
  php/ext/google/protobuf/upb.h                                       \
  php/ext/google/protobuf/utf8.c                                      \
  php/ext/google/protobuf/utf8.h                                      \
  php/generate_descriptor_protos.sh                                   \
  php/phpunit.xml                                                     \
749
  php/release.sh                                                      \
750 751 752 753 754 755 756 757 758 759 760
  php/src/GPBMetadata/Google/Protobuf/Any.php                         \
  php/src/GPBMetadata/Google/Protobuf/Api.php                         \
  php/src/GPBMetadata/Google/Protobuf/Duration.php                    \
  php/src/GPBMetadata/Google/Protobuf/FieldMask.php                   \
  php/src/GPBMetadata/Google/Protobuf/GPBEmpty.php                    \
  php/src/GPBMetadata/Google/Protobuf/Internal/Descriptor.php         \
  php/src/GPBMetadata/Google/Protobuf/SourceContext.php               \
  php/src/GPBMetadata/Google/Protobuf/Struct.php                      \
  php/src/GPBMetadata/Google/Protobuf/Timestamp.php                   \
  php/src/GPBMetadata/Google/Protobuf/Type.php                        \
  php/src/GPBMetadata/Google/Protobuf/Wrappers.php                    \
761
  php/src/Google/Protobuf/Any.php                                     \
762 763 764
  php/src/Google/Protobuf/Api.php                                     \
  php/src/Google/Protobuf/BoolValue.php                               \
  php/src/Google/Protobuf/BytesValue.php                              \
765 766
  php/src/Google/Protobuf/Descriptor.php                              \
  php/src/Google/Protobuf/DescriptorPool.php                          \
767
  php/src/Google/Protobuf/DoubleValue.php                             \
768
  php/src/Google/Protobuf/Duration.php                                \
769
  php/src/Google/Protobuf/Enum.php                                    \
770
  php/src/Google/Protobuf/EnumDescriptor.php                          \
771
  php/src/Google/Protobuf/EnumValue.php                               \
772
  php/src/Google/Protobuf/EnumValueDescriptor.php                     \
773
  php/src/Google/Protobuf/Field.php                                   \
774
  php/src/Google/Protobuf/FieldDescriptor.php                         \
775
  php/src/Google/Protobuf/FieldMask.php                               \
776
  php/src/Google/Protobuf/Field/Cardinality.php                       \
777
  php/src/Google/Protobuf/Field_Cardinality.php                       \
778
  php/src/Google/Protobuf/Field/Kind.php                              \
779 780 781 782 783
  php/src/Google/Protobuf/Field_Kind.php                              \
  php/src/Google/Protobuf/FloatValue.php                              \
  php/src/Google/Protobuf/GPBEmpty.php                                \
  php/src/Google/Protobuf/Int32Value.php                              \
  php/src/Google/Protobuf/Int64Value.php                              \
784 785
  php/src/Google/Protobuf/Internal/CodedInputStream.php               \
  php/src/Google/Protobuf/Internal/CodedOutputStream.php              \
786
  php/src/Google/Protobuf/Internal/Descriptor.php                     \
787
  php/src/Google/Protobuf/Internal/DescriptorPool.php                 \
788
  php/src/Google/Protobuf/Internal/DescriptorProto.php                \
789 790
  php/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php \
  php/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php  \
791
  php/src/Google/Protobuf/Internal/EnumBuilderContext.php             \
792
  php/src/Google/Protobuf/Internal/EnumDescriptor.php                 \
793
  php/src/Google/Protobuf/Internal/EnumDescriptorProto.php            \
794
  php/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php \
795 796 797
  php/src/Google/Protobuf/Internal/EnumOptions.php                    \
  php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php       \
  php/src/Google/Protobuf/Internal/EnumValueOptions.php               \
798
  php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php          \
799 800
  php/src/Google/Protobuf/Internal/FieldDescriptorProto.php           \
  php/src/Google/Protobuf/Internal/FieldDescriptor.php                \
801
  php/src/Google/Protobuf/Internal/FieldDescriptorProto.php           \
802 803
  php/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php     \
  php/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php      \
804
  php/src/Google/Protobuf/Internal/FieldOptions.php                   \
805 806
  php/src/Google/Protobuf/Internal/FieldOptions/CType.php             \
  php/src/Google/Protobuf/Internal/FieldOptions/JSType.php            \
807
  php/src/Google/Protobuf/Internal/FileDescriptor.php                 \
808 809 810
  php/src/Google/Protobuf/Internal/FileDescriptorProto.php            \
  php/src/Google/Protobuf/Internal/FileDescriptorSet.php              \
  php/src/Google/Protobuf/Internal/FileOptions.php                    \
811
  php/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php       \
812 813 814
  php/src/Google/Protobuf/Internal/GPBDecodeException.php             \
  php/src/Google/Protobuf/Internal/GPBJsonWire.php                    \
  php/src/Google/Protobuf/Internal/GPBLabel.php                       \
815
  php/src/Google/Protobuf/Internal/GPBType.php                        \
816 817
  php/src/Google/Protobuf/Internal/GPBUtil.php                        \
  php/src/Google/Protobuf/Internal/GPBWire.php                        \
818 819
  php/src/Google/Protobuf/Internal/GPBWireType.php                    \
  php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php              \
820
  php/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php   \
821
  php/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php       \
822
  php/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php       \
823 824
  php/src/Google/Protobuf/Internal/MapEntry.php                       \
  php/src/Google/Protobuf/Internal/MapField.php                       \
825 826
  php/src/Google/Protobuf/Internal/MapFieldIter.php                   \
  php/src/Google/Protobuf/Internal/Message.php                        \
827 828 829 830
  php/src/Google/Protobuf/Internal/MessageBuilderContext.php          \
  php/src/Google/Protobuf/Internal/MessageOptions.php                 \
  php/src/Google/Protobuf/Internal/MethodDescriptorProto.php          \
  php/src/Google/Protobuf/Internal/MethodOptions.php                  \
831
  php/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php \
832
  php/src/Google/Protobuf/Internal/OneofDescriptor.php                \
833
  php/src/Google/Protobuf/Internal/OneofDescriptorProto.php           \
834 835 836 837
  php/src/Google/Protobuf/Internal/OneofField.php                     \
  php/src/Google/Protobuf/Internal/OneofOptions.php                   \
  php/src/Google/Protobuf/Internal/RawInputStream.php                 \
  php/src/Google/Protobuf/Internal/RepeatedField.php                  \
838
  php/src/Google/Protobuf/Internal/RepeatedFieldIter.php              \
839 840
  php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php         \
  php/src/Google/Protobuf/Internal/ServiceOptions.php                 \
841
  php/src/Google/Protobuf/Internal/SourceCodeInfo.php                 \
842
  php/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php        \
843
  php/src/Google/Protobuf/Internal/UninterpretedOption.php            \
844
  php/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php   \
Feng Xiao's avatar
Feng Xiao committed
845 846 847 848 849 850 851 852 853 854 855 856
  php/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php \
  php/src/Google/Protobuf/Internal/DescriptorProto_ReservedRange.php  \
  php/src/Google/Protobuf/Internal/EnumDescriptorProto_EnumReservedRange.php \
  php/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php     \
  php/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php      \
  php/src/Google/Protobuf/Internal/FieldOptions_CType.php             \
  php/src/Google/Protobuf/Internal/FieldOptions_JSType.php            \
  php/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.php       \
  php/src/Google/Protobuf/Internal/GeneratedCodeInfo_Annotation.php   \
  php/src/Google/Protobuf/Internal/MethodOptions_IdempotencyLevel.php \
  php/src/Google/Protobuf/Internal/SourceCodeInfo_Location.php        \
  php/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php   \
857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872
  php/src/Google/Protobuf/ListValue.php                               \
  php/src/Google/Protobuf/Method.php                                  \
  php/src/Google/Protobuf/Mixin.php                                   \
  php/src/Google/Protobuf/NullValue.php                               \
  php/src/Google/Protobuf/OneofDescriptor.php                         \
  php/src/Google/Protobuf/Option.php                                  \
  php/src/Google/Protobuf/SourceContext.php                           \
  php/src/Google/Protobuf/StringValue.php                             \
  php/src/Google/Protobuf/Struct.php                                  \
  php/src/Google/Protobuf/Syntax.php                                  \
  php/src/Google/Protobuf/Timestamp.php                               \
  php/src/Google/Protobuf/Type.php                                    \
  php/src/Google/Protobuf/UInt32Value.php                             \
  php/src/Google/Protobuf/UInt64Value.php                             \
  php/src/Google/Protobuf/Value.php                                   \
  php/src/phpdoc.dist.xml                                             \
873
  php/tests/array_test.php                                            \
874
  php/tests/autoload.php                                              \
875
  php/tests/bootstrap_phpunit.php                                     \
876
  php/tests/compatibility_test.sh                                     \
877
  php/tests/compile_extension.sh                                      \
878
  php/tests/descriptors_test.php                                      \
879 880 881
  php/tests/encode_decode_test.php                                    \
  php/tests/gdb_test.sh                                               \
  php/tests/generated_class_test.php                                  \
882
  php/tests/generated_phpdoc_test.php                                 \
883
  php/tests/generated_service_test.php                                \
884 885
  php/tests/map_field_test.php                                        \
  php/tests/memory_leak_test.php                                      \
886 887
  php/tests/multirequest.php                                          \
  php/tests/multirequest.sh                                           \
888
  php/tests/php_implementation_test.php                               \
889
  php/tests/proto/empty/echo.proto                                    \
890
  php/tests/proto/test.proto                                          \
891
  php/tests/proto/test_descriptors.proto                              \
892
  php/tests/proto/test_empty_php_namespace.proto                      \
893
  php/tests/proto/test_import_descriptor_proto.proto                  \
894 895
  php/tests/proto/test_include.proto                                  \
  php/tests/proto/test_no_namespace.proto                             \
896 897
  php/tests/proto/test_php_namespace.proto                            \
  php/tests/proto/test_prefix.proto                                   \
898 899
  php/tests/proto/test_reserved_enum_lower.proto                      \
  php/tests/proto/test_reserved_enum_upper.proto                      \
900 901
  php/tests/proto/test_reserved_enum_value_lower.proto                \
  php/tests/proto/test_reserved_enum_value_upper.proto                \
902 903
  php/tests/proto/test_reserved_message_lower.proto                   \
  php/tests/proto/test_reserved_message_upper.proto                   \
904 905
  php/tests/proto/test_service.proto                                  \
  php/tests/proto/test_service_namespace.proto                        \
906
  php/tests/proto/test_wrapper_type_setters.proto                     \
907 908
  php/tests/test.sh                                                   \
  php/tests/test_base.php                                             \
909
  php/tests/test_util.php                                             \
910
  php/tests/undefined_test.php                                        \
911 912
  php/tests/well_known_test.php                                       \
  php/tests/wrapper_type_setters_test.php
Bo Yang's avatar
Bo Yang committed
913

914
python_EXTRA_DIST=                                                           \
Bo Yang's avatar
Bo Yang committed
915
  python/MANIFEST.in                                                         \
916 917
  python/google/__init__.py                                                  \
  python/google/protobuf/__init__.py                                         \
918
  python/google/protobuf/compiler/__init__.py                                \
919 920 921 922 923 924
  python/google/protobuf/descriptor.py                                       \
  python/google/protobuf/descriptor_database.py                              \
  python/google/protobuf/descriptor_pool.py                                  \
  python/google/protobuf/internal/__init__.py                                \
  python/google/protobuf/internal/_parameterized.py                          \
  python/google/protobuf/internal/any_test.proto                             \
925
  python/google/protobuf/internal/any_test.proto                             \
926 927
  python/google/protobuf/internal/api_implementation.cc                      \
  python/google/protobuf/internal/api_implementation.py                      \
928
  python/google/protobuf/internal/containers.py                              \
temporal's avatar
temporal committed
929
  python/google/protobuf/internal/decoder.py                                 \
930 931
  python/google/protobuf/internal/descriptor_database_test.py                \
  python/google/protobuf/internal/descriptor_pool_test.py                    \
932 933
  python/google/protobuf/internal/descriptor_pool_test1.proto                \
  python/google/protobuf/internal/descriptor_pool_test2.proto                \
temporal's avatar
temporal committed
934 935
  python/google/protobuf/internal/descriptor_test.py                         \
  python/google/protobuf/internal/encoder.py                                 \
936
  python/google/protobuf/internal/enum_type_wrapper.py                       \
937
  python/google/protobuf/internal/extension_dict.py                          \
938 939
  python/google/protobuf/internal/factory_test1.proto                        \
  python/google/protobuf/internal/factory_test2.proto                        \
940
  python/google/protobuf/internal/file_options_test.proto                    \
941
  python/google/protobuf/internal/generator_test.py                          \
942 943 944
  python/google/protobuf/internal/import_test_package/__init__.py            \
  python/google/protobuf/internal/import_test_package/inner.proto            \
  python/google/protobuf/internal/import_test_package/outer.proto            \
945
  python/google/protobuf/internal/json_format_test.py                        \
946
  python/google/protobuf/internal/keywords_test.py                           \
947
  python/google/protobuf/internal/message_factory_test.py                    \
temporal's avatar
temporal committed
948
  python/google/protobuf/internal/message_listener.py                        \
949
  python/google/protobuf/internal/message_set_extensions.proto               \
950
  python/google/protobuf/internal/message_test.py                            \
951
  python/google/protobuf/internal/missing_enum_values.proto                  \
952
  python/google/protobuf/internal/more_extensions.proto                      \
953
  python/google/protobuf/internal/more_extensions_dynamic.proto              \
temporal's avatar
temporal committed
954
  python/google/protobuf/internal/more_messages.proto                        \
955
  python/google/protobuf/internal/no_package.proto                           \
956
  python/google/protobuf/internal/packed_field_test.proto                    \
957
  python/google/protobuf/internal/proto_builder_test.py                      \
958
  python/google/protobuf/internal/python_message.py                          \
959
  python/google/protobuf/internal/python_protobuf.cc                         \
temporal's avatar
temporal committed
960 961
  python/google/protobuf/internal/reflection_test.py                         \
  python/google/protobuf/internal/service_reflection_test.py                 \
jieluo@google.com's avatar
jieluo@google.com committed
962
  python/google/protobuf/internal/symbol_database_test.py                    \
963
  python/google/protobuf/internal/test_bad_identifiers.proto                 \
temporal's avatar
temporal committed
964
  python/google/protobuf/internal/test_util.py                               \
965
  python/google/protobuf/internal/testing_refleaks.py                        \
966
  python/google/protobuf/internal/text_encoding_test.py                      \
temporal's avatar
temporal committed
967
  python/google/protobuf/internal/text_format_test.py                        \
temporal's avatar
temporal committed
968
  python/google/protobuf/internal/type_checkers.py                           \
969
  python/google/protobuf/internal/unknown_fields_test.py                     \
970
  python/google/protobuf/internal/well_known_types.py                        \
971 972
  python/google/protobuf/internal/well_known_types.py                        \
  python/google/protobuf/internal/well_known_types_test.py                   \
973
  python/google/protobuf/internal/well_known_types_test.py                   \
temporal's avatar
temporal committed
974 975
  python/google/protobuf/internal/wire_format.py                             \
  python/google/protobuf/internal/wire_format_test.py                        \
976 977 978
  python/google/protobuf/json_format.py                                      \
  python/google/protobuf/message.py                                          \
  python/google/protobuf/message_factory.py                                  \
979
  python/google/protobuf/python_protobuf.h                                   \
980
  python/google/protobuf/proto_api.h                                         \
981
  python/google/protobuf/proto_builder.py                                    \
982
  python/google/protobuf/pyext/README                                        \
983
  python/google/protobuf/pyext/__init__.py                                   \
984 985
  python/google/protobuf/pyext/cpp_message.py                                \
  python/google/protobuf/pyext/descriptor.cc                                 \
986
  python/google/protobuf/pyext/descriptor.h                                  \
987
  python/google/protobuf/pyext/descriptor_containers.cc                      \
988 989 990 991 992
  python/google/protobuf/pyext/descriptor_containers.h                       \
  python/google/protobuf/pyext/descriptor_database.cc                        \
  python/google/protobuf/pyext/descriptor_database.h                         \
  python/google/protobuf/pyext/descriptor_pool.cc                            \
  python/google/protobuf/pyext/descriptor_pool.h                             \
993
  python/google/protobuf/pyext/extension_dict.cc                             \
994 995 996
  python/google/protobuf/pyext/extension_dict.h                              \
  python/google/protobuf/pyext/map_container.cc                              \
  python/google/protobuf/pyext/map_container.h                               \
997
  python/google/protobuf/pyext/message.cc                                    \
998
  python/google/protobuf/pyext/message.h                                     \
Feng Xiao's avatar
Feng Xiao committed
999 1000 1001 1002
  python/google/protobuf/pyext/field.cc                                      \
  python/google/protobuf/pyext/field.h                                       \
  python/google/protobuf/pyext/unknown_fields.cc                             \
  python/google/protobuf/pyext/unknown_fields.h                              \
1003 1004
  python/google/protobuf/pyext/message_factory.cc                            \
  python/google/protobuf/pyext/message_factory.h                             \
1005
  python/google/protobuf/pyext/message_module.cc                             \
1006 1007 1008
  python/google/protobuf/pyext/proto2_api_test.proto                         \
  python/google/protobuf/pyext/python.proto                                  \
  python/google/protobuf/pyext/repeated_composite_container.cc               \
1009
  python/google/protobuf/pyext/repeated_composite_container.h                \
1010
  python/google/protobuf/pyext/repeated_scalar_container.cc                  \
1011
  python/google/protobuf/pyext/repeated_scalar_container.h                   \
Feng Xiao's avatar
Feng Xiao committed
1012
  python/google/protobuf/pyext/safe_numerics.h                               \
1013
  python/google/protobuf/pyext/scoped_pyobject_ptr.h                         \
temporal's avatar
temporal committed
1014 1015 1016
  python/google/protobuf/reflection.py                                       \
  python/google/protobuf/service.py                                          \
  python/google/protobuf/service_reflection.py                               \
1017 1018
  python/google/protobuf/symbol_database.py                                  \
  python/google/protobuf/text_encoding.py                                    \
temporal's avatar
temporal committed
1019
  python/google/protobuf/text_format.py                                      \
1020
  python/google/protobuf/util/__init__.py                                    \
1021
  python/release.sh                                                          \
temporal's avatar
temporal committed
1022
  python/mox.py                                                              \
1023
  python/setup.cfg                                                           \
Feng Xiao's avatar
Feng Xiao committed
1024
  python/setup.py                                                            \
temporal's avatar
temporal committed
1025
  python/stubout.py                                                          \
Feng Xiao's avatar
Feng Xiao committed
1026
  python/tox.ini                                                             \
1027
  python/README.md
temporal's avatar
temporal committed
1028

Chris Fallin's avatar
Chris Fallin committed
1029
ruby_EXTRA_DIST=                                                             \
Bo Yang's avatar
Bo Yang committed
1030 1031
  ruby/Gemfile                                                               \
  ruby/.gitignore                                                            \
Feng Xiao's avatar
Feng Xiao committed
1032 1033
  ruby/README.md                                                             \
  ruby/Rakefile                                                              \
1034 1035 1036 1037 1038 1039 1040 1041 1042
  ruby/compatibility_tests/v3.0.0/tests/test_import.proto                    \
  ruby/compatibility_tests/v3.0.0/tests/stress.rb                            \
  ruby/compatibility_tests/v3.0.0/tests/repeated_field_test.rb               \
  ruby/compatibility_tests/v3.0.0/tests/generated_code_test.rb               \
  ruby/compatibility_tests/v3.0.0/tests/generated_code.proto                 \
  ruby/compatibility_tests/v3.0.0/tests/basic.rb                             \
  ruby/compatibility_tests/v3.0.0/test.sh                                    \
  ruby/compatibility_tests/v3.0.0/Rakefile                                   \
  ruby/compatibility_tests/v3.0.0/README.md                                  \
Feng Xiao's avatar
Feng Xiao committed
1043 1044 1045
  ruby/ext/google/protobuf_c/defs.c                                          \
  ruby/ext/google/protobuf_c/encode_decode.c                                 \
  ruby/ext/google/protobuf_c/extconf.rb                                      \
1046
  ruby/ext/google/protobuf_c/map.c                                           \
Feng Xiao's avatar
Feng Xiao committed
1047 1048 1049 1050 1051 1052 1053
  ruby/ext/google/protobuf_c/message.c                                       \
  ruby/ext/google/protobuf_c/protobuf.c                                      \
  ruby/ext/google/protobuf_c/protobuf.h                                      \
  ruby/ext/google/protobuf_c/repeated_field.c                                \
  ruby/ext/google/protobuf_c/storage.c                                       \
  ruby/ext/google/protobuf_c/upb.c                                           \
  ruby/ext/google/protobuf_c/upb.h                                           \
1054
  ruby/ext/google/protobuf_c/wrap_memcpy.c                                   \
Feng Xiao's avatar
Feng Xiao committed
1055
  ruby/google-protobuf.gemspec                                               \
Bo Yang's avatar
Bo Yang committed
1056 1057
  ruby/lib/google/protobuf/message_exts.rb                                   \
  ruby/lib/google/protobuf/repeated_field.rb                                 \
1058
  ruby/lib/google/protobuf/well_known_types.rb                               \
Feng Xiao's avatar
Feng Xiao committed
1059
  ruby/lib/google/protobuf.rb                                                \
Bo Yang's avatar
Bo Yang committed
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
  ruby/pom.xml                                                               \
  ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java              \
  ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java           \
  ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java       \
  ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java   \
  ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java       \
  ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java                 \
  ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java      \
  ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java                  \
  ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \
  ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java              \
  ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java  \
  ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java      \
  ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java             \
  ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java        \
  ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java       \
  ruby/src/main/java/com/google/protobuf/jruby/Utils.java                    \
  ruby/src/main/java/google/ProtobufJavaService.java                         \
  ruby/src/main/sentinel.proto                                               \
1079 1080 1081
  ruby/tests/basic_proto2.rb                                                 \
  ruby/tests/basic_test_proto2.proto                                         \
  ruby/tests/basic_test.proto                                                \
Feng Xiao's avatar
Feng Xiao committed
1082
  ruby/tests/basic.rb                                                        \
1083
  ruby/tests/common_tests.rb                                                 \
1084
  ruby/tests/encode_decode_test.rb                                           \
1085
  ruby/tests/gc_test.rb                                                      \
Bo Yang's avatar
Bo Yang committed
1086
  ruby/tests/repeated_field_test.rb                                          \
1087
  ruby/tests/stress.rb                                                       \
1088 1089
  ruby/tests/generated_code_proto2_test.rb                                   \
  ruby/tests/generated_code_proto2.proto                                     \
1090
  ruby/tests/generated_code.proto                                            \
1091
  ruby/tests/test_import_proto2.proto                                        \
1092
  ruby/tests/test_import.proto                                               \
1093
  ruby/tests/test_ruby_package_proto2.proto                                  \
1094
  ruby/tests/test_ruby_package.proto                                         \
Bo Yang's avatar
Bo Yang committed
1095
  ruby/tests/generated_code_test.rb                                          \
1096
  ruby/tests/well_known_types_test.rb                                        \
1097
  ruby/tests/type_errors.rb                                                  \
Bo Yang's avatar
Bo Yang committed
1098
  ruby/travis-test.sh
Chris Fallin's avatar
Chris Fallin committed
1099

1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
js_EXTRA_DIST=                                                         \
  js/README.md                                                         \
  js/binary/arith.js                                                   \
  js/binary/arith_test.js                                              \
  js/binary/constants.js                                               \
  js/binary/decoder.js                                                 \
  js/binary/decoder_test.js                                            \
  js/binary/encoder.js                                                 \
  js/binary/message_test.js                                            \
  js/binary/proto_test.js                                              \
  js/binary/reader.js                                                  \
  js/binary/reader_test.js                                             \
  js/binary/utils.js                                                   \
  js/binary/utils_test.js                                              \
  js/binary/writer.js                                                  \
  js/binary/writer_test.js                                             \
  js/commonjs/export.js                                                \
  js/commonjs/export_asserts.js                                        \
  js/commonjs/export_testdeps.js                                       \
  js/commonjs/import_test.js                                           \
  js/commonjs/jasmine.json                                             \
  js/commonjs/rewrite_tests_for_commonjs.js                            \
1122
  js/commonjs/strict_test.js                                           \
1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
  js/commonjs/test6/test6.proto                                        \
  js/commonjs/test7/test7.proto                                        \
  js/compatibility_tests/v3.0.0/binary/arith_test.js                   \
  js/compatibility_tests/v3.0.0/binary/decoder_test.js                 \
  js/compatibility_tests/v3.0.0/binary/proto_test.js                   \
  js/compatibility_tests/v3.0.0/binary/reader_test.js                  \
  js/compatibility_tests/v3.0.0/binary/utils_test.js                   \
  js/compatibility_tests/v3.0.0/binary/writer_test.js                  \
  js/compatibility_tests/v3.0.0/commonjs/export_asserts.js             \
  js/compatibility_tests/v3.0.0/commonjs/export_testdeps.js            \
  js/compatibility_tests/v3.0.0/commonjs/import_test.js                \
  js/compatibility_tests/v3.0.0/commonjs/jasmine.json                  \
  js/compatibility_tests/v3.0.0/commonjs/rewrite_tests_for_commonjs.js \
  js/compatibility_tests/v3.0.0/commonjs/test6/test6.proto             \
  js/compatibility_tests/v3.0.0/commonjs/test7/test7.proto             \
  js/compatibility_tests/v3.0.0/data.proto                             \
  js/compatibility_tests/v3.0.0/debug_test.js                          \
  js/compatibility_tests/v3.0.0/jasmine1.json                          \
  js/compatibility_tests/v3.0.0/jasmine2.json                          \
  js/compatibility_tests/v3.0.0/jasmine3.json                          \
  js/compatibility_tests/v3.0.0/message_test.js                        \
  js/compatibility_tests/v3.0.0/proto3_test.js                         \
  js/compatibility_tests/v3.0.0/proto3_test.proto                      \
  js/compatibility_tests/v3.0.0/test2.proto                            \
  js/compatibility_tests/v3.0.0/test3.proto                            \
  js/compatibility_tests/v3.0.0/test4.proto                            \
  js/compatibility_tests/v3.0.0/test5.proto                            \
  js/compatibility_tests/v3.0.0/testbinary.proto                       \
  js/compatibility_tests/v3.0.0/testempty.proto                        \
  js/compatibility_tests/v3.0.0/test.proto                             \
  js/compatibility_tests/v3.0.0/test.sh                                \
Jisi Liu's avatar
Jisi Liu committed
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
  js/compatibility_tests/v3.1.0/testempty.proto                        \
  js/compatibility_tests/v3.1.0/testbinary.proto                       \
  js/compatibility_tests/v3.1.0/test5.proto                            \
  js/compatibility_tests/v3.1.0/test4.proto                            \
  js/compatibility_tests/v3.1.0/test3.proto                            \
  js/compatibility_tests/v3.1.0/test2.proto                            \
  js/compatibility_tests/v3.1.0/test.proto                             \
  js/compatibility_tests/v3.1.0/proto3_test.proto                      \
  js/compatibility_tests/v3.1.0/proto3_test.js                         \
  js/compatibility_tests/v3.1.0/message_test.js                        \
  js/compatibility_tests/v3.1.0/maps_test.js                           \
  js/compatibility_tests/v3.1.0/debug_test.js                          \
  js/compatibility_tests/v3.1.0/data.proto                             \
  js/compatibility_tests/v3.1.0/commonjs/test7/test7.proto             \
  js/compatibility_tests/v3.1.0/commonjs/test6/test6.proto             \
  js/compatibility_tests/v3.1.0/binary/writer_test.js                  \
  js/compatibility_tests/v3.1.0/binary/utils_test.js                   \
  js/compatibility_tests/v3.1.0/binary/reader_test.js                  \
  js/compatibility_tests/v3.1.0/binary/proto_test.js                   \
  js/compatibility_tests/v3.1.0/binary/decoder_test.js                 \
  js/compatibility_tests/v3.1.0/binary/arith_test.js                   \
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
  js/data.proto                                                        \
  js/debug.js                                                          \
  js/debug_test.js                                                     \
  js/gulpfile.js                                                       \
  js/jasmine.json                                                      \
  js/map.js                                                            \
  js/maps_test.js                                                      \
  js/message.js                                                        \
  js/message_test.js                                                   \
  js/node_loader.js                                                    \
  js/package.json                                                      \
  js/proto3_test.js                                                    \
  js/proto3_test.proto                                                 \
  js/test.proto                                                        \
  js/test2.proto                                                       \
  js/test3.proto                                                       \
  js/test4.proto                                                       \
  js/test5.proto                                                       \
  js/test8.proto                                                       \
1194
  js/test9.proto                                                       \
1195
  js/test10.proto                                                      \
Adam Cozzette's avatar
Adam Cozzette committed
1196 1197 1198 1199 1200
  js/test11.proto                                                      \
  js/test12.proto                                                      \
  js/test13.proto                                                      \
  js/test14.proto                                                      \
  js/test15.proto                                                      \
1201 1202
  js/test_bootstrap.js                                                 \
  js/testbinary.proto                                                  \
1203 1204
  js/testempty.proto

Feng Xiao's avatar
Feng Xiao committed
1205
all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(php_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) $(js_EXTRA_DIST)
1206

Bo Yang's avatar
Bo Yang committed
1207 1208 1209 1210 1211 1212 1213 1214
EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST)   \
  autogen.sh                             \
  generate_descriptor_proto.sh           \
  README.md                              \
  LICENSE                                \
  CONTRIBUTORS.txt                       \
  CHANGES.txt                            \
  update_file_lists.sh                   \
1215 1216
  BUILD                                  \
  WORKSPACE                              \
Bo Yang's avatar
Bo Yang committed
1217 1218
  cmake/CMakeLists.txt                   \
  cmake/README.md                        \
1219
  cmake/conformance.cmake                   \
1220
  cmake/examples.cmake                   \
Bo Yang's avatar
Bo Yang committed
1221 1222 1223 1224 1225 1226 1227
  cmake/extract_includes.bat.in          \
  cmake/install.cmake                    \
  cmake/libprotobuf.cmake                \
  cmake/libprotobuf-lite.cmake           \
  cmake/libprotoc.cmake                  \
  cmake/protobuf-config-version.cmake.in \
  cmake/protobuf-config.cmake.in         \
1228
  cmake/protobuf-lite.pc.cmake           \
Bo Yang's avatar
Bo Yang committed
1229
  cmake/protobuf-module.cmake.in         \
1230
  cmake/protobuf-options.cmake           \
1231
  cmake/protobuf.pc.cmake                \
Bo Yang's avatar
Bo Yang committed
1232 1233
  cmake/protoc.cmake                     \
  cmake/tests.cmake                      \
1234
  cmake/version.rc.in                    \
1235
  compiler_config_setting.bzl            \
Bo Yang's avatar
Bo Yang committed
1236 1237 1238
  editors/README.txt                     \
  editors/proto.vim                      \
  editors/protobuf-mode.el               \
Feng Xiao's avatar
Feng Xiao committed
1239 1240
  examples/AddPerson.java                \
  examples/BUILD                         \
1241
  examples/CMakeLists.txt                \
Feng Xiao's avatar
Feng Xiao committed
1242
  examples/ListPeople.java               \
Bo Yang's avatar
Bo Yang committed
1243
  examples/Makefile                      \
Feng Xiao's avatar
Feng Xiao committed
1244 1245
  examples/README.md                     \
  examples/WORKSPACE                     \
Bo Yang's avatar
Bo Yang committed
1246
  examples/add_person.cc                 \
Adam Cozzette's avatar
Adam Cozzette committed
1247
  examples/add_person.dart               \
1248
  examples/add_person.go                 \
Feng Xiao's avatar
Feng Xiao committed
1249
  examples/add_person.py                 \
1250
  examples/add_person_test.go            \
Feng Xiao's avatar
Feng Xiao committed
1251
  examples/addressbook.proto             \
Bo Yang's avatar
Bo Yang committed
1252
  examples/list_people.cc                \
Adam Cozzette's avatar
Adam Cozzette committed
1253
  examples/list_people.dart              \
1254 1255 1256
  examples/list_people.go                \
  examples/list_people.py                \
  examples/list_people_test.go           \
Adam Cozzette's avatar
Adam Cozzette committed
1257
  examples/pubspec.yaml                  \
1258
  protobuf.bzl                           \
1259
  protobuf_deps.bzl                      \
1260 1261 1262 1263
  python/release/wheel/build_wheel_manylinux.sh  \
  python/release/wheel/Dockerfile                \
  python/release/wheel/protobuf_optimized_pip.sh \
  python/release/wheel/README.md         \
1264
  third_party/six.BUILD                  \
1265
  third_party/zlib.BUILD                 \
1266
  util/python/BUILD
1267

1268

temporal's avatar
temporal committed
1269 1270 1271
# Deletes all the files generated by autogen.sh.
MAINTAINERCLEANFILES =   \
  aclocal.m4             \
1272
  ar-lib                 \
temporal's avatar
temporal committed
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
  config.guess           \
  config.sub             \
  configure              \
  depcomp                \
  install-sh             \
  ltmain.sh              \
  Makefile.in            \
  missing                \
  mkinstalldirs          \
  config.h.in            \
1283 1284 1285 1286 1287 1288
  stamp.h.in             \
  m4/ltsugar.m4          \
  m4/libtool.m4          \
  m4/ltversion.m4        \
  m4/lt~obsolete.m4      \
  m4/ltoptions.m4