blob: c6694243e99ea63dae61ecce12805809d470d92a [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 \
49 csharp/keys/Google.ProtocolBuffers.snk \
50 csharp/keys/generate_new_key.bat \
51 csharp/protos/extest/unittest_issues.proto \
52 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 \
60 csharp/src/ProtoDump/Program.cs \
61 csharp/src/ProtoDump/Properties/AssemblyInfo.cs \
62 csharp/src/ProtoDump/ProtoDump.csproj \
63 csharp/src/ProtoDump/app.config \
64 csharp/src/ProtocolBuffers.Test/ByteStringTest.cs \
65 csharp/src/ProtocolBuffers.Test/CodedInputStreamExtensions.cs \
66 csharp/src/ProtocolBuffers.Test/CodedInputStreamTest.cs \
67 csharp/src/ProtocolBuffers.Test/CodedOutputStreamTest.cs \
68 csharp/src/ProtocolBuffers.Test/Collections/MapFieldTest.cs \
69 csharp/src/ProtocolBuffers.Test/Collections/RepeatedFieldTest.cs \
70 csharp/src/ProtocolBuffers.Test/DeprecatedMemberTest.cs \
71 csharp/src/ProtocolBuffers.Test/EqualityTester.cs \
72 csharp/src/ProtocolBuffers.Test/FieldCodecTest.cs \
73 csharp/src/ProtocolBuffers.Test/GeneratedMessageTest.cs \
74 csharp/src/ProtocolBuffers.Test/IssuesTest.cs \
75 csharp/src/ProtocolBuffers.Test/JsonFormatterTest.cs \
76 csharp/src/ProtocolBuffers.Test/Properties/AppManifest.xml \
77 csharp/src/ProtocolBuffers.Test/Properties/AssemblyInfo.cs \
78 csharp/src/ProtocolBuffers.Test/Properties/OutOfBrowserSettings.xml \
79 csharp/src/ProtocolBuffers.Test/ProtocolBuffers.Test.csproj \
80 csharp/src/ProtocolBuffers.Test/Reflection/DescriptorsTest.cs \
81 csharp/src/ProtocolBuffers.Test/SampleEnum.cs \
82 csharp/src/ProtocolBuffers.Test/SampleMessages.cs \
83 csharp/src/ProtocolBuffers.Test/TestCornerCases.cs \
84 csharp/src/ProtocolBuffers.Test/TestProtos/MapUnittestProto3.cs \
85 csharp/src/ProtocolBuffers.Test/TestProtos/UnittestImportProto3.cs \
86 csharp/src/ProtocolBuffers.Test/TestProtos/UnittestImportPublicProto3.cs \
87 csharp/src/ProtocolBuffers.Test/TestProtos/UnittestIssues.cs \
88 csharp/src/ProtocolBuffers.Test/TestProtos/UnittestProto3.cs \
89 csharp/src/ProtocolBuffers.Test/packages.config \
90 csharp/src/ProtocolBuffers.sln \
91 csharp/src/ProtocolBuffers/ByteArray.cs \
92 csharp/src/ProtocolBuffers/ByteString.cs \
93 csharp/src/ProtocolBuffers/CodedInputStream.cs \
94 csharp/src/ProtocolBuffers/CodedOutputStream.ComputeSize.cs \
95 csharp/src/ProtocolBuffers/CodedOutputStream.cs \
96 csharp/src/ProtocolBuffers/Collections/MapField.cs \
97 csharp/src/ProtocolBuffers/Collections/ReadOnlyDictionary.cs \
98 csharp/src/ProtocolBuffers/Collections/RepeatedField.cs \
99 csharp/src/ProtocolBuffers/FieldCodec.cs \
100 csharp/src/ProtocolBuffers/FrameworkPortability.cs \
101 csharp/src/ProtocolBuffers/Freezable.cs \
102 csharp/src/ProtocolBuffers/Google.Protobuf.nuspec \
103 csharp/src/ProtocolBuffers/IMessage.cs \
104 csharp/src/ProtocolBuffers/InvalidProtocolBufferException.cs \
105 csharp/src/ProtocolBuffers/JsonFormatter.cs \
106 csharp/src/ProtocolBuffers/LimitedInputStream.cs \
107 csharp/src/ProtocolBuffers/MessageExtensions.cs \
108 csharp/src/ProtocolBuffers/MessageParser.cs \
109 csharp/src/ProtocolBuffers/Properties/AssemblyInfo.cs \
110 csharp/src/ProtocolBuffers/ProtocolBuffers.csproj \
111 csharp/src/ProtocolBuffers/Reflection/DescriptorBase.cs \
112 csharp/src/ProtocolBuffers/Reflection/DescriptorPool.cs \
113 csharp/src/ProtocolBuffers/Reflection/DescriptorProtoFile.cs \
114 csharp/src/ProtocolBuffers/Reflection/DescriptorUtil.cs \
115 csharp/src/ProtocolBuffers/Reflection/DescriptorValidationException.cs \
116 csharp/src/ProtocolBuffers/Reflection/EnumDescriptor.cs \
117 csharp/src/ProtocolBuffers/Reflection/EnumValueDescriptor.cs \
118 csharp/src/ProtocolBuffers/Reflection/FieldAccessorBase.cs \
119 csharp/src/ProtocolBuffers/Reflection/FieldAccessorTable.cs \
120 csharp/src/ProtocolBuffers/Reflection/FieldDescriptor.cs \
121 csharp/src/ProtocolBuffers/Reflection/FieldType.cs \
122 csharp/src/ProtocolBuffers/Reflection/FileDescriptor.cs \
123 csharp/src/ProtocolBuffers/Reflection/IDescriptor.cs \
124 csharp/src/ProtocolBuffers/Reflection/IFieldAccessor.cs \
125 csharp/src/ProtocolBuffers/Reflection/MapFieldAccessor.cs \
126 csharp/src/ProtocolBuffers/Reflection/MessageDescriptor.cs \
127 csharp/src/ProtocolBuffers/Reflection/MethodDescriptor.cs \
128 csharp/src/ProtocolBuffers/Reflection/OneofAccessor.cs \
129 csharp/src/ProtocolBuffers/Reflection/OneofDescriptor.cs \
130 csharp/src/ProtocolBuffers/Reflection/PackageDescriptor.cs \
131 csharp/src/ProtocolBuffers/Reflection/PartialClasses.cs \
132 csharp/src/ProtocolBuffers/Reflection/ReflectionUtil.cs \
133 csharp/src/ProtocolBuffers/Reflection/RepeatedFieldAccessor.cs \
134 csharp/src/ProtocolBuffers/Reflection/ServiceDescriptor.cs \
135 csharp/src/ProtocolBuffers/Reflection/SingleFieldAccessor.cs \
136 csharp/src/ProtocolBuffers/ThrowHelper.cs \
137 csharp/src/ProtocolBuffers/WellKnownTypes/Any.cs \
138 csharp/src/ProtocolBuffers/WellKnownTypes/Api.cs \
139 csharp/src/ProtocolBuffers/WellKnownTypes/Duration.cs \
140 csharp/src/ProtocolBuffers/WellKnownTypes/Empty.cs \
141 csharp/src/ProtocolBuffers/WellKnownTypes/FieldMask.cs \
142 csharp/src/ProtocolBuffers/WellKnownTypes/SourceContext.cs \
143 csharp/src/ProtocolBuffers/WellKnownTypes/Struct.cs \
144 csharp/src/ProtocolBuffers/WellKnownTypes/Timestamp.cs \
145 csharp/src/ProtocolBuffers/WellKnownTypes/Type.cs \
146 csharp/src/ProtocolBuffers/WellKnownTypes/Wrappers.cs \
147 csharp/src/ProtocolBuffers/WireFormat.cs \
148 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 Yang50a765b2015-05-25 12:48:03 -0700327 objectivec/DevTools/full_mac_build.sh \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400328 objectivec/DevTools/pddm.py \
329 objectivec/DevTools/pddm_tests.py \
Bo Yang4edc1bb2015-05-25 16:18:12 -0700330 objectivec/generate_descriptors_proto.sh \
TeBoringeef79f32015-05-25 13:08:09 -0700331 objectivec/google/protobuf/Any.pbobjc.h \
332 objectivec/google/protobuf/Any.pbobjc.m \
333 objectivec/google/protobuf/Api.pbobjc.h \
334 objectivec/google/protobuf/Api.pbobjc.m \
335 objectivec/google/protobuf/Descriptor.pbobjc.h \
336 objectivec/google/protobuf/Descriptor.pbobjc.m \
337 objectivec/google/protobuf/Duration.pbobjc.h \
338 objectivec/google/protobuf/Duration.pbobjc.m \
339 objectivec/google/protobuf/Empty.pbobjc.h \
340 objectivec/google/protobuf/Empty.pbobjc.m \
341 objectivec/google/protobuf/FieldMask.pbobjc.h \
342 objectivec/google/protobuf/FieldMask.pbobjc.m \
343 objectivec/google/protobuf/SourceContext.pbobjc.h \
344 objectivec/google/protobuf/SourceContext.pbobjc.m \
345 objectivec/google/protobuf/Struct.pbobjc.h \
346 objectivec/google/protobuf/Struct.pbobjc.m \
347 objectivec/google/protobuf/Timestamp.pbobjc.h \
348 objectivec/google/protobuf/Timestamp.pbobjc.m \
349 objectivec/google/protobuf/Type.pbobjc.h \
350 objectivec/google/protobuf/Type.pbobjc.m \
351 objectivec/google/protobuf/Wrappers.pbobjc.h \
352 objectivec/google/protobuf/Wrappers.pbobjc.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400353 objectivec/GPBArray.h \
354 objectivec/GPBArray.m \
355 objectivec/GPBArray_PackagePrivate.h \
356 objectivec/GPBBootstrap.h \
357 objectivec/GPBCodedInputStream.h \
358 objectivec/GPBCodedInputStream.m \
359 objectivec/GPBCodedInputStream_PackagePrivate.h \
360 objectivec/GPBCodedOutputStream.h \
361 objectivec/GPBCodedOutputStream.m \
362 objectivec/GPBDescriptor.h \
363 objectivec/GPBDescriptor.m \
364 objectivec/GPBDescriptor_PackagePrivate.h \
365 objectivec/GPBDictionary.h \
366 objectivec/GPBDictionary.m \
367 objectivec/GPBDictionary_PackagePrivate.h \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400368 objectivec/GPBExtensionInternals.h \
369 objectivec/GPBExtensionInternals.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400370 objectivec/GPBExtensionRegistry.h \
371 objectivec/GPBExtensionRegistry.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400372 objectivec/GPBMessage.h \
373 objectivec/GPBMessage.m \
374 objectivec/GPBMessage_PackagePrivate.h \
375 objectivec/GPBProtocolBuffers.h \
376 objectivec/GPBProtocolBuffers.m \
377 objectivec/GPBProtocolBuffers_RuntimeSupport.h \
378 objectivec/GPBRootObject.h \
379 objectivec/GPBRootObject.m \
380 objectivec/GPBRootObject_PackagePrivate.h \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400381 objectivec/GPBRuntimeTypes.h \
382 objectivec/GPBUnknownField.h \
383 objectivec/GPBUnknownField.m \
384 objectivec/GPBUnknownField_PackagePrivate.h \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400385 objectivec/GPBUnknownFieldSet.h \
386 objectivec/GPBUnknownFieldSet.m \
387 objectivec/GPBUnknownFieldSet_PackagePrivate.h \
388 objectivec/GPBUtilities.h \
389 objectivec/GPBUtilities.m \
390 objectivec/GPBUtilities_PackagePrivate.h \
391 objectivec/GPBWellKnownTypes.h \
392 objectivec/GPBWellKnownTypes.m \
393 objectivec/GPBWireFormat.h \
394 objectivec/GPBWireFormat.m \
395 objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \
396 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
397 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
398 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/FFE465CA-0E74-40E8-9F09-500B66B7DCB2.plist \
399 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C727100C4ADB7.xcbaseline/Info.plist \
400 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
401 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
402 objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \
403 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
404 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
405 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
406 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
Bo Yang50a765b2015-05-25 12:48:03 -0700407 objectivec/README.md \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400408 objectivec/Tests/golden_message \
409 objectivec/Tests/golden_packed_fields_message \
410 objectivec/Tests/GPBARCUnittestProtos.m \
411 objectivec/Tests/GPBArrayTests.m \
412 objectivec/Tests/GPBCodedInputStreamTests.m \
413 objectivec/Tests/GPBCodedOuputStreamTests.m \
414 objectivec/Tests/GPBConcurrencyTests.m \
415 objectivec/Tests/GPBDescriptorTests.m \
416 objectivec/Tests/GPBDictionaryTests+Bool.m \
417 objectivec/Tests/GPBDictionaryTests+Int32.m \
418 objectivec/Tests/GPBDictionaryTests+Int64.m \
419 objectivec/Tests/GPBDictionaryTests+String.m \
420 objectivec/Tests/GPBDictionaryTests+UInt32.m \
421 objectivec/Tests/GPBDictionaryTests+UInt64.m \
422 objectivec/Tests/GPBDictionaryTests.pddm \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400423 objectivec/Tests/GPBMessageTests+Merge.m \
424 objectivec/Tests/GPBMessageTests+Runtime.m \
425 objectivec/Tests/GPBMessageTests+Serialization.m \
426 objectivec/Tests/GPBMessageTests.m \
427 objectivec/Tests/GPBPerfTests.m \
428 objectivec/Tests/GPBStringTests.m \
429 objectivec/Tests/GPBSwiftTests.swift \
430 objectivec/Tests/GPBTestUtilities.h \
431 objectivec/Tests/GPBTestUtilities.m \
432 objectivec/Tests/GPBUnittestProtos.m \
433 objectivec/Tests/GPBUnknownFieldSetTest.m \
434 objectivec/Tests/GPBUtilitiesTests.m \
435 objectivec/Tests/GPBWellKnownTypesTest.m \
436 objectivec/Tests/GPBWireFormatTests.m \
437 objectivec/Tests/iOSTestHarness/AppDelegate.m \
438 objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings \
Bo Yang50a765b2015-05-25 12:48:03 -0700439 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.json \
440 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png \
Thomas Van Lenten0f2b4a02015-06-10 13:45:52 -0400441 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6_2x.png \
Bo Yang50a765b2015-05-25 12:48:03 -0700442 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png \
Thomas Van Lenten0f2b4a02015-06-10 13:45:52 -0400443 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7_2x.png \
Bo Yang50a765b2015-05-25 12:48:03 -0700444 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png \
Thomas Van Lenten0f2b4a02015-06-10 13:45:52 -0400445 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6_2x.png \
446 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_2x.png \
447 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_3x.png \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400448 objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Contents.json \
449 objectivec/Tests/iOSTestHarness/Info.plist \
450 objectivec/Tests/iOSTestHarness/LaunchScreen.xib \
451 objectivec/Tests/text_format_map_unittest_data.txt \
452 objectivec/Tests/text_format_unittest_data.txt \
453 objectivec/Tests/unittest_cycle.proto \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400454 objectivec/Tests/unittest_objc.proto \
455 objectivec/Tests/unittest_runtime_proto2.proto \
456 objectivec/Tests/unittest_runtime_proto3.proto \
457 objectivec/Tests/UnitTests-Bridging-Header.h \
Jorge Canizales46b0a652015-05-14 22:38:52 -0700458 objectivec/Tests/UnitTests-Info.plist \
459 Protobuf.podspec
Jisi Liuff35de32015-02-21 14:58:02 -0800460
Feng Xiao8f7dec82014-12-02 14:15:26 -0800461python_EXTRA_DIST= \
Bo Yang51de7a72015-05-25 22:21:05 -0700462 python/MANIFEST.in \
jieluo@google.combde4a322014-08-12 21:10:30 +0000463 python/google/protobuf/internal/api_implementation.cc \
464 python/google/protobuf/internal/api_implementation.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +0000465 python/google/protobuf/internal/containers.py \
temporal40ee5512008-07-10 02:12:20 +0000466 python/google/protobuf/internal/decoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000467 python/google/protobuf/internal/descriptor_database_test.py \
468 python/google/protobuf/internal/descriptor_pool_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000469 python/google/protobuf/internal/descriptor_pool_test1.proto \
470 python/google/protobuf/internal/descriptor_pool_test2.proto \
temporal40ee5512008-07-10 02:12:20 +0000471 python/google/protobuf/internal/descriptor_test.py \
472 python/google/protobuf/internal/encoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000473 python/google/protobuf/internal/enum_type_wrapper.py \
474 python/google/protobuf/internal/factory_test1.proto \
475 python/google/protobuf/internal/factory_test2.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000476 python/google/protobuf/internal/generator_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000477 python/google/protobuf/internal/message_factory_test.py \
temporal40ee5512008-07-10 02:12:20 +0000478 python/google/protobuf/internal/message_listener.py \
kenton@google.com80b1d622009-07-29 01:13:20 +0000479 python/google/protobuf/internal/message_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000480 python/google/protobuf/internal/missing_enum_values.proto \
temporal40ee5512008-07-10 02:12:20 +0000481 python/google/protobuf/internal/more_extensions.proto \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000482 python/google/protobuf/internal/more_extensions_dynamic.proto \
temporal40ee5512008-07-10 02:12:20 +0000483 python/google/protobuf/internal/more_messages.proto \
Josh Haberman0b70a432015-02-25 20:17:32 -0800484 python/google/protobuf/internal/_parameterized.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800485 python/google/protobuf/internal/proto_builder_test.py \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000486 python/google/protobuf/internal/python_message.py \
temporal40ee5512008-07-10 02:12:20 +0000487 python/google/protobuf/internal/reflection_test.py \
488 python/google/protobuf/internal/service_reflection_test.py \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000489 python/google/protobuf/internal/symbol_database_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000490 python/google/protobuf/internal/test_bad_identifiers.proto \
temporal40ee5512008-07-10 02:12:20 +0000491 python/google/protobuf/internal/test_util.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000492 python/google/protobuf/internal/text_encoding_test.py \
temporal40ee5512008-07-10 02:12:20 +0000493 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +0000494 python/google/protobuf/internal/type_checkers.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000495 python/google/protobuf/internal/unknown_fields_test.py \
temporal40ee5512008-07-10 02:12:20 +0000496 python/google/protobuf/internal/wire_format.py \
497 python/google/protobuf/internal/wire_format_test.py \
498 python/google/protobuf/internal/__init__.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800499 python/google/protobuf/internal/import_test_package/__init__.py \
500 python/google/protobuf/internal/import_test_package/inner.proto \
501 python/google/protobuf/internal/import_test_package/outer.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000502 python/google/protobuf/pyext/README \
503 python/google/protobuf/pyext/cpp_message.py \
504 python/google/protobuf/pyext/descriptor.h \
505 python/google/protobuf/pyext/descriptor.cc \
Josh Haberman0b70a432015-02-25 20:17:32 -0800506 python/google/protobuf/pyext/descriptor_pool.h \
507 python/google/protobuf/pyext/descriptor_pool.cc \
508 python/google/protobuf/pyext/descriptor_containers.h \
509 python/google/protobuf/pyext/descriptor_containers.cc \
jieluo@google.combde4a322014-08-12 21:10:30 +0000510 python/google/protobuf/pyext/extension_dict.h \
511 python/google/protobuf/pyext/extension_dict.cc \
512 python/google/protobuf/pyext/message.h \
513 python/google/protobuf/pyext/message.cc \
Bo Yang51de7a72015-05-25 22:21:05 -0700514 python/google/protobuf/pyext/message_map_container.cc \
515 python/google/protobuf/pyext/message_map_container.h \
jieluo@google.combde4a322014-08-12 21:10:30 +0000516 python/google/protobuf/pyext/proto2_api_test.proto \
517 python/google/protobuf/pyext/python.proto \
518 python/google/protobuf/pyext/python_protobuf.h \
519 python/google/protobuf/pyext/repeated_composite_container.h \
520 python/google/protobuf/pyext/repeated_composite_container.cc \
521 python/google/protobuf/pyext/repeated_scalar_container.h \
522 python/google/protobuf/pyext/repeated_scalar_container.cc \
Bo Yang51de7a72015-05-25 22:21:05 -0700523 python/google/protobuf/pyext/scalar_map_container.cc \
524 python/google/protobuf/pyext/scalar_map_container.h \
jieluo@google.combde4a322014-08-12 21:10:30 +0000525 python/google/protobuf/pyext/scoped_pyobject_ptr.h \
526 python/google/protobuf/pyext/__init__.py \
temporal40ee5512008-07-10 02:12:20 +0000527 python/google/protobuf/descriptor.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000528 python/google/protobuf/descriptor_database.py \
529 python/google/protobuf/descriptor_pool.py \
temporal40ee5512008-07-10 02:12:20 +0000530 python/google/protobuf/message.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000531 python/google/protobuf/message_factory.py \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800532 python/google/protobuf/proto_builder.py \
temporal40ee5512008-07-10 02:12:20 +0000533 python/google/protobuf/reflection.py \
534 python/google/protobuf/service.py \
535 python/google/protobuf/service_reflection.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000536 python/google/protobuf/symbol_database.py \
537 python/google/protobuf/text_encoding.py \
temporal40ee5512008-07-10 02:12:20 +0000538 python/google/protobuf/text_format.py \
539 python/google/protobuf/__init__.py \
540 python/google/__init__.py \
541 python/ez_setup.py \
542 python/setup.py \
543 python/mox.py \
544 python/stubout.py \
jesse0481bf32015-03-17 12:14:55 -0700545 python/README.md
temporal40ee5512008-07-10 02:12:20 +0000546
Chris Fallin973f4252014-11-18 14:19:58 -0800547ruby_EXTRA_DIST= \
Bo Yang51de7a72015-05-25 22:21:05 -0700548 ruby/Gemfile \
549 ruby/Gemfile.lock \
550 ruby/.gitignore \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800551 ruby/README.md \
552 ruby/Rakefile \
553 ruby/ext/google/protobuf_c/defs.c \
554 ruby/ext/google/protobuf_c/encode_decode.c \
555 ruby/ext/google/protobuf_c/extconf.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800556 ruby/ext/google/protobuf_c/map.c \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800557 ruby/ext/google/protobuf_c/message.c \
558 ruby/ext/google/protobuf_c/protobuf.c \
559 ruby/ext/google/protobuf_c/protobuf.h \
560 ruby/ext/google/protobuf_c/repeated_field.c \
561 ruby/ext/google/protobuf_c/storage.c \
562 ruby/ext/google/protobuf_c/upb.c \
563 ruby/ext/google/protobuf_c/upb.h \
564 ruby/google-protobuf.gemspec \
Bo Yang51de7a72015-05-25 22:21:05 -0700565 ruby/lib/google/protobuf/message_exts.rb \
566 ruby/lib/google/protobuf/repeated_field.rb \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800567 ruby/lib/google/protobuf.rb \
Bo Yang51de7a72015-05-25 22:21:05 -0700568 ruby/pom.xml \
569 ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \
570 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \
571 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \
572 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \
573 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \
574 ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \
575 ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \
576 ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \
577 ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \
578 ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \
579 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \
580 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \
581 ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \
582 ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \
583 ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \
584 ruby/src/main/java/com/google/protobuf/jruby/Utils.java \
585 ruby/src/main/java/google/ProtobufJavaService.java \
586 ruby/src/main/sentinel.proto \
Feng Xiaoe7d562a2014-12-12 17:41:34 -0800587 ruby/tests/basic.rb \
Bo Yang51de7a72015-05-25 22:21:05 -0700588 ruby/tests/repeated_field_test.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -0800589 ruby/tests/stress.rb \
590 ruby/tests/generated_code.proto \
591 ruby/tests/generated_code.rb \
Bo Yang51de7a72015-05-25 22:21:05 -0700592 ruby/tests/generated_code_test.rb \
593 ruby/travis-test.sh
Chris Fallin973f4252014-11-18 14:19:58 -0800594
Bo Yang632e8e22015-05-25 20:20:47 -0700595all_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 -0800596
Feng Xiaoee6b3d52015-06-05 17:59:09 -0700597EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
598 autogen.sh \
599 generate_descriptor_proto.sh \
600 README.md \
601 INSTALL.txt \
602 LICENSE \
603 CONTRIBUTORS.txt \
604 CHANGES.txt \
Jisi Liue6484d32015-06-18 11:23:12 -0700605 update_file_lists.sh \
Feng Xiaoee6b3d52015-06-05 17:59:09 -0700606 cmake/CMakeLists.txt \
Feng Xiaoee6b3d52015-06-05 17:59:09 -0700607 cmake/libprotobuf.cmake \
608 cmake/libprotobuf-lite.cmake \
609 cmake/libprotoc.cmake \
Feng Xiaoee6b3d52015-06-05 17:59:09 -0700610 cmake/protoc.cmake \
611 cmake/README.md \
612 cmake/tests.cmake \
Feng Xiaoee6b3d52015-06-05 17:59:09 -0700613 editors/README.txt \
614 editors/proto.vim \
615 editors/protobuf-mode.el \
616 examples/README.txt \
617 examples/Makefile \
618 examples/addressbook.proto \
619 examples/add_person.cc \
620 examples/list_people.cc \
621 examples/AddPerson.java \
622 examples/ListPeople.java \
623 examples/add_person.py \
Feng Xiao8f7dec82014-12-02 14:15:26 -0800624 examples/list_people.py
625
temporal40ee5512008-07-10 02:12:20 +0000626# Deletes all the files generated by autogen.sh.
627MAINTAINERCLEANFILES = \
628 aclocal.m4 \
629 config.guess \
630 config.sub \
631 configure \
632 depcomp \
633 install-sh \
634 ltmain.sh \
635 Makefile.in \
636 missing \
637 mkinstalldirs \
638 config.h.in \
kenton@google.com39671e52009-07-31 21:46:11 +0000639 stamp.h.in \
640 m4/ltsugar.m4 \
641 m4/libtool.m4 \
642 m4/ltversion.m4 \
643 m4/lt~obsolete.m4 \
644 m4/ltoptions.m4