blob: 30fc612c4a9e49d0a85badd340bdb1131048cf64 [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= \
44 csharp/CHANGES.txt \
45 csharp/README.md \
46 csharp/build_packages.bat \
47 csharp/buildall.sh \
48 csharp/generate_protos.sh \
Jan Tattermusche61b5282015-08-02 14:27:01 -070049 csharp/keys/Google.Protobuf.public.snk \
50 csharp/keys/README.md \
Jon Skeet0f370b42015-08-03 10:59:27 +010051 csharp/protos/unittest_issues.proto \
Jan Tattermusch271cba22015-07-16 11:24:48 -070052 csharp/src/AddressBook/AddPerson.cs \
53 csharp/src/AddressBook/AddressBook.csproj \
54 csharp/src/AddressBook/Addressbook.cs \
55 csharp/src/AddressBook/ListPeople.cs \
56 csharp/src/AddressBook/Program.cs \
57 csharp/src/AddressBook/Properties/AssemblyInfo.cs \
58 csharp/src/AddressBook/SampleUsage.cs \
59 csharp/src/AddressBook/app.config \
Jon Skeet86cf61d2015-07-17 10:14:29 +010060 csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \
61 csharp/src/Google.Protobuf.JsonDump/Program.cs \
62 csharp/src/Google.Protobuf.JsonDump/Properties/AssemblyInfo.cs \
63 csharp/src/Google.Protobuf.JsonDump/app.config \
64 csharp/src/Google.Protobuf.Test/ByteStringTest.cs \
65 csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \
66 csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \
67 csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \
68 csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \
69 csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \
70 csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \
71 csharp/src/Google.Protobuf.Test/EqualityTester.cs \
72 csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \
73 csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \
74 csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \
75 csharp/src/Google.Protobuf.Test/IssuesTest.cs \
76 csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \
77 csharp/src/Google.Protobuf.Test/Properties/AppManifest.xml \
78 csharp/src/Google.Protobuf.Test/Properties/AssemblyInfo.cs \
79 csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \
80 csharp/src/Google.Protobuf.Test/SampleEnum.cs \
81 csharp/src/Google.Protobuf.Test/SampleMessages.cs \
82 csharp/src/Google.Protobuf.Test/TestCornerCases.cs \
83 csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs \
84 csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs \
85 csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs \
86 csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs \
87 csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs \
88 csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs \
89 csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \
90 csharp/src/Google.Protobuf.Test/packages.config \
91 csharp/src/Google.Protobuf.sln \
92 csharp/src/Google.Protobuf/ByteArray.cs \
93 csharp/src/Google.Protobuf/ByteString.cs \
94 csharp/src/Google.Protobuf/CodedInputStream.cs \
95 csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \
96 csharp/src/Google.Protobuf/CodedOutputStream.cs \
97 csharp/src/Google.Protobuf/Collections/MapField.cs \
98 csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \
99 csharp/src/Google.Protobuf/Collections/RepeatedField.cs \
100 csharp/src/Google.Protobuf/FieldCodec.cs \
101 csharp/src/Google.Protobuf/FrameworkPortability.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100102 csharp/src/Google.Protobuf/Google.Protobuf.csproj \
103 csharp/src/Google.Protobuf/Google.Protobuf.nuspec \
104 csharp/src/Google.Protobuf/IMessage.cs \
105 csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \
106 csharp/src/Google.Protobuf/JsonFormatter.cs \
107 csharp/src/Google.Protobuf/LimitedInputStream.cs \
108 csharp/src/Google.Protobuf/MessageExtensions.cs \
109 csharp/src/Google.Protobuf/MessageParser.cs \
Jon Skeet68380f02015-07-30 13:03:45 +0100110 csharp/src/Google.Protobuf/Preconditions.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100111 csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \
112 csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \
113 csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \
114 csharp/src/Google.Protobuf/Reflection/DescriptorProtoFile.cs \
115 csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \
116 csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \
117 csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \
118 csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \
119 csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100120 csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \
121 csharp/src/Google.Protobuf/Reflection/FieldType.cs \
122 csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \
Jon Skeet43d64b42015-07-22 14:32:27 +0100123 csharp/src/Google.Protobuf/Reflection/GeneratedCodeInfo.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100124 csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \
125 csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \
126 csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \
127 csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \
128 csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \
129 csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \
130 csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \
131 csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \
132 csharp/src/Google.Protobuf/Reflection/PartialClasses.cs \
133 csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \
134 csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \
135 csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \
136 csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100137 csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \
138 csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \
139 csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \
140 csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \
141 csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \
142 csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \
143 csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \
144 csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \
145 csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \
146 csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \
147 csharp/src/Google.Protobuf/WireFormat.cs \
Jan Tattermusch271cba22015-07-16 11:24:48 -0700148 csharp/src/packages/repositories.config
Bo Yang99072862015-05-25 17:06:18 -0700149
Feng Xiao8f7dec82014-12-02 14:15:26 -0800150java_EXTRA_DIST= \
temporal40ee5512008-07-10 02:12:20 +0000151 java/src/main/java/com/google/protobuf/AbstractMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000152 java/src/main/java/com/google/protobuf/AbstractMessageLite.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000153 java/src/main/java/com/google/protobuf/AbstractParser.java \
Bo Yang5db21732015-05-21 14:28:59 -0700154 java/src/main/java/com/google/protobuf/AbstractProtobufList.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +0000155 java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
156 java/src/main/java/com/google/protobuf/BlockingService.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000157 java/src/main/java/com/google/protobuf/BoundedByteString.java \
Bo Yang5db21732015-05-21 14:28:59 -0700158 java/src/main/java/com/google/protobuf/BooleanArrayList.java \
temporal40ee5512008-07-10 02:12:20 +0000159 java/src/main/java/com/google/protobuf/ByteString.java \
160 java/src/main/java/com/google/protobuf/CodedInputStream.java \
161 java/src/main/java/com/google/protobuf/CodedOutputStream.java \
162 java/src/main/java/com/google/protobuf/Descriptors.java \
Bo Yang5db21732015-05-21 14:28:59 -0700163 java/src/main/java/com/google/protobuf/DoubleArrayList.java \
temporal40ee5512008-07-10 02:12:20 +0000164 java/src/main/java/com/google/protobuf/DynamicMessage.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000165 java/src/main/java/com/google/protobuf/Extension.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800166 java/src/main/java/com/google/protobuf/ExtensionLite.java \
temporal40ee5512008-07-10 02:12:20 +0000167 java/src/main/java/com/google/protobuf/ExtensionRegistry.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000168 java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
temporal40ee5512008-07-10 02:12:20 +0000169 java/src/main/java/com/google/protobuf/FieldSet.java \
Bo Yang5db21732015-05-21 14:28:59 -0700170 java/src/main/java/com/google/protobuf/FloatArrayList.java \
temporal40ee5512008-07-10 02:12:20 +0000171 java/src/main/java/com/google/protobuf/GeneratedMessage.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000172 java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
173 java/src/main/java/com/google/protobuf/Internal.java \
Bo Yang5db21732015-05-21 14:28:59 -0700174 java/src/main/java/com/google/protobuf/IntArrayList.java \
temporal40ee5512008-07-10 02:12:20 +0000175 java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000176 java/src/main/java/com/google/protobuf/LazyField.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000177 java/src/main/java/com/google/protobuf/LazyFieldLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000178 java/src/main/java/com/google/protobuf/LazyStringArrayList.java \
179 java/src/main/java/com/google/protobuf/LazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000180 java/src/main/java/com/google/protobuf/LiteralByteString.java \
Bo Yang5db21732015-05-21 14:28:59 -0700181 java/src/main/java/com/google/protobuf/LongArrayList.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800182 java/src/main/java/com/google/protobuf/MapEntry.java \
183 java/src/main/java/com/google/protobuf/MapEntryLite.java \
184 java/src/main/java/com/google/protobuf/MapField.java \
185 java/src/main/java/com/google/protobuf/MapFieldLite.java \
temporal40ee5512008-07-10 02:12:20 +0000186 java/src/main/java/com/google/protobuf/Message.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000187 java/src/main/java/com/google/protobuf/MessageLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000188 java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
189 java/src/main/java/com/google/protobuf/MessageOrBuilder.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000190 java/src/main/java/com/google/protobuf/MessageReflection.java \
Bo Yang5db21732015-05-21 14:28:59 -0700191 java/src/main/java/com/google/protobuf/MutabilityOracle.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000192 java/src/main/java/com/google/protobuf/Parser.java \
Bo Yang5db21732015-05-21 14:28:59 -0700193 java/src/main/java/com/google/protobuf/ProtobufArrayList.java \
kenton@google.com2d6daa72009-01-22 01:27:00 +0000194 java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000195 java/src/main/java/com/google/protobuf/ProtocolStringList.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000196 java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000197 java/src/main/java/com/google/protobuf/RopeByteString.java \
temporal40ee5512008-07-10 02:12:20 +0000198 java/src/main/java/com/google/protobuf/RpcCallback.java \
199 java/src/main/java/com/google/protobuf/RpcChannel.java \
200 java/src/main/java/com/google/protobuf/RpcController.java \
201 java/src/main/java/com/google/protobuf/RpcUtil.java \
kenton@google.comd37d46d2009-04-25 02:53:47 +0000202 java/src/main/java/com/google/protobuf/ServiceException.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000203 java/src/main/java/com/google/protobuf/Service.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000204 java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
205 java/src/main/java/com/google/protobuf/SmallSortedMap.java \
temporal40ee5512008-07-10 02:12:20 +0000206 java/src/main/java/com/google/protobuf/TextFormat.java \
207 java/src/main/java/com/google/protobuf/UninitializedMessageException.java \
208 java/src/main/java/com/google/protobuf/UnknownFieldSet.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800209 java/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000210 java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000211 java/src/main/java/com/google/protobuf/Utf8.java \
TeBoringe9d0bb42015-05-25 20:17:04 -0700212 java/src/test/java/com/google/protobuf/WellKnownTypesTest.java \
temporal40ee5512008-07-10 02:12:20 +0000213 java/src/main/java/com/google/protobuf/WireFormat.java \
214 java/src/test/java/com/google/protobuf/AbstractMessageTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000215 java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700216 java/src/test/java/com/google/protobuf/BooleanArrayListTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000217 java/src/test/java/com/google/protobuf/ByteStringTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000218 java/src/test/java/com/google/protobuf/CheckUtf8Test.java \
temporal40ee5512008-07-10 02:12:20 +0000219 java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
220 java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000221 java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
temporal40ee5512008-07-10 02:12:20 +0000222 java/src/test/java/com/google/protobuf/DescriptorsTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700223 java/src/test/java/com/google/protobuf/DoubleArrayListTest.java \
temporal40ee5512008-07-10 02:12:20 +0000224 java/src/test/java/com/google/protobuf/DynamicMessageTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800225 java/src/test/java/com/google/protobuf/FieldPresenceTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700226 java/src/test/java/com/google/protobuf/FloatArrayListTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000227 java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
temporal40ee5512008-07-10 02:12:20 +0000228 java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700229 java/src/test/java/com/google/protobuf/IntArrayListTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000230 java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
231 java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000232 java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800233 java/src/test/java/com/google/protobuf/LazyFieldTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000234 java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000235 java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
236 java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000237 java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000238 java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
kenton@google.com80b1d622009-07-29 01:13:20 +0000239 java/src/test/java/com/google/protobuf/LiteTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700240 java/src/test/java/com/google/protobuf/LongArrayListTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800241 java/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
242 java/src/test/java/com/google/protobuf/MapForProto2Test.java \
243 java/src/test/java/com/google/protobuf/MapTest.java \
temporal40ee5512008-07-10 02:12:20 +0000244 java/src/test/java/com/google/protobuf/MessageTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000245 java/src/test/java/com/google/protobuf/NestedBuildersTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000246 java/src/test/java/com/google/protobuf/ParserTest.java \
Bo Yang5db21732015-05-21 14:28:59 -0700247 java/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000248 java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000249 java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
250 java/src/test/java/com/google/protobuf/RopeByteStringTest.java \
temporal40ee5512008-07-10 02:12:20 +0000251 java/src/test/java/com/google/protobuf/ServiceTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000252 java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \
253 java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
254 java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
temporal40ee5512008-07-10 02:12:20 +0000255 java/src/test/java/com/google/protobuf/TestUtil.java \
256 java/src/test/java/com/google/protobuf/TextFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800257 java/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
258 java/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
temporal40ee5512008-07-10 02:12:20 +0000259 java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000260 java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
temporal40ee5512008-07-10 02:12:20 +0000261 java/src/test/java/com/google/protobuf/WireFormatTest.java \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800262 java/src/test/java/com/google/protobuf/field_presence_test.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000263 java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \
264 java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \
Feng Xiao35ef6802014-12-03 15:45:28 -0800265 java/src/test/java/com/google/protobuf/map_for_proto2_lite_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800266 java/src/test/java/com/google/protobuf/map_for_proto2_test.proto \
TeBoringe9d0bb42015-05-25 20:17:04 -0700267 java/src/test/java/com/google/protobuf/map_initialization_order_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800268 java/src/test/java/com/google/protobuf/map_test.proto \
temporal40ee5512008-07-10 02:12:20 +0000269 java/src/test/java/com/google/protobuf/multiple_files_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000270 java/src/test/java/com/google/protobuf/nested_builders_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000271 java/src/test/java/com/google/protobuf/nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000272 java/src/test/java/com/google/protobuf/nested_extension.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000273 java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000274 java/src/test/java/com/google/protobuf/non_nested_extension.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000275 java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \
276 java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800277 java/src/test/java/com/google/protobuf/outer_class_name_test.proto \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000278 java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \
jieluo@google.com4de8f552014-07-18 00:47:59 +0000279 java/src/test/java/com/google/protobuf/test_check_utf8.proto \
280 java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \
281 java/src/test/java/com/google/protobuf/test_custom_options.proto \
TeBoringe9d0bb42015-05-25 20:17:04 -0700282 java/src/test/java/com/google/protobuf/test_extra_interfaces.proto \
temporal40ee5512008-07-10 02:12:20 +0000283 java/pom.xml \
jesse0481bf32015-03-17 12:14:55 -0700284 java/README.md
Feng Xiao8f7dec82014-12-02 14:15:26 -0800285
Jisi Liuff35de32015-02-21 14:58:02 -0800286javanano_EXTRA_DIST= \
287 javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java \
288 javanano/src/main/java/com/google/protobuf/nano/FieldData.java \
289 javanano/src/main/java/com/google/protobuf/nano/FieldArray.java \
290 javanano/src/main/java/com/google/protobuf/nano/WireFormatNano.java \
291 javanano/src/main/java/com/google/protobuf/nano/Extension.java \
292 javanano/src/main/java/com/google/protobuf/nano/CodedInputByteBufferNano.java \
293 javanano/src/main/java/com/google/protobuf/nano/UnknownFieldData.java \
294 javanano/src/main/java/com/google/protobuf/nano/MessageNano.java \
295 javanano/src/main/java/com/google/protobuf/nano/InternalNano.java \
296 javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java \
297 javanano/src/main/java/com/google/protobuf/nano/MapFactories.java \
298 javanano/src/main/java/com/google/protobuf/nano/ExtendableMessageNano.java \
299 javanano/src/main/java/com/google/protobuf/nano/MessageNanoPrinter.java \
300 javanano/src/test/java/com/google/protobuf/nano/unittest_accessors_nano.proto \
301 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_nano.proto \
302 javanano/src/test/java/com/google/protobuf/nano/unittest_reference_types_nano.proto \
303 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_repeated_nano.proto \
304 javanano/src/test/java/com/google/protobuf/nano/unittest_has_nano.proto \
305 javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto \
306 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nameclash_nano.proto \
307 javanano/src/test/java/com/google/protobuf/nano/unittest_single_nano.proto \
308 javanano/src/test/java/com/google/protobuf/nano/NanoTest.java \
309 javanano/src/test/java/com/google/protobuf/nano/unittest_simple_nano.proto \
310 javanano/src/test/java/com/google/protobuf/nano/unittest_import_nano.proto \
311 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_merge_nano.proto \
312 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_nano.proto \
313 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_packables_nano.proto \
314 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_singular_nano.proto \
315 javanano/src/test/java/com/google/protobuf/nano/unittest_recursive_nano.proto \
316 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_packed_nano.proto \
317 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_validity_nano.proto \
318 javanano/src/test/java/com/google/protobuf/nano/unittest_stringutf8_nano.proto \
319 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nano.proto \
320 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_multiple_nano.proto \
321 javanano/src/test/java/com/google/protobuf/nano/map_test.proto \
jesse0481bf32015-03-17 12:14:55 -0700322 javanano/README.md \
Jisi Liuff35de32015-02-21 14:58:02 -0800323 javanano/pom.xml
324
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400325objectivec_EXTRA_DIST= \
Thomas Van Lenten1dcc3292015-05-21 17:14:52 -0400326 objectivec/DevTools/check_version_stamps.sh \
Bo Yang1c81d0f2015-08-26 18:15:39 -0700327 objectivec/DevTools/compile_testing_protos.sh \
Bo Yang50a765b2015-05-25 12:48:03 -0700328 objectivec/DevTools/full_mac_build.sh \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400329 objectivec/DevTools/pddm.py \
330 objectivec/DevTools/pddm_tests.py \
Bo Yang4edc1bb2015-05-25 16:18:12 -0700331 objectivec/generate_descriptors_proto.sh \
TeBoringeef79f32015-05-25 13:08:09 -0700332 objectivec/google/protobuf/Any.pbobjc.h \
333 objectivec/google/protobuf/Any.pbobjc.m \
334 objectivec/google/protobuf/Api.pbobjc.h \
335 objectivec/google/protobuf/Api.pbobjc.m \
336 objectivec/google/protobuf/Descriptor.pbobjc.h \
337 objectivec/google/protobuf/Descriptor.pbobjc.m \
338 objectivec/google/protobuf/Duration.pbobjc.h \
339 objectivec/google/protobuf/Duration.pbobjc.m \
340 objectivec/google/protobuf/Empty.pbobjc.h \
341 objectivec/google/protobuf/Empty.pbobjc.m \
342 objectivec/google/protobuf/FieldMask.pbobjc.h \
343 objectivec/google/protobuf/FieldMask.pbobjc.m \
344 objectivec/google/protobuf/SourceContext.pbobjc.h \
345 objectivec/google/protobuf/SourceContext.pbobjc.m \
346 objectivec/google/protobuf/Struct.pbobjc.h \
347 objectivec/google/protobuf/Struct.pbobjc.m \
348 objectivec/google/protobuf/Timestamp.pbobjc.h \
349 objectivec/google/protobuf/Timestamp.pbobjc.m \
350 objectivec/google/protobuf/Type.pbobjc.h \
351 objectivec/google/protobuf/Type.pbobjc.m \
352 objectivec/google/protobuf/Wrappers.pbobjc.h \
353 objectivec/google/protobuf/Wrappers.pbobjc.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400354 objectivec/GPBArray.h \
355 objectivec/GPBArray.m \
356 objectivec/GPBArray_PackagePrivate.h \
357 objectivec/GPBBootstrap.h \
358 objectivec/GPBCodedInputStream.h \
359 objectivec/GPBCodedInputStream.m \
360 objectivec/GPBCodedInputStream_PackagePrivate.h \
361 objectivec/GPBCodedOutputStream.h \
362 objectivec/GPBCodedOutputStream.m \
363 objectivec/GPBDescriptor.h \
364 objectivec/GPBDescriptor.m \
365 objectivec/GPBDescriptor_PackagePrivate.h \
366 objectivec/GPBDictionary.h \
367 objectivec/GPBDictionary.m \
368 objectivec/GPBDictionary_PackagePrivate.h \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400369 objectivec/GPBExtensionInternals.h \
370 objectivec/GPBExtensionInternals.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400371 objectivec/GPBExtensionRegistry.h \
372 objectivec/GPBExtensionRegistry.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400373 objectivec/GPBMessage.h \
374 objectivec/GPBMessage.m \
375 objectivec/GPBMessage_PackagePrivate.h \
376 objectivec/GPBProtocolBuffers.h \
377 objectivec/GPBProtocolBuffers.m \
378 objectivec/GPBProtocolBuffers_RuntimeSupport.h \
379 objectivec/GPBRootObject.h \
380 objectivec/GPBRootObject.m \
381 objectivec/GPBRootObject_PackagePrivate.h \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400382 objectivec/GPBRuntimeTypes.h \
383 objectivec/GPBUnknownField.h \
384 objectivec/GPBUnknownField.m \
385 objectivec/GPBUnknownField_PackagePrivate.h \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400386 objectivec/GPBUnknownFieldSet.h \
387 objectivec/GPBUnknownFieldSet.m \
388 objectivec/GPBUnknownFieldSet_PackagePrivate.h \
389 objectivec/GPBUtilities.h \
390 objectivec/GPBUtilities.m \
391 objectivec/GPBUtilities_PackagePrivate.h \
392 objectivec/GPBWellKnownTypes.h \
393 objectivec/GPBWellKnownTypes.m \
394 objectivec/GPBWireFormat.h \
395 objectivec/GPBWireFormat.m \
396 objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \
397 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
398 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
399 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/FFE465CA-0E74-40E8-9F09-500B66B7DCB2.plist \
400 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/Info.plist \
401 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
402 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
403 objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \
404 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
405 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
406 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
407 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
Bo Yang50a765b2015-05-25 12:48:03 -0700408 objectivec/README.md \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400409 objectivec/Tests/golden_message \
410 objectivec/Tests/golden_packed_fields_message \
411 objectivec/Tests/GPBARCUnittestProtos.m \
412 objectivec/Tests/GPBArrayTests.m \
413 objectivec/Tests/GPBCodedInputStreamTests.m \
414 objectivec/Tests/GPBCodedOuputStreamTests.m \
415 objectivec/Tests/GPBConcurrencyTests.m \
416 objectivec/Tests/GPBDescriptorTests.m \
417 objectivec/Tests/GPBDictionaryTests+Bool.m \
418 objectivec/Tests/GPBDictionaryTests+Int32.m \
419 objectivec/Tests/GPBDictionaryTests+Int64.m \
420 objectivec/Tests/GPBDictionaryTests+String.m \
421 objectivec/Tests/GPBDictionaryTests+UInt32.m \
422 objectivec/Tests/GPBDictionaryTests+UInt64.m \
423 objectivec/Tests/GPBDictionaryTests.pddm \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400424 objectivec/Tests/GPBMessageTests+Merge.m \
425 objectivec/Tests/GPBMessageTests+Runtime.m \
426 objectivec/Tests/GPBMessageTests+Serialization.m \
427 objectivec/Tests/GPBMessageTests.m \
428 objectivec/Tests/GPBPerfTests.m \
429 objectivec/Tests/GPBStringTests.m \
430 objectivec/Tests/GPBSwiftTests.swift \
431 objectivec/Tests/GPBTestUtilities.h \
432 objectivec/Tests/GPBTestUtilities.m \
433 objectivec/Tests/GPBUnittestProtos.m \
434 objectivec/Tests/GPBUnknownFieldSetTest.m \
435 objectivec/Tests/GPBUtilitiesTests.m \
436 objectivec/Tests/GPBWellKnownTypesTest.m \
437 objectivec/Tests/GPBWireFormatTests.m \
438 objectivec/Tests/iOSTestHarness/AppDelegate.m \
439 objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings \
Bo Yang50a765b2015-05-25 12:48:03 -0700440 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.json \
441 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png \
Thomas Van Lenten0f2b4a02015-06-10 13:45:52 -0400442 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6_2x.png \
Bo Yang50a765b2015-05-25 12:48:03 -0700443 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png \
Thomas Van Lenten0f2b4a02015-06-10 13:45:52 -0400444 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7_2x.png \
Bo Yang50a765b2015-05-25 12:48:03 -0700445 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png \
Thomas Van Lenten0f2b4a02015-06-10 13:45:52 -0400446 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6_2x.png \
447 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_2x.png \
448 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_3x.png \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400449 objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Contents.json \
450 objectivec/Tests/iOSTestHarness/Info.plist \
451 objectivec/Tests/iOSTestHarness/LaunchScreen.xib \
452 objectivec/Tests/text_format_map_unittest_data.txt \
453 objectivec/Tests/text_format_unittest_data.txt \
454 objectivec/Tests/unittest_cycle.proto \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400455 objectivec/Tests/unittest_objc.proto \
Bo Yang1c81d0f2015-08-26 18:15:39 -0700456 objectivec/Tests/unittest_objc_startup.proto \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400457 objectivec/Tests/unittest_runtime_proto2.proto \
458 objectivec/Tests/unittest_runtime_proto3.proto \
459 objectivec/Tests/UnitTests-Bridging-Header.h \
Jorge Canizales46b0a652015-05-14 22:38:52 -0700460 objectivec/Tests/UnitTests-Info.plist \
461 Protobuf.podspec
Jisi Liuff35de32015-02-21 14:58:02 -0800462
Feng Xiao8f7dec82014-12-02 14:15:26 -0800463python_EXTRA_DIST= \
Bo Yang51de7a72015-05-25 22:21:05 -0700464 python/MANIFEST.in \
jieluo@google.combde4a322014-08-12 21:10:30 +0000465 python/google/protobuf/internal/api_implementation.cc \
466 python/google/protobuf/internal/api_implementation.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +0000467 python/google/protobuf/internal/containers.py \
temporal40ee5512008-07-10 02:12:20 +0000468 python/google/protobuf/internal/decoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000469 python/google/protobuf/internal/descriptor_database_test.py \
470 python/google/protobuf/internal/descriptor_pool_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000471 python/google/protobuf/internal/descriptor_pool_test1.proto \
472 python/google/protobuf/internal/descriptor_pool_test2.proto \
temporal40ee5512008-07-10 02:12:20 +0000473 python/google/protobuf/internal/descriptor_test.py \
474 python/google/protobuf/internal/encoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000475 python/google/protobuf/internal/enum_type_wrapper.py \
476 python/google/protobuf/internal/factory_test1.proto \
477 python/google/protobuf/internal/factory_test2.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000478 python/google/protobuf/internal/generator_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000479 python/google/protobuf/internal/message_factory_test.py \
temporal40ee5512008-07-10 02:12:20 +0000480 python/google/protobuf/internal/message_listener.py \
kenton@google.com80b1d622009-07-29 01:13:20 +0000481 python/google/protobuf/internal/message_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000482 python/google/protobuf/internal/missing_enum_values.proto \
temporal40ee5512008-07-10 02:12:20 +0000483 python/google/protobuf/internal/more_extensions.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000484 python/google/protobuf/internal/more_extensions_dynamic.proto \
temporal40ee5512008-07-10 02:12:20 +0000485 python/google/protobuf/internal/more_messages.proto \
Josh Haberman0b70a432015-02-25 20:17:32 -0800486 python/google/protobuf/internal/_parameterized.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800487 python/google/protobuf/internal/proto_builder_test.py \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000488 python/google/protobuf/internal/python_message.py \
temporal40ee5512008-07-10 02:12:20 +0000489 python/google/protobuf/internal/reflection_test.py \
490 python/google/protobuf/internal/service_reflection_test.py \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000491 python/google/protobuf/internal/symbol_database_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000492 python/google/protobuf/internal/test_bad_identifiers.proto \
temporal40ee5512008-07-10 02:12:20 +0000493 python/google/protobuf/internal/test_util.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000494 python/google/protobuf/internal/text_encoding_test.py \
temporal40ee5512008-07-10 02:12:20 +0000495 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +0000496 python/google/protobuf/internal/type_checkers.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000497 python/google/protobuf/internal/unknown_fields_test.py \
temporal40ee5512008-07-10 02:12:20 +0000498 python/google/protobuf/internal/wire_format.py \
499 python/google/protobuf/internal/wire_format_test.py \
500 python/google/protobuf/internal/__init__.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800501 python/google/protobuf/internal/import_test_package/__init__.py \
502 python/google/protobuf/internal/import_test_package/inner.proto \
503 python/google/protobuf/internal/import_test_package/outer.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000504 python/google/protobuf/pyext/README \
505 python/google/protobuf/pyext/cpp_message.py \
506 python/google/protobuf/pyext/descriptor.h \
507 python/google/protobuf/pyext/descriptor.cc \
Josh Haberman0b70a432015-02-25 20:17:32 -0800508 python/google/protobuf/pyext/descriptor_pool.h \
509 python/google/protobuf/pyext/descriptor_pool.cc \
510 python/google/protobuf/pyext/descriptor_containers.h \
511 python/google/protobuf/pyext/descriptor_containers.cc \
jieluo@google.combde4a322014-08-12 21:10:30 +0000512 python/google/protobuf/pyext/extension_dict.h \
513 python/google/protobuf/pyext/extension_dict.cc \
514 python/google/protobuf/pyext/message.h \
515 python/google/protobuf/pyext/message.cc \
Bo Yang51de7a72015-05-25 22:21:05 -0700516 python/google/protobuf/pyext/message_map_container.cc \
517 python/google/protobuf/pyext/message_map_container.h \
jieluo@google.combde4a322014-08-12 21:10:30 +0000518 python/google/protobuf/pyext/proto2_api_test.proto \
519 python/google/protobuf/pyext/python.proto \
520 python/google/protobuf/pyext/python_protobuf.h \
521 python/google/protobuf/pyext/repeated_composite_container.h \
522 python/google/protobuf/pyext/repeated_composite_container.cc \
523 python/google/protobuf/pyext/repeated_scalar_container.h \
524 python/google/protobuf/pyext/repeated_scalar_container.cc \
Bo Yang51de7a72015-05-25 22:21:05 -0700525 python/google/protobuf/pyext/scalar_map_container.cc \
526 python/google/protobuf/pyext/scalar_map_container.h \
jieluo@google.combde4a322014-08-12 21:10:30 +0000527 python/google/protobuf/pyext/scoped_pyobject_ptr.h \
528 python/google/protobuf/pyext/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000529 python/google/protobuf/descriptor.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000530 python/google/protobuf/descriptor_database.py \
531 python/google/protobuf/descriptor_pool.py \
temporal40ee5512008-07-10 02:12:20 +0000532 python/google/protobuf/message.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000533 python/google/protobuf/message_factory.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800534 python/google/protobuf/proto_builder.py \
temporal40ee5512008-07-10 02:12:20 +0000535 python/google/protobuf/reflection.py \
536 python/google/protobuf/service.py \
537 python/google/protobuf/service_reflection.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000538 python/google/protobuf/symbol_database.py \
539 python/google/protobuf/text_encoding.py \
temporal40ee5512008-07-10 02:12:20 +0000540 python/google/protobuf/text_format.py \
541 python/google/protobuf/__init__.py \
542 python/google/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000543 python/setup.py \
544 python/mox.py \
545 python/stubout.py \
jesse0481bf32015-03-17 12:14:55 -0700546 python/README.md
temporal40ee5512008-07-10 02:12:20 +0000547
Chris Fallin973f4252014-11-18 14:19:58 -0800548ruby_EXTRA_DIST= \
Bo Yang51de7a72015-05-25 22:21:05 -0700549 ruby/Gemfile \
550 ruby/Gemfile.lock \
551 ruby/.gitignore \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800552 ruby/README.md \
553 ruby/Rakefile \
554 ruby/ext/google/protobuf_c/defs.c \
555 ruby/ext/google/protobuf_c/encode_decode.c \
556 ruby/ext/google/protobuf_c/extconf.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800557 ruby/ext/google/protobuf_c/map.c \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800558 ruby/ext/google/protobuf_c/message.c \
559 ruby/ext/google/protobuf_c/protobuf.c \
560 ruby/ext/google/protobuf_c/protobuf.h \
561 ruby/ext/google/protobuf_c/repeated_field.c \
562 ruby/ext/google/protobuf_c/storage.c \
563 ruby/ext/google/protobuf_c/upb.c \
564 ruby/ext/google/protobuf_c/upb.h \
565 ruby/google-protobuf.gemspec \
Bo Yang51de7a72015-05-25 22:21:05 -0700566 ruby/lib/google/protobuf/message_exts.rb \
567 ruby/lib/google/protobuf/repeated_field.rb \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800568 ruby/lib/google/protobuf.rb \
Bo Yang51de7a72015-05-25 22:21:05 -0700569 ruby/pom.xml \
570 ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \
571 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \
572 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \
573 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \
574 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \
575 ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \
576 ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \
577 ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \
578 ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \
579 ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \
580 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \
581 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \
582 ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \
583 ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \
584 ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \
585 ruby/src/main/java/com/google/protobuf/jruby/Utils.java \
586 ruby/src/main/java/google/ProtobufJavaService.java \
587 ruby/src/main/sentinel.proto \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800588 ruby/tests/basic.rb \
Bo Yang51de7a72015-05-25 22:21:05 -0700589 ruby/tests/repeated_field_test.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800590 ruby/tests/stress.rb \
591 ruby/tests/generated_code.proto \
592 ruby/tests/generated_code.rb \
Bo Yang51de7a72015-05-25 22:21:05 -0700593 ruby/tests/generated_code_test.rb \
594 ruby/travis-test.sh
Chris Fallin973f4252014-11-18 14:19:58 -0800595
Bo Yang632e8e22015-05-25 20:20:47 -0700596all_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 -0800597
Bo Yangff7bdad2015-08-23 10:45:14 -0700598EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
599 autogen.sh \
600 generate_descriptor_proto.sh \
601 README.md \
602 INSTALL.txt \
603 LICENSE \
604 CONTRIBUTORS.txt \
605 CHANGES.txt \
606 update_file_lists.sh \
607 cmake/CMakeLists.txt \
608 cmake/README.md \
609 cmake/extract_includes.bat.in \
610 cmake/install.cmake \
611 cmake/libprotobuf.cmake \
612 cmake/libprotobuf-lite.cmake \
613 cmake/libprotoc.cmake \
614 cmake/protobuf-config-version.cmake.in \
615 cmake/protobuf-config.cmake.in \
616 cmake/protobuf-module.cmake.in \
617 cmake/protoc.cmake \
618 cmake/tests.cmake \
619 editors/README.txt \
620 editors/proto.vim \
621 editors/protobuf-mode.el \
622 examples/README.txt \
623 examples/Makefile \
624 examples/addressbook.proto \
625 examples/add_person.cc \
626 examples/list_people.cc \
627 examples/AddPerson.java \
628 examples/ListPeople.java \
629 examples/add_person.py \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800630 examples/list_people.py
631
temporal40ee5512008-07-10 02:12:20 +0000632# Deletes all the files generated by autogen.sh.
633MAINTAINERCLEANFILES = \
634 aclocal.m4 \
635 config.guess \
636 config.sub \
637 configure \
638 depcomp \
639 install-sh \
640 ltmain.sh \
641 Makefile.in \
642 missing \
643 mkinstalldirs \
644 config.h.in \
kenton@google.com39671e52009-07-31 21:46:11 +0000645 stamp.h.in \
646 m4/ltsugar.m4 \
647 m4/libtool.m4 \
648 m4/ltversion.m4 \
649 m4/lt~obsolete.m4 \
650 m4/ltoptions.m4