blob: f1d88c82e2cdef8b893acd408689dbc3b921265f [file] [log] [blame]
temporal40ee5512008-07-10 02:12:20 +00001## Process this file with automake to produce Makefile.in
2
3ACLOCAL_AMFLAGS = -I m4
4
kenton@google.com7516a692008-09-30 20:55:25 +00005AUTOMAKE_OPTIONS = foreign
6
kenton@google.com37ad00d2009-04-21 21:00:39 +00007# Build . before src so that our all-local and clean-local hooks kicks in at
8# the right time.
9SUBDIRS = . src
10
Feng Xiaoe96ff302015-06-15 18:21:48 -070011# Always include gmock in distributions.
Josh Haberman35a1cc72015-04-01 17:23:48 -070012DIST_SUBDIRS = $(subdirs) src conformance
kenton@google.com37ad00d2009-04-21 21:00:39 +000013
Feng Xiaoe96ff302015-06-15 18:21:48 -070014# Build gmock before we build protobuf tests. We don't add gmock to SUBDIRS
15# because then "make check" would also build and run all of gmock's own tests,
kenton@google.com37ad00d2009-04-21 21:00:39 +000016# which takes a lot of time and is generally not useful to us. Also, we don't
Feng Xiaoe96ff302015-06-15 18:21:48 -070017# want "make install" to recurse into gmock since we don't want to overwrite
18# the installed version of gmock if there is one.
kenton@google.com37ad00d2009-04-21 21:00:39 +000019check-local:
Feng Xiaoe96ff302015-06-15 18:21:48 -070020 @echo "Making lib/libgmock.a lib/libgmock_main.a in gmock"
21 @cd gmock && $(MAKE) $(AM_MAKEFLAGS) lib/libgmock.la lib/libgmock_main.la
22 @cd gmock/gtest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la
kenton@google.com37ad00d2009-04-21 21:00:39 +000023
Feng Xiaoe96ff302015-06-15 18:21:48 -070024# We would like to clean gmock when "make clean" is invoked. But we have to
kenton@google.com37ad00d2009-04-21 21:00:39 +000025# be careful because clean-local is also invoked during "make distclean", but
Feng Xiaoe96ff302015-06-15 18:21:48 -070026# "make distclean" already recurses into gmock because it's listed among the
27# DIST_SUBDIRS. distclean will delete gmock/Makefile, so if we then try to
kenton@google.com37ad00d2009-04-21 21:00:39 +000028# cd to the directory again and "make clean" it will fail. So, check that the
29# Makefile exists before recursing.
30clean-local:
Feng Xiaoe96ff302015-06-15 18:21:48 -070031 @if test -e gmock/Makefile; then \
32 echo "Making clean in gmock"; \
33 cd gmock && $(MAKE) $(AM_MAKEFLAGS) clean; \
Josh Haberman35a1cc72015-04-01 17:23:48 -070034 fi; \
35 if test -e conformance/Makefile; then \
36 echo "Making clean in conformance"; \
37 cd conformance && $(MAKE) $(AM_MAKEFLAGS) clean; \
kenton@google.com37ad00d2009-04-21 21:00:39 +000038 fi
temporal40ee5512008-07-10 02:12:20 +000039
kenton@google.com3c66c2e2009-08-03 21:31:25 +000040pkgconfigdir = $(libdir)/pkgconfig
41pkgconfig_DATA = protobuf.pc protobuf-lite.pc
42
Jan Tattermusch271cba22015-07-16 11:24:48 -070043csharp_EXTRA_DIST= \
Feng Xiao99e18682015-08-26 20:19:05 -070044 csharp/.gitignore \
Jan Tattermusch271cba22015-07-16 11:24:48 -070045 csharp/CHANGES.txt \
46 csharp/README.md \
47 csharp/build_packages.bat \
48 csharp/buildall.sh \
49 csharp/generate_protos.sh \
Jan Tattermusche61b5282015-08-02 14:27:01 -070050 csharp/keys/Google.Protobuf.public.snk \
51 csharp/keys/README.md \
Jon Skeet0f370b42015-08-03 10:59:27 +010052 csharp/protos/unittest_issues.proto \
Jan Tattermusch271cba22015-07-16 11:24:48 -070053 csharp/src/AddressBook/AddPerson.cs \
54 csharp/src/AddressBook/AddressBook.csproj \
55 csharp/src/AddressBook/Addressbook.cs \
56 csharp/src/AddressBook/ListPeople.cs \
57 csharp/src/AddressBook/Program.cs \
58 csharp/src/AddressBook/Properties/AssemblyInfo.cs \
59 csharp/src/AddressBook/SampleUsage.cs \
60 csharp/src/AddressBook/app.config \
Feng Xiao99e18682015-08-26 20:19:05 -070061 csharp/src/Google.Protobuf.Conformance/App.config \
62 csharp/src/Google.Protobuf.Conformance/Conformance.cs \
63 csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj \
64 csharp/src/Google.Protobuf.Conformance/Program.cs \
65 csharp/src/Google.Protobuf.Conformance/Properties/AssemblyInfo.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +010066 csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \
67 csharp/src/Google.Protobuf.JsonDump/Program.cs \
68 csharp/src/Google.Protobuf.JsonDump/Properties/AssemblyInfo.cs \
69 csharp/src/Google.Protobuf.JsonDump/app.config \
70 csharp/src/Google.Protobuf.Test/ByteStringTest.cs \
71 csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \
72 csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \
73 csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \
74 csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \
75 csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -070076 csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \
77 csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +010078 csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \
79 csharp/src/Google.Protobuf.Test/EqualityTester.cs \
80 csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \
81 csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \
82 csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \
83 csharp/src/Google.Protobuf.Test/IssuesTest.cs \
84 csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \
85 csharp/src/Google.Protobuf.Test/Properties/AppManifest.xml \
86 csharp/src/Google.Protobuf.Test/Properties/AssemblyInfo.cs \
87 csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -070088 csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +010089 csharp/src/Google.Protobuf.Test/SampleEnum.cs \
90 csharp/src/Google.Protobuf.Test/SampleMessages.cs \
91 csharp/src/Google.Protobuf.Test/TestCornerCases.cs \
92 csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs \
93 csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs \
94 csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs \
95 csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs \
96 csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs \
97 csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs \
Feng Xiao99e18682015-08-26 20:19:05 -070098 csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \
99 csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100100 csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \
101 csharp/src/Google.Protobuf.Test/packages.config \
102 csharp/src/Google.Protobuf.sln \
103 csharp/src/Google.Protobuf/ByteArray.cs \
104 csharp/src/Google.Protobuf/ByteString.cs \
105 csharp/src/Google.Protobuf/CodedInputStream.cs \
106 csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \
107 csharp/src/Google.Protobuf/CodedOutputStream.cs \
108 csharp/src/Google.Protobuf/Collections/MapField.cs \
109 csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \
110 csharp/src/Google.Protobuf/Collections/RepeatedField.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700111 csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \
112 csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100113 csharp/src/Google.Protobuf/FieldCodec.cs \
114 csharp/src/Google.Protobuf/FrameworkPortability.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100115 csharp/src/Google.Protobuf/Google.Protobuf.csproj \
116 csharp/src/Google.Protobuf/Google.Protobuf.nuspec \
Feng Xiao99e18682015-08-26 20:19:05 -0700117 csharp/src/Google.Protobuf/IDeepCloneable.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100118 csharp/src/Google.Protobuf/IMessage.cs \
119 csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \
120 csharp/src/Google.Protobuf/JsonFormatter.cs \
121 csharp/src/Google.Protobuf/LimitedInputStream.cs \
122 csharp/src/Google.Protobuf/MessageExtensions.cs \
123 csharp/src/Google.Protobuf/MessageParser.cs \
Jon Skeet68380f02015-07-30 13:03:45 +0100124 csharp/src/Google.Protobuf/Preconditions.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100125 csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \
126 csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \
127 csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \
128 csharp/src/Google.Protobuf/Reflection/DescriptorProtoFile.cs \
129 csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \
130 csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \
131 csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \
132 csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \
133 csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100134 csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \
135 csharp/src/Google.Protobuf/Reflection/FieldType.cs \
136 csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \
Jon Skeet43d64b42015-07-22 14:32:27 +0100137 csharp/src/Google.Protobuf/Reflection/GeneratedCodeInfo.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100138 csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \
139 csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \
140 csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \
141 csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \
142 csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \
143 csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \
144 csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \
145 csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \
146 csharp/src/Google.Protobuf/Reflection/PartialClasses.cs \
147 csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \
148 csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \
149 csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \
150 csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100151 csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \
152 csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \
153 csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700154 csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100155 csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \
156 csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \
157 csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \
158 csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700159 csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100160 csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700161 csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100162 csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \
163 csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \
164 csharp/src/Google.Protobuf/WireFormat.cs \
Jan Tattermusch271cba22015-07-16 11:24:48 -0700165 csharp/src/packages/repositories.config
Bo Yang99072862015-05-25 17:06:18 -0700166
Feng Xiao8f7dec82014-12-02 14:15:26 -0800167java_EXTRA_DIST= \
temporal40ee5512008-07-10 02:12:20 +0000168 java/src/main/java/com/google/protobuf/AbstractMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000169 java/src/main/java/com/google/protobuf/AbstractMessageLite.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000170 java/src/main/java/com/google/protobuf/AbstractParser.java \
Bo Yang5db21732015-05-21 14:28:59 -0700171 java/src/main/java/com/google/protobuf/AbstractProtobufList.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +0000172 java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
173 java/src/main/java/com/google/protobuf/BlockingService.java \
Bo Yang5db21732015-05-21 14:28:59 -0700174 java/src/main/java/com/google/protobuf/BooleanArrayList.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700175 java/src/main/java/com/google/protobuf/BoundedByteString.java \
temporal40ee5512008-07-10 02:12:20 +0000176 java/src/main/java/com/google/protobuf/ByteString.java \
177 java/src/main/java/com/google/protobuf/CodedInputStream.java \
178 java/src/main/java/com/google/protobuf/CodedOutputStream.java \
179 java/src/main/java/com/google/protobuf/Descriptors.java \
Bo Yang5db21732015-05-21 14:28:59 -0700180 java/src/main/java/com/google/protobuf/DoubleArrayList.java \
temporal40ee5512008-07-10 02:12:20 +0000181 java/src/main/java/com/google/protobuf/DynamicMessage.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000182 java/src/main/java/com/google/protobuf/Extension.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800183 java/src/main/java/com/google/protobuf/ExtensionLite.java \
temporal40ee5512008-07-10 02:12:20 +0000184 java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000185 java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
temporal40ee5512008-07-10 02:12:20 +0000186 java/src/main/java/com/google/protobuf/FieldSet.java \
Bo Yang5db21732015-05-21 14:28:59 -0700187 java/src/main/java/com/google/protobuf/FloatArrayList.java \
temporal40ee5512008-07-10 02:12:20 +0000188 java/src/main/java/com/google/protobuf/GeneratedMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000189 java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
Bo Yang5db21732015-05-21 14:28:59 -0700190 java/src/main/java/com/google/protobuf/IntArrayList.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700191 java/src/main/java/com/google/protobuf/Internal.java \
temporal40ee5512008-07-10 02:12:20 +0000192 java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000193 java/src/main/java/com/google/protobuf/LazyField.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000194 java/src/main/java/com/google/protobuf/LazyFieldLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000195 java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
196 java/src/main/java/com/google/protobuf/LazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000197 java/src/main/java/com/google/protobuf/LiteralByteString.java \
Bo Yang5db21732015-05-21 14:28:59 -0700198 java/src/main/java/com/google/protobuf/LongArrayList.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800199 java/src/main/java/com/google/protobuf/MapEntry.java \
200 java/src/main/java/com/google/protobuf/MapEntryLite.java \
201 java/src/main/java/com/google/protobuf/MapField.java \
202 java/src/main/java/com/google/protobuf/MapFieldLite.java \
temporal40ee5512008-07-10 02:12:20 +0000203 java/src/main/java/com/google/protobuf/Message.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000204 java/src/main/java/com/google/protobuf/MessageLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000205 java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
206 java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000207 java/src/main/java/com/google/protobuf/MessageReflection.java \
Bo Yang5db21732015-05-21 14:28:59 -0700208 java/src/main/java/com/google/protobuf/MutabilityOracle.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000209 java/src/main/java/com/google/protobuf/Parser.java \
Bo Yang5db21732015-05-21 14:28:59 -0700210 java/src/main/java/com/google/protobuf/ProtobufArrayList.java \
kenton@google.com2d6daa72009-01-22 01:27:00 +0000211 java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000212 java/src/main/java/com/google/protobuf/ProtocolStringList.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000213 java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000214 java/src/main/java/com/google/protobuf/RopeByteString.java \
temporal40ee5512008-07-10 02:12:20 +0000215 java/src/main/java/com/google/protobuf/RpcCallback.java \
216 java/src/main/java/com/google/protobuf/RpcChannel.java \
217 java/src/main/java/com/google/protobuf/RpcController.java \
218 java/src/main/java/com/google/protobuf/RpcUtil.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000219 java/src/main/java/com/google/protobuf/Service.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700220 java/src/main/java/com/google/protobuf/ServiceException.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000221 java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
222 java/src/main/java/com/google/protobuf/SmallSortedMap.java \
temporal40ee5512008-07-10 02:12:20 +0000223 java/src/main/java/com/google/protobuf/TextFormat.java \
224 java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
225 java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800226 java/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000227 java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000228 java/src/main/java/com/google/protobuf/Utf8.java \
temporal40ee5512008-07-10 02:12:20 +0000229 java/src/main/java/com/google/protobuf/WireFormat.java \
230 java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700231 java/src/test/java/com/google/protobuf/AnyTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700232 java/src/test/java/com/google/protobuf/BooleanArrayListTest.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700233 java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000234 java/src/test/java/com/google/protobuf/ByteStringTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000235 java/src/test/java/com/google/protobuf/CheckUtf8Test.java \
temporal40ee5512008-07-10 02:12:20 +0000236 java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
237 java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000238 java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
temporal40ee5512008-07-10 02:12:20 +0000239 java/src/test/java/com/google/protobuf/DescriptorsTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700240 java/src/test/java/com/google/protobuf/DoubleArrayListTest.java \
temporal40ee5512008-07-10 02:12:20 +0000241 java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800242 java/src/test/java/com/google/protobuf/FieldPresenceTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700243 java/src/test/java/com/google/protobuf/FloatArrayListTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000244 java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
temporal40ee5512008-07-10 02:12:20 +0000245 java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700246 java/src/test/java/com/google/protobuf/IntArrayListTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000247 java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
248 java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000249 java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800250 java/src/test/java/com/google/protobuf/LazyFieldTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000251 java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000252 java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
253 java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000254 java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000255 java/src/test/java/com/google/protobuf/LiteTest.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700256 java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700257 java/src/test/java/com/google/protobuf/LongArrayListTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800258 java/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
259 java/src/test/java/com/google/protobuf/MapForProto2Test.java \
260 java/src/test/java/com/google/protobuf/MapTest.java \
temporal40ee5512008-07-10 02:12:20 +0000261 java/src/test/java/com/google/protobuf/MessageTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000262 java/src/test/java/com/google/protobuf/NestedBuildersTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000263 java/src/test/java/com/google/protobuf/ParserTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700264 java/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000265 java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000266 java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
267 java/src/test/java/com/google/protobuf/RopeByteStringTest.java \
temporal40ee5512008-07-10 02:12:20 +0000268 java/src/test/java/com/google/protobuf/ServiceTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000269 java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
270 java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
271 java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
temporal40ee5512008-07-10 02:12:20 +0000272 java/src/test/java/com/google/protobuf/TestUtil.java \
273 java/src/test/java/com/google/protobuf/TextFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800274 java/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
275 java/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
temporal40ee5512008-07-10 02:12:20 +0000276 java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000277 java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700278 java/src/test/java/com/google/protobuf/WellKnownTypesTest.java \
temporal40ee5512008-07-10 02:12:20 +0000279 java/src/test/java/com/google/protobuf/WireFormatTest.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700280 java/src/test/java/com/google/protobuf/any_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800281 java/src/test/java/com/google/protobuf/field_presence_test.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000282 java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \
283 java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \
Feng Xiao35ef6802014-12-03 15:45:28 -0800284 java/src/test/java/com/google/protobuf/map_for_proto2_lite_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800285 java/src/test/java/com/google/protobuf/map_for_proto2_test.proto \
TeBoringe9d0bb42015-05-25 20:17:04 -0700286 java/src/test/java/com/google/protobuf/map_initialization_order_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800287 java/src/test/java/com/google/protobuf/map_test.proto \
temporal40ee5512008-07-10 02:12:20 +0000288 java/src/test/java/com/google/protobuf/multiple_files_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000289 java/src/test/java/com/google/protobuf/nested_builders_test.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000290 java/src/test/java/com/google/protobuf/nested_extension.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -0700291 java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000292 java/src/test/java/com/google/protobuf/non_nested_extension.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -0700293 java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
294 java/src/test/java/com/google/protobuf/outer_class_name_test.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000295 java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \
296 java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000297 java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000298 java/src/test/java/com/google/protobuf/test_check_utf8.proto \
299 java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \
300 java/src/test/java/com/google/protobuf/test_custom_options.proto \
TeBoringe9d0bb42015-05-25 20:17:04 -0700301 java/src/test/java/com/google/protobuf/test_extra_interfaces.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -0700302 java/util/pom.xml \
303 java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java \
304 java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java \
305 java/util/src/main/java/com/google/protobuf/util/JsonFormat.java \
306 java/util/src/main/java/com/google/protobuf/util/TimeUtil.java \
307 java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java \
308 java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java \
309 java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java \
310 java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java \
311 java/util/src/test/java/com/google/protobuf/util/json_test.proto \
temporal40ee5512008-07-10 02:12:20 +0000312 java/pom.xml \
jesse0481bf32015-03-17 12:14:55 -0700313 java/README.md
Feng Xiao8f7dec82014-12-02 14:15:26 -0800314
Jisi Liuff35de32015-02-21 14:58:02 -0800315javanano_EXTRA_DIST= \
316 javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java \
317 javanano/src/main/java/com/google/protobuf/nano/FieldData.java \
318 javanano/src/main/java/com/google/protobuf/nano/FieldArray.java \
319 javanano/src/main/java/com/google/protobuf/nano/WireFormatNano.java \
320 javanano/src/main/java/com/google/protobuf/nano/Extension.java \
321 javanano/src/main/java/com/google/protobuf/nano/CodedInputByteBufferNano.java \
322 javanano/src/main/java/com/google/protobuf/nano/UnknownFieldData.java \
323 javanano/src/main/java/com/google/protobuf/nano/MessageNano.java \
324 javanano/src/main/java/com/google/protobuf/nano/InternalNano.java \
325 javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java \
326 javanano/src/main/java/com/google/protobuf/nano/MapFactories.java \
327 javanano/src/main/java/com/google/protobuf/nano/ExtendableMessageNano.java \
328 javanano/src/main/java/com/google/protobuf/nano/MessageNanoPrinter.java \
329 javanano/src/test/java/com/google/protobuf/nano/unittest_accessors_nano.proto \
330 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_nano.proto \
331 javanano/src/test/java/com/google/protobuf/nano/unittest_reference_types_nano.proto \
332 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_repeated_nano.proto \
333 javanano/src/test/java/com/google/protobuf/nano/unittest_has_nano.proto \
334 javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto \
335 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nameclash_nano.proto \
336 javanano/src/test/java/com/google/protobuf/nano/unittest_single_nano.proto \
337 javanano/src/test/java/com/google/protobuf/nano/NanoTest.java \
338 javanano/src/test/java/com/google/protobuf/nano/unittest_simple_nano.proto \
339 javanano/src/test/java/com/google/protobuf/nano/unittest_import_nano.proto \
340 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_merge_nano.proto \
341 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_nano.proto \
342 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_packables_nano.proto \
343 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_singular_nano.proto \
344 javanano/src/test/java/com/google/protobuf/nano/unittest_recursive_nano.proto \
345 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_packed_nano.proto \
346 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_validity_nano.proto \
347 javanano/src/test/java/com/google/protobuf/nano/unittest_stringutf8_nano.proto \
348 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nano.proto \
349 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_multiple_nano.proto \
350 javanano/src/test/java/com/google/protobuf/nano/map_test.proto \
jesse0481bf32015-03-17 12:14:55 -0700351 javanano/README.md \
Jisi Liuff35de32015-02-21 14:58:02 -0800352 javanano/pom.xml
353
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400354objectivec_EXTRA_DIST= \
Thomas Van Lenten1dcc3292015-05-21 17:14:52 -0400355 objectivec/DevTools/check_version_stamps.sh \
Feng Xiao99e18682015-08-26 20:19:05 -0700356 objectivec/DevTools/compile_testing_protos.sh \
Bo Yang50a765b2015-05-25 12:48:03 -0700357 objectivec/DevTools/full_mac_build.sh \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400358 objectivec/DevTools/pddm.py \
359 objectivec/DevTools/pddm_tests.py \
Bo Yang4edc1bb2015-05-25 16:18:12 -0700360 objectivec/generate_descriptors_proto.sh \
TeBoringeef79f32015-05-25 13:08:09 -0700361 objectivec/google/protobuf/Any.pbobjc.h \
362 objectivec/google/protobuf/Any.pbobjc.m \
363 objectivec/google/protobuf/Api.pbobjc.h \
364 objectivec/google/protobuf/Api.pbobjc.m \
365 objectivec/google/protobuf/Descriptor.pbobjc.h \
366 objectivec/google/protobuf/Descriptor.pbobjc.m \
367 objectivec/google/protobuf/Duration.pbobjc.h \
368 objectivec/google/protobuf/Duration.pbobjc.m \
369 objectivec/google/protobuf/Empty.pbobjc.h \
370 objectivec/google/protobuf/Empty.pbobjc.m \
371 objectivec/google/protobuf/FieldMask.pbobjc.h \
372 objectivec/google/protobuf/FieldMask.pbobjc.m \
373 objectivec/google/protobuf/SourceContext.pbobjc.h \
374 objectivec/google/protobuf/SourceContext.pbobjc.m \
375 objectivec/google/protobuf/Struct.pbobjc.h \
376 objectivec/google/protobuf/Struct.pbobjc.m \
377 objectivec/google/protobuf/Timestamp.pbobjc.h \
378 objectivec/google/protobuf/Timestamp.pbobjc.m \
379 objectivec/google/protobuf/Type.pbobjc.h \
380 objectivec/google/protobuf/Type.pbobjc.m \
381 objectivec/google/protobuf/Wrappers.pbobjc.h \
382 objectivec/google/protobuf/Wrappers.pbobjc.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400383 objectivec/GPBArray.h \
384 objectivec/GPBArray.m \
385 objectivec/GPBArray_PackagePrivate.h \
386 objectivec/GPBBootstrap.h \
387 objectivec/GPBCodedInputStream.h \
388 objectivec/GPBCodedInputStream.m \
389 objectivec/GPBCodedInputStream_PackagePrivate.h \
390 objectivec/GPBCodedOutputStream.h \
391 objectivec/GPBCodedOutputStream.m \
392 objectivec/GPBDescriptor.h \
393 objectivec/GPBDescriptor.m \
394 objectivec/GPBDescriptor_PackagePrivate.h \
395 objectivec/GPBDictionary.h \
396 objectivec/GPBDictionary.m \
397 objectivec/GPBDictionary_PackagePrivate.h \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400398 objectivec/GPBExtensionInternals.h \
399 objectivec/GPBExtensionInternals.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400400 objectivec/GPBExtensionRegistry.h \
401 objectivec/GPBExtensionRegistry.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400402 objectivec/GPBMessage.h \
403 objectivec/GPBMessage.m \
404 objectivec/GPBMessage_PackagePrivate.h \
405 objectivec/GPBProtocolBuffers.h \
406 objectivec/GPBProtocolBuffers.m \
407 objectivec/GPBProtocolBuffers_RuntimeSupport.h \
408 objectivec/GPBRootObject.h \
409 objectivec/GPBRootObject.m \
410 objectivec/GPBRootObject_PackagePrivate.h \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400411 objectivec/GPBRuntimeTypes.h \
412 objectivec/GPBUnknownField.h \
413 objectivec/GPBUnknownField.m \
414 objectivec/GPBUnknownField_PackagePrivate.h \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400415 objectivec/GPBUnknownFieldSet.h \
416 objectivec/GPBUnknownFieldSet.m \
417 objectivec/GPBUnknownFieldSet_PackagePrivate.h \
418 objectivec/GPBUtilities.h \
419 objectivec/GPBUtilities.m \
420 objectivec/GPBUtilities_PackagePrivate.h \
421 objectivec/GPBWellKnownTypes.h \
422 objectivec/GPBWellKnownTypes.m \
423 objectivec/GPBWireFormat.h \
424 objectivec/GPBWireFormat.m \
425 objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \
426 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
427 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
428 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/FFE465CA-0E74-40E8-9F09-500B66B7DCB2.plist \
429 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/Info.plist \
430 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
431 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
432 objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \
433 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
434 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
435 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
436 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
Bo Yang50a765b2015-05-25 12:48:03 -0700437 objectivec/README.md \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400438 objectivec/Tests/golden_message \
439 objectivec/Tests/golden_packed_fields_message \
440 objectivec/Tests/GPBARCUnittestProtos.m \
441 objectivec/Tests/GPBArrayTests.m \
442 objectivec/Tests/GPBCodedInputStreamTests.m \
443 objectivec/Tests/GPBCodedOuputStreamTests.m \
444 objectivec/Tests/GPBConcurrencyTests.m \
445 objectivec/Tests/GPBDescriptorTests.m \
446 objectivec/Tests/GPBDictionaryTests+Bool.m \
447 objectivec/Tests/GPBDictionaryTests+Int32.m \
448 objectivec/Tests/GPBDictionaryTests+Int64.m \
449 objectivec/Tests/GPBDictionaryTests+String.m \
450 objectivec/Tests/GPBDictionaryTests+UInt32.m \
451 objectivec/Tests/GPBDictionaryTests+UInt64.m \
452 objectivec/Tests/GPBDictionaryTests.pddm \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400453 objectivec/Tests/GPBMessageTests+Merge.m \
454 objectivec/Tests/GPBMessageTests+Runtime.m \
455 objectivec/Tests/GPBMessageTests+Serialization.m \
456 objectivec/Tests/GPBMessageTests.m \
457 objectivec/Tests/GPBPerfTests.m \
458 objectivec/Tests/GPBStringTests.m \
459 objectivec/Tests/GPBSwiftTests.swift \
460 objectivec/Tests/GPBTestUtilities.h \
461 objectivec/Tests/GPBTestUtilities.m \
462 objectivec/Tests/GPBUnittestProtos.m \
463 objectivec/Tests/GPBUnknownFieldSetTest.m \
464 objectivec/Tests/GPBUtilitiesTests.m \
465 objectivec/Tests/GPBWellKnownTypesTest.m \
466 objectivec/Tests/GPBWireFormatTests.m \
467 objectivec/Tests/iOSTestHarness/AppDelegate.m \
468 objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings \
Bo Yang50a765b2015-05-25 12:48:03 -0700469 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.json \
470 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png \
Thomas Van Lenten0f2b4a02015-06-10 13:45:52 -0400471 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6_2x.png \
Bo Yang50a765b2015-05-25 12:48:03 -0700472 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png \
Thomas Van Lenten0f2b4a02015-06-10 13:45:52 -0400473 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7_2x.png \
Bo Yang50a765b2015-05-25 12:48:03 -0700474 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png \
Thomas Van Lenten0f2b4a02015-06-10 13:45:52 -0400475 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6_2x.png \
476 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_2x.png \
477 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_3x.png \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400478 objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Contents.json \
479 objectivec/Tests/iOSTestHarness/Info.plist \
480 objectivec/Tests/iOSTestHarness/LaunchScreen.xib \
481 objectivec/Tests/text_format_map_unittest_data.txt \
482 objectivec/Tests/text_format_unittest_data.txt \
483 objectivec/Tests/unittest_cycle.proto \
Feng Xiao99e18682015-08-26 20:19:05 -0700484 objectivec/Tests/unittest_objc_startup.proto \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400485 objectivec/Tests/unittest_objc.proto \
486 objectivec/Tests/unittest_runtime_proto2.proto \
487 objectivec/Tests/unittest_runtime_proto3.proto \
488 objectivec/Tests/UnitTests-Bridging-Header.h \
Jorge Canizales46b0a652015-05-14 22:38:52 -0700489 objectivec/Tests/UnitTests-Info.plist \
490 Protobuf.podspec
Jisi Liuff35de32015-02-21 14:58:02 -0800491
Feng Xiao8f7dec82014-12-02 14:15:26 -0800492python_EXTRA_DIST= \
Bo Yang51de7a72015-05-25 22:21:05 -0700493 python/MANIFEST.in \
jieluo@google.combde4a322014-08-12 21:10:30 +0000494 python/google/protobuf/internal/api_implementation.cc \
495 python/google/protobuf/internal/api_implementation.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +0000496 python/google/protobuf/internal/containers.py \
temporal40ee5512008-07-10 02:12:20 +0000497 python/google/protobuf/internal/decoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000498 python/google/protobuf/internal/descriptor_database_test.py \
499 python/google/protobuf/internal/descriptor_pool_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000500 python/google/protobuf/internal/descriptor_pool_test1.proto \
501 python/google/protobuf/internal/descriptor_pool_test2.proto \
temporal40ee5512008-07-10 02:12:20 +0000502 python/google/protobuf/internal/descriptor_test.py \
503 python/google/protobuf/internal/encoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000504 python/google/protobuf/internal/enum_type_wrapper.py \
505 python/google/protobuf/internal/factory_test1.proto \
506 python/google/protobuf/internal/factory_test2.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000507 python/google/protobuf/internal/generator_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000508 python/google/protobuf/internal/message_factory_test.py \
temporal40ee5512008-07-10 02:12:20 +0000509 python/google/protobuf/internal/message_listener.py \
Feng Xiaoa3312982015-08-26 20:20:42 -0700510 python/google/protobuf/internal/message_set_extensions.proto \
kenton@google.com80b1d622009-07-29 01:13:20 +0000511 python/google/protobuf/internal/message_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000512 python/google/protobuf/internal/missing_enum_values.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000513 python/google/protobuf/internal/more_extensions_dynamic.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -0700514 python/google/protobuf/internal/more_extensions.proto \
temporal40ee5512008-07-10 02:12:20 +0000515 python/google/protobuf/internal/more_messages.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -0700516 python/google/protobuf/internal/packed_field_test.proto \
Josh Haberman0b70a432015-02-25 20:17:32 -0800517 python/google/protobuf/internal/_parameterized.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800518 python/google/protobuf/internal/proto_builder_test.py \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000519 python/google/protobuf/internal/python_message.py \
temporal40ee5512008-07-10 02:12:20 +0000520 python/google/protobuf/internal/reflection_test.py \
521 python/google/protobuf/internal/service_reflection_test.py \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000522 python/google/protobuf/internal/symbol_database_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000523 python/google/protobuf/internal/test_bad_identifiers.proto \
temporal40ee5512008-07-10 02:12:20 +0000524 python/google/protobuf/internal/test_util.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000525 python/google/protobuf/internal/text_encoding_test.py \
temporal40ee5512008-07-10 02:12:20 +0000526 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +0000527 python/google/protobuf/internal/type_checkers.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000528 python/google/protobuf/internal/unknown_fields_test.py \
temporal40ee5512008-07-10 02:12:20 +0000529 python/google/protobuf/internal/wire_format.py \
530 python/google/protobuf/internal/wire_format_test.py \
531 python/google/protobuf/internal/__init__.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800532 python/google/protobuf/internal/import_test_package/__init__.py \
533 python/google/protobuf/internal/import_test_package/inner.proto \
534 python/google/protobuf/internal/import_test_package/outer.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000535 python/google/protobuf/pyext/README \
536 python/google/protobuf/pyext/cpp_message.py \
537 python/google/protobuf/pyext/descriptor.h \
538 python/google/protobuf/pyext/descriptor.cc \
Josh Haberman0b70a432015-02-25 20:17:32 -0800539 python/google/protobuf/pyext/descriptor_pool.h \
540 python/google/protobuf/pyext/descriptor_pool.cc \
541 python/google/protobuf/pyext/descriptor_containers.h \
542 python/google/protobuf/pyext/descriptor_containers.cc \
jieluo@google.combde4a322014-08-12 21:10:30 +0000543 python/google/protobuf/pyext/extension_dict.h \
544 python/google/protobuf/pyext/extension_dict.cc \
545 python/google/protobuf/pyext/message.h \
546 python/google/protobuf/pyext/message.cc \
Bo Yang51de7a72015-05-25 22:21:05 -0700547 python/google/protobuf/pyext/message_map_container.cc \
548 python/google/protobuf/pyext/message_map_container.h \
jieluo@google.combde4a322014-08-12 21:10:30 +0000549 python/google/protobuf/pyext/proto2_api_test.proto \
550 python/google/protobuf/pyext/python.proto \
551 python/google/protobuf/pyext/python_protobuf.h \
552 python/google/protobuf/pyext/repeated_composite_container.h \
553 python/google/protobuf/pyext/repeated_composite_container.cc \
554 python/google/protobuf/pyext/repeated_scalar_container.h \
555 python/google/protobuf/pyext/repeated_scalar_container.cc \
Bo Yang51de7a72015-05-25 22:21:05 -0700556 python/google/protobuf/pyext/scalar_map_container.cc \
557 python/google/protobuf/pyext/scalar_map_container.h \
jieluo@google.combde4a322014-08-12 21:10:30 +0000558 python/google/protobuf/pyext/scoped_pyobject_ptr.h \
559 python/google/protobuf/pyext/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000560 python/google/protobuf/descriptor.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000561 python/google/protobuf/descriptor_database.py \
562 python/google/protobuf/descriptor_pool.py \
temporal40ee5512008-07-10 02:12:20 +0000563 python/google/protobuf/message.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000564 python/google/protobuf/message_factory.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800565 python/google/protobuf/proto_builder.py \
temporal40ee5512008-07-10 02:12:20 +0000566 python/google/protobuf/reflection.py \
567 python/google/protobuf/service.py \
568 python/google/protobuf/service_reflection.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000569 python/google/protobuf/symbol_database.py \
570 python/google/protobuf/text_encoding.py \
temporal40ee5512008-07-10 02:12:20 +0000571 python/google/protobuf/text_format.py \
572 python/google/protobuf/__init__.py \
573 python/google/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000574 python/mox.py \
Feng Xiao99e18682015-08-26 20:19:05 -0700575 python/setup.py \
temporal40ee5512008-07-10 02:12:20 +0000576 python/stubout.py \
Feng Xiao99e18682015-08-26 20:19:05 -0700577 python/tox.ini \
jesse0481bf32015-03-17 12:14:55 -0700578 python/README.md
temporal40ee5512008-07-10 02:12:20 +0000579
Chris Fallin973f4252014-11-18 14:19:58 -0800580ruby_EXTRA_DIST= \
Bo Yang51de7a72015-05-25 22:21:05 -0700581 ruby/Gemfile \
582 ruby/Gemfile.lock \
583 ruby/.gitignore \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800584 ruby/README.md \
585 ruby/Rakefile \
586 ruby/ext/google/protobuf_c/defs.c \
587 ruby/ext/google/protobuf_c/encode_decode.c \
588 ruby/ext/google/protobuf_c/extconf.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800589 ruby/ext/google/protobuf_c/map.c \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800590 ruby/ext/google/protobuf_c/message.c \
591 ruby/ext/google/protobuf_c/protobuf.c \
592 ruby/ext/google/protobuf_c/protobuf.h \
593 ruby/ext/google/protobuf_c/repeated_field.c \
594 ruby/ext/google/protobuf_c/storage.c \
595 ruby/ext/google/protobuf_c/upb.c \
596 ruby/ext/google/protobuf_c/upb.h \
597 ruby/google-protobuf.gemspec \
Bo Yang51de7a72015-05-25 22:21:05 -0700598 ruby/lib/google/protobuf/message_exts.rb \
599 ruby/lib/google/protobuf/repeated_field.rb \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800600 ruby/lib/google/protobuf.rb \
Bo Yang51de7a72015-05-25 22:21:05 -0700601 ruby/pom.xml \
602 ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \
603 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \
604 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \
605 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \
606 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \
607 ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \
608 ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \
609 ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \
610 ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \
611 ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \
612 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \
613 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \
614 ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \
615 ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \
616 ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \
617 ruby/src/main/java/com/google/protobuf/jruby/Utils.java \
618 ruby/src/main/java/google/ProtobufJavaService.java \
619 ruby/src/main/sentinel.proto \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800620 ruby/tests/basic.rb \
Bo Yang51de7a72015-05-25 22:21:05 -0700621 ruby/tests/repeated_field_test.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800622 ruby/tests/stress.rb \
623 ruby/tests/generated_code.proto \
624 ruby/tests/generated_code.rb \
Bo Yang51de7a72015-05-25 22:21:05 -0700625 ruby/tests/generated_code_test.rb \
626 ruby/travis-test.sh
Chris Fallin973f4252014-11-18 14:19:58 -0800627
Bo Yang632e8e22015-05-25 20:20:47 -0700628all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(javanano_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST)
Feng Xiao8f7dec82014-12-02 14:15:26 -0800629
Bo Yangff7bdad2015-08-23 10:45:14 -0700630EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
631 autogen.sh \
632 generate_descriptor_proto.sh \
633 README.md \
634 INSTALL.txt \
635 LICENSE \
636 CONTRIBUTORS.txt \
637 CHANGES.txt \
638 update_file_lists.sh \
Jisi Liu40081002015-08-26 17:48:08 -0700639 BUILD \
640 gmock.BUILD \
641 WORKSPACE \
Bo Yangff7bdad2015-08-23 10:45:14 -0700642 cmake/CMakeLists.txt \
643 cmake/README.md \
644 cmake/extract_includes.bat.in \
645 cmake/install.cmake \
646 cmake/libprotobuf.cmake \
647 cmake/libprotobuf-lite.cmake \
648 cmake/libprotoc.cmake \
649 cmake/protobuf-config-version.cmake.in \
650 cmake/protobuf-config.cmake.in \
651 cmake/protobuf-module.cmake.in \
652 cmake/protoc.cmake \
653 cmake/tests.cmake \
654 editors/README.txt \
655 editors/proto.vim \
656 editors/protobuf-mode.el \
657 examples/README.txt \
658 examples/Makefile \
659 examples/addressbook.proto \
660 examples/add_person.cc \
661 examples/list_people.cc \
662 examples/AddPerson.java \
663 examples/ListPeople.java \
664 examples/add_person.py \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800665 examples/list_people.py
666
temporal40ee5512008-07-10 02:12:20 +0000667# Deletes all the files generated by autogen.sh.
668MAINTAINERCLEANFILES = \
669 aclocal.m4 \
670 config.guess \
671 config.sub \
672 configure \
673 depcomp \
674 install-sh \
675 ltmain.sh \
676 Makefile.in \
677 missing \
678 mkinstalldirs \
679 config.h.in \
kenton@google.com39671e52009-07-31 21:46:11 +0000680 stamp.h.in \
681 m4/ltsugar.m4 \
682 m4/libtool.m4 \
683 m4/ltversion.m4 \
684 m4/lt~obsolete.m4 \
685 m4/ltoptions.m4