blob: 6d91808742885582dcf804691f7fcf20acd26fec [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 \
Jon Skeete50461d2015-09-04 11:22:34 +010098 csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -070099 csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \
100 csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100101 csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \
102 csharp/src/Google.Protobuf.Test/packages.config \
103 csharp/src/Google.Protobuf.sln \
104 csharp/src/Google.Protobuf/ByteArray.cs \
105 csharp/src/Google.Protobuf/ByteString.cs \
106 csharp/src/Google.Protobuf/CodedInputStream.cs \
107 csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \
108 csharp/src/Google.Protobuf/CodedOutputStream.cs \
109 csharp/src/Google.Protobuf/Collections/MapField.cs \
110 csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \
111 csharp/src/Google.Protobuf/Collections/RepeatedField.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700112 csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \
113 csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100114 csharp/src/Google.Protobuf/FieldCodec.cs \
115 csharp/src/Google.Protobuf/FrameworkPortability.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100116 csharp/src/Google.Protobuf/Google.Protobuf.csproj \
117 csharp/src/Google.Protobuf/Google.Protobuf.nuspec \
Feng Xiao99e18682015-08-26 20:19:05 -0700118 csharp/src/Google.Protobuf/IDeepCloneable.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100119 csharp/src/Google.Protobuf/IMessage.cs \
120 csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \
121 csharp/src/Google.Protobuf/JsonFormatter.cs \
122 csharp/src/Google.Protobuf/LimitedInputStream.cs \
123 csharp/src/Google.Protobuf/MessageExtensions.cs \
124 csharp/src/Google.Protobuf/MessageParser.cs \
Jon Skeet68380f02015-07-30 13:03:45 +0100125 csharp/src/Google.Protobuf/Preconditions.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100126 csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \
127 csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \
128 csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \
129 csharp/src/Google.Protobuf/Reflection/DescriptorProtoFile.cs \
130 csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \
131 csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \
132 csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \
133 csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \
134 csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100135 csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \
136 csharp/src/Google.Protobuf/Reflection/FieldType.cs \
137 csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \
Jon Skeet43d64b42015-07-22 14:32:27 +0100138 csharp/src/Google.Protobuf/Reflection/GeneratedCodeInfo.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100139 csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \
140 csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \
141 csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \
142 csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \
143 csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \
144 csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \
145 csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \
146 csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \
147 csharp/src/Google.Protobuf/Reflection/PartialClasses.cs \
148 csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \
149 csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \
150 csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \
151 csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100152 csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \
Jon Skeete50461d2015-09-04 11:22:34 +0100153 csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100154 csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \
155 csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700156 csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100157 csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \
158 csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \
159 csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \
160 csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700161 csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100162 csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700163 csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100164 csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \
165 csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \
166 csharp/src/Google.Protobuf/WireFormat.cs \
Jan Tattermusch271cba22015-07-16 11:24:48 -0700167 csharp/src/packages/repositories.config
Bo Yang99072862015-05-25 17:06:18 -0700168
Feng Xiao8f7dec82014-12-02 14:15:26 -0800169java_EXTRA_DIST= \
temporal40ee5512008-07-10 02:12:20 +0000170 java/src/main/java/com/google/protobuf/AbstractMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000171 java/src/main/java/com/google/protobuf/AbstractMessageLite.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000172 java/src/main/java/com/google/protobuf/AbstractParser.java \
Bo Yang5db21732015-05-21 14:28:59 -0700173 java/src/main/java/com/google/protobuf/AbstractProtobufList.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +0000174 java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
175 java/src/main/java/com/google/protobuf/BlockingService.java \
Bo Yang5db21732015-05-21 14:28:59 -0700176 java/src/main/java/com/google/protobuf/BooleanArrayList.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700177 java/src/main/java/com/google/protobuf/BoundedByteString.java \
temporal40ee5512008-07-10 02:12:20 +0000178 java/src/main/java/com/google/protobuf/ByteString.java \
179 java/src/main/java/com/google/protobuf/CodedInputStream.java \
180 java/src/main/java/com/google/protobuf/CodedOutputStream.java \
181 java/src/main/java/com/google/protobuf/Descriptors.java \
Bo Yang5db21732015-05-21 14:28:59 -0700182 java/src/main/java/com/google/protobuf/DoubleArrayList.java \
temporal40ee5512008-07-10 02:12:20 +0000183 java/src/main/java/com/google/protobuf/DynamicMessage.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000184 java/src/main/java/com/google/protobuf/Extension.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800185 java/src/main/java/com/google/protobuf/ExtensionLite.java \
temporal40ee5512008-07-10 02:12:20 +0000186 java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000187 java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
temporal40ee5512008-07-10 02:12:20 +0000188 java/src/main/java/com/google/protobuf/FieldSet.java \
Bo Yang5db21732015-05-21 14:28:59 -0700189 java/src/main/java/com/google/protobuf/FloatArrayList.java \
temporal40ee5512008-07-10 02:12:20 +0000190 java/src/main/java/com/google/protobuf/GeneratedMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000191 java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
Bo Yang5db21732015-05-21 14:28:59 -0700192 java/src/main/java/com/google/protobuf/IntArrayList.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700193 java/src/main/java/com/google/protobuf/Internal.java \
temporal40ee5512008-07-10 02:12:20 +0000194 java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000195 java/src/main/java/com/google/protobuf/LazyField.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000196 java/src/main/java/com/google/protobuf/LazyFieldLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000197 java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
198 java/src/main/java/com/google/protobuf/LazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000199 java/src/main/java/com/google/protobuf/LiteralByteString.java \
Bo Yang5db21732015-05-21 14:28:59 -0700200 java/src/main/java/com/google/protobuf/LongArrayList.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800201 java/src/main/java/com/google/protobuf/MapEntry.java \
202 java/src/main/java/com/google/protobuf/MapEntryLite.java \
203 java/src/main/java/com/google/protobuf/MapField.java \
204 java/src/main/java/com/google/protobuf/MapFieldLite.java \
temporal40ee5512008-07-10 02:12:20 +0000205 java/src/main/java/com/google/protobuf/Message.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000206 java/src/main/java/com/google/protobuf/MessageLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000207 java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
208 java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000209 java/src/main/java/com/google/protobuf/MessageReflection.java \
Bo Yang5db21732015-05-21 14:28:59 -0700210 java/src/main/java/com/google/protobuf/MutabilityOracle.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000211 java/src/main/java/com/google/protobuf/Parser.java \
Bo Yang5db21732015-05-21 14:28:59 -0700212 java/src/main/java/com/google/protobuf/ProtobufArrayList.java \
kenton@google.com2d6daa72009-01-22 01:27:00 +0000213 java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000214 java/src/main/java/com/google/protobuf/ProtocolStringList.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000215 java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000216 java/src/main/java/com/google/protobuf/RopeByteString.java \
temporal40ee5512008-07-10 02:12:20 +0000217 java/src/main/java/com/google/protobuf/RpcCallback.java \
218 java/src/main/java/com/google/protobuf/RpcChannel.java \
219 java/src/main/java/com/google/protobuf/RpcController.java \
220 java/src/main/java/com/google/protobuf/RpcUtil.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000221 java/src/main/java/com/google/protobuf/Service.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700222 java/src/main/java/com/google/protobuf/ServiceException.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000223 java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
224 java/src/main/java/com/google/protobuf/SmallSortedMap.java \
temporal40ee5512008-07-10 02:12:20 +0000225 java/src/main/java/com/google/protobuf/TextFormat.java \
226 java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
227 java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800228 java/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000229 java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000230 java/src/main/java/com/google/protobuf/Utf8.java \
temporal40ee5512008-07-10 02:12:20 +0000231 java/src/main/java/com/google/protobuf/WireFormat.java \
232 java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700233 java/src/test/java/com/google/protobuf/AnyTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700234 java/src/test/java/com/google/protobuf/BooleanArrayListTest.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700235 java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000236 java/src/test/java/com/google/protobuf/ByteStringTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000237 java/src/test/java/com/google/protobuf/CheckUtf8Test.java \
temporal40ee5512008-07-10 02:12:20 +0000238 java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
239 java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000240 java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
temporal40ee5512008-07-10 02:12:20 +0000241 java/src/test/java/com/google/protobuf/DescriptorsTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700242 java/src/test/java/com/google/protobuf/DoubleArrayListTest.java \
temporal40ee5512008-07-10 02:12:20 +0000243 java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800244 java/src/test/java/com/google/protobuf/FieldPresenceTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700245 java/src/test/java/com/google/protobuf/FloatArrayListTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000246 java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
temporal40ee5512008-07-10 02:12:20 +0000247 java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700248 java/src/test/java/com/google/protobuf/IntArrayListTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000249 java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
250 java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000251 java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800252 java/src/test/java/com/google/protobuf/LazyFieldTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000253 java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000254 java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
255 java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000256 java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000257 java/src/test/java/com/google/protobuf/LiteTest.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700258 java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700259 java/src/test/java/com/google/protobuf/LongArrayListTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800260 java/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
261 java/src/test/java/com/google/protobuf/MapForProto2Test.java \
262 java/src/test/java/com/google/protobuf/MapTest.java \
temporal40ee5512008-07-10 02:12:20 +0000263 java/src/test/java/com/google/protobuf/MessageTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000264 java/src/test/java/com/google/protobuf/NestedBuildersTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000265 java/src/test/java/com/google/protobuf/ParserTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700266 java/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000267 java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000268 java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
269 java/src/test/java/com/google/protobuf/RopeByteStringTest.java \
temporal40ee5512008-07-10 02:12:20 +0000270 java/src/test/java/com/google/protobuf/ServiceTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000271 java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
272 java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
273 java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
temporal40ee5512008-07-10 02:12:20 +0000274 java/src/test/java/com/google/protobuf/TestUtil.java \
275 java/src/test/java/com/google/protobuf/TextFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800276 java/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
277 java/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
temporal40ee5512008-07-10 02:12:20 +0000278 java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000279 java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700280 java/src/test/java/com/google/protobuf/WellKnownTypesTest.java \
temporal40ee5512008-07-10 02:12:20 +0000281 java/src/test/java/com/google/protobuf/WireFormatTest.java \
Feng Xiaoa3312982015-08-26 20:20:42 -0700282 java/src/test/java/com/google/protobuf/any_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800283 java/src/test/java/com/google/protobuf/field_presence_test.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000284 java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \
285 java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \
Feng Xiao35ef6802014-12-03 15:45:28 -0800286 java/src/test/java/com/google/protobuf/map_for_proto2_lite_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800287 java/src/test/java/com/google/protobuf/map_for_proto2_test.proto \
TeBoringe9d0bb42015-05-25 20:17:04 -0700288 java/src/test/java/com/google/protobuf/map_initialization_order_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800289 java/src/test/java/com/google/protobuf/map_test.proto \
temporal40ee5512008-07-10 02:12:20 +0000290 java/src/test/java/com/google/protobuf/multiple_files_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000291 java/src/test/java/com/google/protobuf/nested_builders_test.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000292 java/src/test/java/com/google/protobuf/nested_extension.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -0700293 java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000294 java/src/test/java/com/google/protobuf/non_nested_extension.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -0700295 java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
296 java/src/test/java/com/google/protobuf/outer_class_name_test.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000297 java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \
298 java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000299 java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000300 java/src/test/java/com/google/protobuf/test_check_utf8.proto \
301 java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \
302 java/src/test/java/com/google/protobuf/test_custom_options.proto \
TeBoringe9d0bb42015-05-25 20:17:04 -0700303 java/src/test/java/com/google/protobuf/test_extra_interfaces.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -0700304 java/util/pom.xml \
305 java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java \
306 java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java \
307 java/util/src/main/java/com/google/protobuf/util/JsonFormat.java \
308 java/util/src/main/java/com/google/protobuf/util/TimeUtil.java \
309 java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java \
310 java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java \
311 java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java \
312 java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java \
313 java/util/src/test/java/com/google/protobuf/util/json_test.proto \
temporal40ee5512008-07-10 02:12:20 +0000314 java/pom.xml \
jesse0481bf32015-03-17 12:14:55 -0700315 java/README.md
Feng Xiao8f7dec82014-12-02 14:15:26 -0800316
Jisi Liuff35de32015-02-21 14:58:02 -0800317javanano_EXTRA_DIST= \
318 javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java \
319 javanano/src/main/java/com/google/protobuf/nano/FieldData.java \
320 javanano/src/main/java/com/google/protobuf/nano/FieldArray.java \
321 javanano/src/main/java/com/google/protobuf/nano/WireFormatNano.java \
322 javanano/src/main/java/com/google/protobuf/nano/Extension.java \
323 javanano/src/main/java/com/google/protobuf/nano/CodedInputByteBufferNano.java \
324 javanano/src/main/java/com/google/protobuf/nano/UnknownFieldData.java \
325 javanano/src/main/java/com/google/protobuf/nano/MessageNano.java \
326 javanano/src/main/java/com/google/protobuf/nano/InternalNano.java \
327 javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java \
328 javanano/src/main/java/com/google/protobuf/nano/MapFactories.java \
329 javanano/src/main/java/com/google/protobuf/nano/ExtendableMessageNano.java \
330 javanano/src/main/java/com/google/protobuf/nano/MessageNanoPrinter.java \
331 javanano/src/test/java/com/google/protobuf/nano/unittest_accessors_nano.proto \
332 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_nano.proto \
333 javanano/src/test/java/com/google/protobuf/nano/unittest_reference_types_nano.proto \
334 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_repeated_nano.proto \
335 javanano/src/test/java/com/google/protobuf/nano/unittest_has_nano.proto \
336 javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto \
337 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nameclash_nano.proto \
338 javanano/src/test/java/com/google/protobuf/nano/unittest_single_nano.proto \
339 javanano/src/test/java/com/google/protobuf/nano/NanoTest.java \
340 javanano/src/test/java/com/google/protobuf/nano/unittest_simple_nano.proto \
341 javanano/src/test/java/com/google/protobuf/nano/unittest_import_nano.proto \
342 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_merge_nano.proto \
343 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_nano.proto \
344 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_packables_nano.proto \
345 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_singular_nano.proto \
346 javanano/src/test/java/com/google/protobuf/nano/unittest_recursive_nano.proto \
347 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_packed_nano.proto \
348 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_validity_nano.proto \
349 javanano/src/test/java/com/google/protobuf/nano/unittest_stringutf8_nano.proto \
350 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nano.proto \
351 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_multiple_nano.proto \
352 javanano/src/test/java/com/google/protobuf/nano/map_test.proto \
jesse0481bf32015-03-17 12:14:55 -0700353 javanano/README.md \
Jisi Liuff35de32015-02-21 14:58:02 -0800354 javanano/pom.xml
355
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400356objectivec_EXTRA_DIST= \
Thomas Van Lenten1dcc3292015-05-21 17:14:52 -0400357 objectivec/DevTools/check_version_stamps.sh \
Feng Xiao99e18682015-08-26 20:19:05 -0700358 objectivec/DevTools/compile_testing_protos.sh \
Bo Yang50a765b2015-05-25 12:48:03 -0700359 objectivec/DevTools/full_mac_build.sh \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400360 objectivec/DevTools/pddm.py \
361 objectivec/DevTools/pddm_tests.py \
Bo Yang4edc1bb2015-05-25 16:18:12 -0700362 objectivec/generate_descriptors_proto.sh \
TeBoringeef79f32015-05-25 13:08:09 -0700363 objectivec/google/protobuf/Any.pbobjc.h \
364 objectivec/google/protobuf/Any.pbobjc.m \
365 objectivec/google/protobuf/Api.pbobjc.h \
366 objectivec/google/protobuf/Api.pbobjc.m \
367 objectivec/google/protobuf/Descriptor.pbobjc.h \
368 objectivec/google/protobuf/Descriptor.pbobjc.m \
369 objectivec/google/protobuf/Duration.pbobjc.h \
370 objectivec/google/protobuf/Duration.pbobjc.m \
371 objectivec/google/protobuf/Empty.pbobjc.h \
372 objectivec/google/protobuf/Empty.pbobjc.m \
373 objectivec/google/protobuf/FieldMask.pbobjc.h \
374 objectivec/google/protobuf/FieldMask.pbobjc.m \
375 objectivec/google/protobuf/SourceContext.pbobjc.h \
376 objectivec/google/protobuf/SourceContext.pbobjc.m \
377 objectivec/google/protobuf/Struct.pbobjc.h \
378 objectivec/google/protobuf/Struct.pbobjc.m \
379 objectivec/google/protobuf/Timestamp.pbobjc.h \
380 objectivec/google/protobuf/Timestamp.pbobjc.m \
381 objectivec/google/protobuf/Type.pbobjc.h \
382 objectivec/google/protobuf/Type.pbobjc.m \
383 objectivec/google/protobuf/Wrappers.pbobjc.h \
384 objectivec/google/protobuf/Wrappers.pbobjc.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400385 objectivec/GPBArray.h \
386 objectivec/GPBArray.m \
387 objectivec/GPBArray_PackagePrivate.h \
388 objectivec/GPBBootstrap.h \
389 objectivec/GPBCodedInputStream.h \
390 objectivec/GPBCodedInputStream.m \
391 objectivec/GPBCodedInputStream_PackagePrivate.h \
392 objectivec/GPBCodedOutputStream.h \
393 objectivec/GPBCodedOutputStream.m \
394 objectivec/GPBDescriptor.h \
395 objectivec/GPBDescriptor.m \
396 objectivec/GPBDescriptor_PackagePrivate.h \
397 objectivec/GPBDictionary.h \
398 objectivec/GPBDictionary.m \
399 objectivec/GPBDictionary_PackagePrivate.h \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400400 objectivec/GPBExtensionInternals.h \
401 objectivec/GPBExtensionInternals.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400402 objectivec/GPBExtensionRegistry.h \
403 objectivec/GPBExtensionRegistry.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400404 objectivec/GPBMessage.h \
405 objectivec/GPBMessage.m \
406 objectivec/GPBMessage_PackagePrivate.h \
407 objectivec/GPBProtocolBuffers.h \
408 objectivec/GPBProtocolBuffers.m \
409 objectivec/GPBProtocolBuffers_RuntimeSupport.h \
410 objectivec/GPBRootObject.h \
411 objectivec/GPBRootObject.m \
412 objectivec/GPBRootObject_PackagePrivate.h \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400413 objectivec/GPBRuntimeTypes.h \
414 objectivec/GPBUnknownField.h \
415 objectivec/GPBUnknownField.m \
416 objectivec/GPBUnknownField_PackagePrivate.h \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400417 objectivec/GPBUnknownFieldSet.h \
418 objectivec/GPBUnknownFieldSet.m \
419 objectivec/GPBUnknownFieldSet_PackagePrivate.h \
420 objectivec/GPBUtilities.h \
421 objectivec/GPBUtilities.m \
422 objectivec/GPBUtilities_PackagePrivate.h \
423 objectivec/GPBWellKnownTypes.h \
424 objectivec/GPBWellKnownTypes.m \
425 objectivec/GPBWireFormat.h \
426 objectivec/GPBWireFormat.m \
427 objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \
428 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
429 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
430 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/FFE465CA-0E74-40E8-9F09-500B66B7DCB2.plist \
431 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/Info.plist \
432 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
433 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
434 objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \
435 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
436 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
437 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
438 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
Bo Yang50a765b2015-05-25 12:48:03 -0700439 objectivec/README.md \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400440 objectivec/Tests/golden_message \
441 objectivec/Tests/golden_packed_fields_message \
442 objectivec/Tests/GPBARCUnittestProtos.m \
443 objectivec/Tests/GPBArrayTests.m \
444 objectivec/Tests/GPBCodedInputStreamTests.m \
445 objectivec/Tests/GPBCodedOuputStreamTests.m \
446 objectivec/Tests/GPBConcurrencyTests.m \
447 objectivec/Tests/GPBDescriptorTests.m \
448 objectivec/Tests/GPBDictionaryTests+Bool.m \
449 objectivec/Tests/GPBDictionaryTests+Int32.m \
450 objectivec/Tests/GPBDictionaryTests+Int64.m \
451 objectivec/Tests/GPBDictionaryTests+String.m \
452 objectivec/Tests/GPBDictionaryTests+UInt32.m \
453 objectivec/Tests/GPBDictionaryTests+UInt64.m \
454 objectivec/Tests/GPBDictionaryTests.pddm \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400455 objectivec/Tests/GPBMessageTests+Merge.m \
456 objectivec/Tests/GPBMessageTests+Runtime.m \
457 objectivec/Tests/GPBMessageTests+Serialization.m \
458 objectivec/Tests/GPBMessageTests.m \
Thomas Van Lentenad2d5c92015-09-30 13:34:16 -0400459 objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400460 objectivec/Tests/GPBPerfTests.m \
461 objectivec/Tests/GPBStringTests.m \
462 objectivec/Tests/GPBSwiftTests.swift \
463 objectivec/Tests/GPBTestUtilities.h \
464 objectivec/Tests/GPBTestUtilities.m \
465 objectivec/Tests/GPBUnittestProtos.m \
466 objectivec/Tests/GPBUnknownFieldSetTest.m \
467 objectivec/Tests/GPBUtilitiesTests.m \
468 objectivec/Tests/GPBWellKnownTypesTest.m \
469 objectivec/Tests/GPBWireFormatTests.m \
470 objectivec/Tests/iOSTestHarness/AppDelegate.m \
471 objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings \
Bo Yang50a765b2015-05-25 12:48:03 -0700472 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.json \
473 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png \
Thomas Van Lenten0f2b4a02015-06-10 13:45:52 -0400474 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6_2x.png \
Bo Yang50a765b2015-05-25 12:48:03 -0700475 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png \
Thomas Van Lenten0f2b4a02015-06-10 13:45:52 -0400476 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7_2x.png \
Bo Yang50a765b2015-05-25 12:48:03 -0700477 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png \
Thomas Van Lenten0f2b4a02015-06-10 13:45:52 -0400478 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6_2x.png \
479 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_2x.png \
480 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_3x.png \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400481 objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Contents.json \
482 objectivec/Tests/iOSTestHarness/Info.plist \
483 objectivec/Tests/iOSTestHarness/LaunchScreen.xib \
484 objectivec/Tests/text_format_map_unittest_data.txt \
485 objectivec/Tests/text_format_unittest_data.txt \
486 objectivec/Tests/unittest_cycle.proto \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400487 objectivec/Tests/unittest_objc.proto \
Bo Yang1c81d0f2015-08-26 18:15:39 -0700488 objectivec/Tests/unittest_objc_startup.proto \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400489 objectivec/Tests/unittest_runtime_proto2.proto \
490 objectivec/Tests/unittest_runtime_proto3.proto \
491 objectivec/Tests/UnitTests-Bridging-Header.h \
Jorge Canizales46b0a652015-05-14 22:38:52 -0700492 objectivec/Tests/UnitTests-Info.plist \
493 Protobuf.podspec
Jisi Liuff35de32015-02-21 14:58:02 -0800494
Feng Xiao8f7dec82014-12-02 14:15:26 -0800495python_EXTRA_DIST= \
Bo Yang51de7a72015-05-25 22:21:05 -0700496 python/MANIFEST.in \
jieluo@google.combde4a322014-08-12 21:10:30 +0000497 python/google/protobuf/internal/api_implementation.cc \
498 python/google/protobuf/internal/api_implementation.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +0000499 python/google/protobuf/internal/containers.py \
temporal40ee5512008-07-10 02:12:20 +0000500 python/google/protobuf/internal/decoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000501 python/google/protobuf/internal/descriptor_database_test.py \
502 python/google/protobuf/internal/descriptor_pool_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000503 python/google/protobuf/internal/descriptor_pool_test1.proto \
504 python/google/protobuf/internal/descriptor_pool_test2.proto \
temporal40ee5512008-07-10 02:12:20 +0000505 python/google/protobuf/internal/descriptor_test.py \
506 python/google/protobuf/internal/encoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000507 python/google/protobuf/internal/enum_type_wrapper.py \
508 python/google/protobuf/internal/factory_test1.proto \
509 python/google/protobuf/internal/factory_test2.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000510 python/google/protobuf/internal/generator_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000511 python/google/protobuf/internal/message_factory_test.py \
temporal40ee5512008-07-10 02:12:20 +0000512 python/google/protobuf/internal/message_listener.py \
Feng Xiaoa3312982015-08-26 20:20:42 -0700513 python/google/protobuf/internal/message_set_extensions.proto \
kenton@google.com80b1d622009-07-29 01:13:20 +0000514 python/google/protobuf/internal/message_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000515 python/google/protobuf/internal/missing_enum_values.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000516 python/google/protobuf/internal/more_extensions_dynamic.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -0700517 python/google/protobuf/internal/more_extensions.proto \
temporal40ee5512008-07-10 02:12:20 +0000518 python/google/protobuf/internal/more_messages.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -0700519 python/google/protobuf/internal/packed_field_test.proto \
Josh Haberman0b70a432015-02-25 20:17:32 -0800520 python/google/protobuf/internal/_parameterized.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800521 python/google/protobuf/internal/proto_builder_test.py \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000522 python/google/protobuf/internal/python_message.py \
temporal40ee5512008-07-10 02:12:20 +0000523 python/google/protobuf/internal/reflection_test.py \
524 python/google/protobuf/internal/service_reflection_test.py \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000525 python/google/protobuf/internal/symbol_database_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000526 python/google/protobuf/internal/test_bad_identifiers.proto \
temporal40ee5512008-07-10 02:12:20 +0000527 python/google/protobuf/internal/test_util.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000528 python/google/protobuf/internal/text_encoding_test.py \
temporal40ee5512008-07-10 02:12:20 +0000529 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +0000530 python/google/protobuf/internal/type_checkers.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000531 python/google/protobuf/internal/unknown_fields_test.py \
temporal40ee5512008-07-10 02:12:20 +0000532 python/google/protobuf/internal/wire_format.py \
533 python/google/protobuf/internal/wire_format_test.py \
534 python/google/protobuf/internal/__init__.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800535 python/google/protobuf/internal/import_test_package/__init__.py \
536 python/google/protobuf/internal/import_test_package/inner.proto \
537 python/google/protobuf/internal/import_test_package/outer.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000538 python/google/protobuf/pyext/README \
539 python/google/protobuf/pyext/cpp_message.py \
540 python/google/protobuf/pyext/descriptor.h \
541 python/google/protobuf/pyext/descriptor.cc \
Josh Haberman0b70a432015-02-25 20:17:32 -0800542 python/google/protobuf/pyext/descriptor_pool.h \
543 python/google/protobuf/pyext/descriptor_pool.cc \
544 python/google/protobuf/pyext/descriptor_containers.h \
545 python/google/protobuf/pyext/descriptor_containers.cc \
jieluo@google.combde4a322014-08-12 21:10:30 +0000546 python/google/protobuf/pyext/extension_dict.h \
547 python/google/protobuf/pyext/extension_dict.cc \
548 python/google/protobuf/pyext/message.h \
549 python/google/protobuf/pyext/message.cc \
Bo Yang51de7a72015-05-25 22:21:05 -0700550 python/google/protobuf/pyext/message_map_container.cc \
551 python/google/protobuf/pyext/message_map_container.h \
jieluo@google.combde4a322014-08-12 21:10:30 +0000552 python/google/protobuf/pyext/proto2_api_test.proto \
553 python/google/protobuf/pyext/python.proto \
554 python/google/protobuf/pyext/python_protobuf.h \
555 python/google/protobuf/pyext/repeated_composite_container.h \
556 python/google/protobuf/pyext/repeated_composite_container.cc \
557 python/google/protobuf/pyext/repeated_scalar_container.h \
558 python/google/protobuf/pyext/repeated_scalar_container.cc \
Bo Yang51de7a72015-05-25 22:21:05 -0700559 python/google/protobuf/pyext/scalar_map_container.cc \
560 python/google/protobuf/pyext/scalar_map_container.h \
jieluo@google.combde4a322014-08-12 21:10:30 +0000561 python/google/protobuf/pyext/scoped_pyobject_ptr.h \
562 python/google/protobuf/pyext/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000563 python/google/protobuf/descriptor.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000564 python/google/protobuf/descriptor_database.py \
565 python/google/protobuf/descriptor_pool.py \
temporal40ee5512008-07-10 02:12:20 +0000566 python/google/protobuf/message.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000567 python/google/protobuf/message_factory.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800568 python/google/protobuf/proto_builder.py \
temporal40ee5512008-07-10 02:12:20 +0000569 python/google/protobuf/reflection.py \
570 python/google/protobuf/service.py \
571 python/google/protobuf/service_reflection.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000572 python/google/protobuf/symbol_database.py \
573 python/google/protobuf/text_encoding.py \
temporal40ee5512008-07-10 02:12:20 +0000574 python/google/protobuf/text_format.py \
575 python/google/protobuf/__init__.py \
576 python/google/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000577 python/mox.py \
Feng Xiao99e18682015-08-26 20:19:05 -0700578 python/setup.py \
temporal40ee5512008-07-10 02:12:20 +0000579 python/stubout.py \
Feng Xiao99e18682015-08-26 20:19:05 -0700580 python/tox.ini \
jesse0481bf32015-03-17 12:14:55 -0700581 python/README.md
temporal40ee5512008-07-10 02:12:20 +0000582
Chris Fallin973f4252014-11-18 14:19:58 -0800583ruby_EXTRA_DIST= \
Bo Yang51de7a72015-05-25 22:21:05 -0700584 ruby/Gemfile \
585 ruby/Gemfile.lock \
586 ruby/.gitignore \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800587 ruby/README.md \
588 ruby/Rakefile \
589 ruby/ext/google/protobuf_c/defs.c \
590 ruby/ext/google/protobuf_c/encode_decode.c \
591 ruby/ext/google/protobuf_c/extconf.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800592 ruby/ext/google/protobuf_c/map.c \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800593 ruby/ext/google/protobuf_c/message.c \
594 ruby/ext/google/protobuf_c/protobuf.c \
595 ruby/ext/google/protobuf_c/protobuf.h \
596 ruby/ext/google/protobuf_c/repeated_field.c \
597 ruby/ext/google/protobuf_c/storage.c \
598 ruby/ext/google/protobuf_c/upb.c \
599 ruby/ext/google/protobuf_c/upb.h \
600 ruby/google-protobuf.gemspec \
Bo Yang51de7a72015-05-25 22:21:05 -0700601 ruby/lib/google/protobuf/message_exts.rb \
602 ruby/lib/google/protobuf/repeated_field.rb \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800603 ruby/lib/google/protobuf.rb \
Bo Yang51de7a72015-05-25 22:21:05 -0700604 ruby/pom.xml \
605 ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \
606 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \
607 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \
608 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \
609 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \
610 ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \
611 ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \
612 ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \
613 ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \
614 ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \
615 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \
616 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \
617 ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \
618 ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \
619 ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \
620 ruby/src/main/java/com/google/protobuf/jruby/Utils.java \
621 ruby/src/main/java/google/ProtobufJavaService.java \
622 ruby/src/main/sentinel.proto \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800623 ruby/tests/basic.rb \
Bo Yang51de7a72015-05-25 22:21:05 -0700624 ruby/tests/repeated_field_test.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800625 ruby/tests/stress.rb \
626 ruby/tests/generated_code.proto \
627 ruby/tests/generated_code.rb \
Bo Yang51de7a72015-05-25 22:21:05 -0700628 ruby/tests/generated_code_test.rb \
629 ruby/travis-test.sh
Chris Fallin973f4252014-11-18 14:19:58 -0800630
Bo Yang632e8e22015-05-25 20:20:47 -0700631all_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 -0800632
Bo Yangff7bdad2015-08-23 10:45:14 -0700633EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
634 autogen.sh \
635 generate_descriptor_proto.sh \
636 README.md \
637 INSTALL.txt \
638 LICENSE \
639 CONTRIBUTORS.txt \
640 CHANGES.txt \
641 update_file_lists.sh \
Jisi Liu40081002015-08-26 17:48:08 -0700642 BUILD \
643 gmock.BUILD \
644 WORKSPACE \
Bo Yangff7bdad2015-08-23 10:45:14 -0700645 cmake/CMakeLists.txt \
646 cmake/README.md \
647 cmake/extract_includes.bat.in \
648 cmake/install.cmake \
649 cmake/libprotobuf.cmake \
650 cmake/libprotobuf-lite.cmake \
651 cmake/libprotoc.cmake \
652 cmake/protobuf-config-version.cmake.in \
653 cmake/protobuf-config.cmake.in \
654 cmake/protobuf-module.cmake.in \
655 cmake/protoc.cmake \
656 cmake/tests.cmake \
657 editors/README.txt \
658 editors/proto.vim \
659 editors/protobuf-mode.el \
660 examples/README.txt \
661 examples/Makefile \
662 examples/addressbook.proto \
663 examples/add_person.cc \
664 examples/list_people.cc \
665 examples/AddPerson.java \
666 examples/ListPeople.java \
667 examples/add_person.py \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800668 examples/list_people.py
669
temporal40ee5512008-07-10 02:12:20 +0000670# Deletes all the files generated by autogen.sh.
671MAINTAINERCLEANFILES = \
672 aclocal.m4 \
673 config.guess \
674 config.sub \
675 configure \
676 depcomp \
677 install-sh \
678 ltmain.sh \
679 Makefile.in \
680 missing \
681 mkinstalldirs \
682 config.h.in \
kenton@google.com39671e52009-07-31 21:46:11 +0000683 stamp.h.in \
684 m4/ltsugar.m4 \
685 m4/libtool.m4 \
686 m4/ltversion.m4 \
687 m4/lt~obsolete.m4 \
688 m4/ltoptions.m4