blob: ac308d897b53c32a6b2a5e45653eccb948c8e85c [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
Carlos O'Ryan3c5442a2018-03-26 16:54:32 -040011# Always include third_party directories in distributions.
12DIST_SUBDIRS = src conformance benchmarks third_party/googletest
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"
Carlos O'Ryan3c5442a2018-03-26 16:54:32 -040021 @cd third_party/googletest/googletest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la
22 @cd third_party/googletest/googlemock && $(MAKE) $(AM_MAKEFLAGS) lib/libgmock.la lib/libgmock_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:
Carlos O'Ryan3c5442a2018-03-26 16:54:32 -040031 @if test -e third_party/googletest/Makefile; then \
32 echo "Making clean in googletest"; \
33 cd third_party/googletest && $(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; \
Thomas Van Lenten42f2eee2015-11-16 11:24:58 -050038 fi; \
Josh Haberman2e831102016-04-27 18:22:22 -070039 if test -e benchmarks/Makefile; then \
40 echo "Making clean in benchmarks"; \
41 cd benchmarks && $(MAKE) $(AM_MAKEFLAGS) clean; \
42 fi; \
Thomas Van Lenten42f2eee2015-11-16 11:24:58 -050043 if test -e objectivec/DevTools; then \
44 echo "Cleaning any ObjC pyc files"; \
45 rm -f objectivec/DevTools/*.pyc; \
kenton@google.com37ad00d2009-04-21 21:00:39 +000046 fi
temporal40ee5512008-07-10 02:12:20 +000047
kenton@google.com3c66c2e2009-08-03 21:31:25 +000048pkgconfigdir = $(libdir)/pkgconfig
49pkgconfig_DATA = protobuf.pc protobuf-lite.pc
50
Jan Tattermusch271cba22015-07-16 11:24:48 -070051csharp_EXTRA_DIST= \
Sydney Acksman15fab912019-03-11 15:03:58 -050052 global.json \
Feng Xiao99e18682015-08-26 20:19:05 -070053 csharp/.gitignore \
Jan Tattermusch271cba22015-07-16 11:24:48 -070054 csharp/CHANGES.txt \
Sydney Acksman1f773422018-06-21 17:53:31 -040055 csharp/Google.Protobuf.Tools.targets \
Feng Xiao60cb0942016-07-19 16:15:42 -070056 csharp/Google.Protobuf.Tools.nuspec \
Jan Tattermusch271cba22015-07-16 11:24:48 -070057 csharp/README.md \
58 csharp/build_packages.bat \
Bo Yang5be63252016-10-06 10:23:34 -070059 csharp/build_tools.sh \
Jan Tattermuschd305c2a2019-03-12 05:47:53 -040060 csharp/buildall.bat \
Jan Tattermusch271cba22015-07-16 11:24:48 -070061 csharp/buildall.sh \
62 csharp/generate_protos.sh \
Sydney Acksman15fab912019-03-11 15:03:58 -050063 csharp/install_dotnet_sdk.ps1 \
Jan Tattermusche61b5282015-08-02 14:27:01 -070064 csharp/keys/Google.Protobuf.public.snk \
Feng Xiao60cb0942016-07-19 16:15:42 -070065 csharp/keys/Google.Protobuf.snk \
Jan Tattermusche61b5282015-08-02 14:27:01 -070066 csharp/keys/README.md \
Jon Skeetaa77eab2017-11-10 09:50:02 +000067 csharp/protos/README.md \
68 csharp/protos/map_unittest_proto3.proto \
Jon Skeet7581fd52019-10-30 09:46:24 +000069 csharp/protos/old_extensions1.proto \
70 csharp/protos/old_extensions2.proto \
Sydney Acksman367fd272019-12-03 10:52:24 -060071 csharp/protos/unittest_issue6936_a.proto \
72 csharp/protos/unittest_issue6936_b.proto \
73 csharp/protos/unittest_issue6936_c.proto \
Jon Skeet047575f2017-01-16 11:23:32 +000074 csharp/protos/unittest_custom_options_proto3.proto \
Jon Skeetaa77eab2017-11-10 09:50:02 +000075 csharp/protos/unittest_import_public_proto3.proto \
Sydney Acksman2b9d0fd2019-05-28 15:42:41 -050076 csharp/protos/unittest_import_public.proto \
Jon Skeetaa77eab2017-11-10 09:50:02 +000077 csharp/protos/unittest_import_proto3.proto \
Sydney Acksman2b9d0fd2019-05-28 15:42:41 -050078 csharp/protos/unittest_import.proto \
Jon Skeet0f370b42015-08-03 10:59:27 +010079 csharp/protos/unittest_issues.proto \
Jon Skeetaa77eab2017-11-10 09:50:02 +000080 csharp/protos/unittest_proto3.proto \
Jan Tattermusch0757d8e2020-05-11 11:24:48 +020081 csharp/protos/unittest_selfreferential_options.proto \
Sydney Acksman2b9d0fd2019-05-28 15:42:41 -050082 csharp/protos/unittest.proto \
Jan Tattermusch271cba22015-07-16 11:24:48 -070083 csharp/src/AddressBook/AddPerson.cs \
Jan Tattermusch271cba22015-07-16 11:24:48 -070084 csharp/src/AddressBook/Addressbook.cs \
Jon Skeetf26e8c22017-05-04 08:51:46 +010085 csharp/src/AddressBook/AddressBook.csproj \
Jan Tattermusch271cba22015-07-16 11:24:48 -070086 csharp/src/AddressBook/ListPeople.cs \
87 csharp/src/AddressBook/Program.cs \
Jan Tattermusch271cba22015-07-16 11:24:48 -070088 csharp/src/AddressBook/SampleUsage.cs \
Jan Tattermuschc762a3b2020-04-07 12:01:29 +020089 csharp/src/Google.Protobuf.Benchmarks/BenchmarkDatasetConfig.cs \
Jon Skeet66fb3ce2019-03-12 09:07:21 +000090 csharp/src/Google.Protobuf.Benchmarks/BenchmarkMessage1Proto3.cs \
Jan Tattermusch3f810562019-11-04 17:19:13 +010091 csharp/src/Google.Protobuf.Benchmarks/Benchmarks.cs \
James Newton-King79f5bad2020-06-24 16:02:13 +120092 csharp/src/Google.Protobuf.Benchmarks/ByteStringBenchmark.cs \
Jan Tattermusch3f810562019-11-04 17:19:13 +010093 csharp/src/Google.Protobuf.Benchmarks/Google.Protobuf.Benchmarks.csproj \
Jan Tattermuschc762a3b2020-04-07 12:01:29 +020094 csharp/src/Google.Protobuf.Benchmarks/GoogleMessageBenchmark.cs \
Jan Tattermuschc762a3b2020-04-07 12:01:29 +020095 csharp/src/Google.Protobuf.Benchmarks/ParseMessagesBenchmark.cs \
Jan Tattermuscheac2a6a2020-04-22 11:18:16 +020096 csharp/src/Google.Protobuf.Benchmarks/ParseRawPrimitivesBenchmark.cs \
Jan Tattermusch3f810562019-11-04 17:19:13 +010097 csharp/src/Google.Protobuf.Benchmarks/Program.cs \
Jan Tattermusch3f810562019-11-04 17:19:13 +010098 csharp/src/Google.Protobuf.Benchmarks/wrapper_benchmark_messages.proto \
Jan Tattermusch3f810562019-11-04 17:19:13 +010099 csharp/src/Google.Protobuf.Benchmarks/WrapperBenchmarkMessages.cs \
Jan Tattermusche967fac2020-06-11 09:30:21 +0200100 csharp/src/Google.Protobuf.Benchmarks/WriteMessagesBenchmark.cs \
Jan Tattermusch2350e902020-06-09 18:06:45 +0200101 csharp/src/Google.Protobuf.Benchmarks/WriteRawPrimitivesBenchmark.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700102 csharp/src/Google.Protobuf.Conformance/Conformance.cs \
Jon Skeetf26e8c22017-05-04 08:51:46 +0100103 csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj \
Feng Xiao99e18682015-08-26 20:19:05 -0700104 csharp/src/Google.Protobuf.Conformance/Program.cs \
Jon Skeetf26e8c22017-05-04 08:51:46 +0100105 csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100106 csharp/src/Google.Protobuf.JsonDump/Program.cs \
Jan Tattermusch2350e902020-06-09 18:06:45 +0200107 csharp/src/Google.Protobuf.Test/Buffers/ArrayBufferWriter.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100108 csharp/src/Google.Protobuf.Test/ByteStringTest.cs \
109 csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \
110 csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \
111 csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \
112 csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \
Jon Skeetf3e9a652017-10-25 16:03:23 +0100113 csharp/src/Google.Protobuf.Test/Collections/ProtobufEqualityComparersTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100114 csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700115 csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \
John Brockc9b2c8f2017-02-13 15:34:35 -0800116 csharp/src/Google.Protobuf.Test/Compatibility/StreamExtensionsTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700117 csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100118 csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \
119 csharp/src/Google.Protobuf.Test/EqualityTester.cs \
Sydney Acksman2b9d0fd2019-05-28 15:42:41 -0500120 csharp/src/Google.Protobuf.Test/ExtensionSetTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100121 csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \
Benjamin Krämer80e530d2018-10-08 12:54:05 -0700122 csharp/src/Google.Protobuf.Test/FieldMaskTreeTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100123 csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \
Sydney Acksman6da14fa2019-08-12 18:29:01 -0500124 csharp/src/Google.Protobuf.Test/GeneratedMessageTest.Proto2.cs \
Jon Skeetf26e8c22017-05-04 08:51:46 +0100125 csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100126 csharp/src/Google.Protobuf.Test/IssuesTest.cs \
127 csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \
Jon Skeetfb248822015-09-04 12:41:14 +0100128 csharp/src/Google.Protobuf.Test/JsonParserTest.cs \
129 csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs \
Jan Tattermuscheac2a6a2020-04-22 11:18:16 +0200130 csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs \
131 csharp/src/Google.Protobuf.Test/MessageParsingHelpers.cs \
Jon Skeet81c9b852020-04-24 17:29:44 +0100132 csharp/src/Google.Protobuf.Test/Proto3OptionalTest.cs \
Jan Tattermuscheac2a6a2020-04-22 11:18:16 +0200133 csharp/src/Google.Protobuf.Test/ReadOnlySequenceFactory.cs \
Jan Tattermusch7cb55972020-06-02 09:26:25 +0200134 csharp/src/Google.Protobuf.Test/RefStructCompatibilityTest.cs \
Jon Skeet047575f2017-01-16 11:23:32 +0000135 csharp/src/Google.Protobuf.Test/Reflection/CustomOptionsTest.cs \
Jon Skeet0b314d72018-09-19 09:21:27 +0100136 csharp/src/Google.Protobuf.Test/Reflection/DescriptorDeclarationTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100137 csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700138 csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs \
Feng Xiaob7610f12015-12-22 14:36:04 -0800139 csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100140 csharp/src/Google.Protobuf.Test/SampleEnum.cs \
141 csharp/src/Google.Protobuf.Test/SampleMessages.cs \
Jon Skeetf3e9a652017-10-25 16:03:23 +0100142 csharp/src/Google.Protobuf.Test/SampleNaNs.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100143 csharp/src/Google.Protobuf.Test/TestCornerCases.cs \
Sydney Acksmancbafc682019-11-11 10:29:40 -0600144 csharp/src/Google.Protobuf.Test.TestProtos/Google.Protobuf.Test.TestProtos.csproj \
Sydney Acksman367fd272019-12-03 10:52:24 -0600145 csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936A.cs \
146 csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.cs \
147 csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.cs \
Sydney Acksmanb84929f2019-11-08 08:41:26 -0600148 csharp/src/Google.Protobuf.Test.TestProtos/ForeignMessagePartial.cs \
149 csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.cs \
150 csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs \
151 csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions2.cs \
152 csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.cs \
153 csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.cs \
154 csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.cs \
155 csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.cs \
156 csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.cs \
157 csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.cs \
158 csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.cs \
159 csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.cs \
160 csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.cs \
Jon Skeet81c9b852020-04-24 17:29:44 +0100161 csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.cs \
Jan Tattermusch0757d8e2020-05-11 11:24:48 +0200162 csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.cs \
Sydney Acksmanb84929f2019-11-08 08:41:26 -0600163 csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.cs \
164 csharp/src/Google.Protobuf.Test.TestProtos/Unittest.cs \
Jon Skeete50461d2015-09-04 11:22:34 +0100165 csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700166 csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \
Feng Xiao60cb0942016-07-19 16:15:42 -0700167 csharp/src/Google.Protobuf.Test/WellKnownTypes/FieldMaskTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700168 csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100169 csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \
Jie Luobfd254e2017-12-13 13:48:58 -0800170 csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs \
Jon Skeet0b314d72018-09-19 09:21:27 +0100171 csharp/src/Google.Protobuf.Test/testprotos.pb \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100172 csharp/src/Google.Protobuf.sln \
173 csharp/src/Google.Protobuf/ByteArray.cs \
174 csharp/src/Google.Protobuf/ByteString.cs \
James Newton-King79f5bad2020-06-24 16:02:13 +1200175 csharp/src/Google.Protobuf/ByteStringAsync.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100176 csharp/src/Google.Protobuf/CodedInputStream.cs \
177 csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \
178 csharp/src/Google.Protobuf/CodedOutputStream.cs \
Jie Luobfd254e2017-12-13 13:48:58 -0800179 csharp/src/Google.Protobuf/Collections/Lists.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100180 csharp/src/Google.Protobuf/Collections/MapField.cs \
Jon Skeetf3e9a652017-10-25 16:03:23 +0100181 csharp/src/Google.Protobuf/Collections/ProtobufEqualityComparers.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100182 csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \
183 csharp/src/Google.Protobuf/Collections/RepeatedField.cs \
Jon Skeet7b19d202018-03-27 08:44:42 +0100184 csharp/src/Google.Protobuf/Compatibility/MethodInfoExtensions.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700185 csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \
John Brockc9b2c8f2017-02-13 15:34:35 -0800186 csharp/src/Google.Protobuf/Compatibility/StreamExtensions.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700187 csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \
Sydney Acksman9e89b6e2019-05-03 15:54:41 -0500188 csharp/src/Google.Protobuf/Extension.cs \
189 csharp/src/Google.Protobuf/ExtensionRegistry.cs \
190 csharp/src/Google.Protobuf/ExtensionSet.cs \
191 csharp/src/Google.Protobuf/ExtensionValue.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100192 csharp/src/Google.Protobuf/FieldCodec.cs \
Benjamin Krämer80e530d2018-10-08 12:54:05 -0700193 csharp/src/Google.Protobuf/FieldMaskTree.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100194 csharp/src/Google.Protobuf/FrameworkPortability.cs \
Jon Skeetf26e8c22017-05-04 08:51:46 +0100195 csharp/src/Google.Protobuf/Google.Protobuf.csproj \
Jan Tattermuscheac2a6a2020-04-22 11:18:16 +0200196 csharp/src/Google.Protobuf/IBufferMessage.cs \
Feng Xiao60cb0942016-07-19 16:15:42 -0700197 csharp/src/Google.Protobuf/ICustomDiagnosticMessage.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700198 csharp/src/Google.Protobuf/IDeepCloneable.cs \
Sydney Acksman9e89b6e2019-05-03 15:54:41 -0500199 csharp/src/Google.Protobuf/IExtendableMessage.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100200 csharp/src/Google.Protobuf/IMessage.cs \
Jon Skeet0fb39c42015-11-04 11:49:15 +0000201 csharp/src/Google.Protobuf/InvalidJsonException.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100202 csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \
203 csharp/src/Google.Protobuf/JsonFormatter.cs \
Jon Skeetfb248822015-09-04 12:41:14 +0100204 csharp/src/Google.Protobuf/JsonParser.cs \
205 csharp/src/Google.Protobuf/JsonToken.cs \
206 csharp/src/Google.Protobuf/JsonTokenizer.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100207 csharp/src/Google.Protobuf/LimitedInputStream.cs \
208 csharp/src/Google.Protobuf/MessageExtensions.cs \
209 csharp/src/Google.Protobuf/MessageParser.cs \
Sydney Acksman9e89b6e2019-05-03 15:54:41 -0500210 csharp/src/Google.Protobuf/ObjectIntPair.cs \
Jan Tattermuscheac2a6a2020-04-22 11:18:16 +0200211 csharp/src/Google.Protobuf/ParseContext.cs \
212 csharp/src/Google.Protobuf/ParserInternalState.cs \
213 csharp/src/Google.Protobuf/ParsingPrimitives.cs \
214 csharp/src/Google.Protobuf/ParsingPrimitivesMessages.cs \
215 csharp/src/Google.Protobuf/ParsingPrimitivesWrappers.cs \
Jon Skeet7762f162016-02-04 06:51:54 +0000216 csharp/src/Google.Protobuf/ProtoPreconditions.cs \
Jan Tattermuscheac2a6a2020-04-22 11:18:16 +0200217 csharp/src/Google.Protobuf/SegmentedBufferHelper.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100218 csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \
Jon Skeet047575f2017-01-16 11:23:32 +0000219 csharp/src/Google.Protobuf/Reflection/CustomOptions.cs \
Jon Skeet284bb452015-11-05 09:13:53 +0000220 csharp/src/Google.Protobuf/Reflection/Descriptor.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100221 csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \
Jon Skeet0b314d72018-09-19 09:21:27 +0100222 csharp/src/Google.Protobuf/Reflection/DescriptorDeclaration.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100223 csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100224 csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \
225 csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \
226 csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \
227 csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \
Sydney Acksman9e89b6e2019-05-03 15:54:41 -0500228 csharp/src/Google.Protobuf/Reflection/ExtensionAccessor.cs \
229 csharp/src/Google.Protobuf/Reflection/ExtensionCollection.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100230 csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100231 csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \
232 csharp/src/Google.Protobuf/Reflection/FieldType.cs \
233 csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \
Jon Skeeta3ea9d12016-02-04 07:05:49 +0000234 csharp/src/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100235 csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \
236 csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \
237 csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \
238 csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \
239 csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \
240 csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \
241 csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \
Jon Skeet75626ed2016-04-08 12:19:10 +0100242 csharp/src/Google.Protobuf/Reflection/OriginalNameAttribute.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100243 csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100244 csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \
245 csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \
246 csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \
247 csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \
Feng Xiaob7610f12015-12-22 14:36:04 -0800248 csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100249 csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \
Jon Skeete50461d2015-09-04 11:22:34 +0100250 csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100251 csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \
252 csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700253 csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100254 csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \
255 csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \
Feng Xiao60cb0942016-07-19 16:15:42 -0700256 csharp/src/Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100257 csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \
258 csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700259 csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100260 csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700261 csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100262 csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \
Feng Xiaob7610f12015-12-22 14:36:04 -0800263 csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100264 csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \
Feng Xiaob7610f12015-12-22 14:36:04 -0800265 csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs \
Jie Luobfd254e2017-12-13 13:48:58 -0800266 csharp/src/Google.Protobuf/WireFormat.cs \
Jan Tattermusch2350e902020-06-09 18:06:45 +0200267 csharp/src/Google.Protobuf/WritingPrimitivesMessages.cs \
268 csharp/src/Google.Protobuf/WritingPrimitives.cs \
269 csharp/src/Google.Protobuf/WriterInternalState.cs \
270 csharp/src/Google.Protobuf/WriteContext.cs \
271 csharp/src/Google.Protobuf/WriteBufferHelper.cs \
Jie Luobfd254e2017-12-13 13:48:58 -0800272 csharp/src/Google.Protobuf/UnknownField.cs \
James Newton-King79f5bad2020-06-24 16:02:13 +1200273 csharp/src/Google.Protobuf/UnknownFieldSet.cs \
274 csharp/src/Google.Protobuf/UnsafeByteOperations.cs
Bo Yang99072862015-05-25 17:06:18 -0700275
Feng Xiaoea956762016-01-14 14:29:51 -0800276java_EXTRA_DIST= \
277 java/README.md \
Adam Cozzettecf900532018-11-13 09:50:41 -0800278 java/bom/pom.xml \
Yannicf0cb9cd2020-02-13 22:04:14 +0100279 java/core/BUILD \
Feng Xiaoea956762016-01-14 14:29:51 -0800280 java/core/generate-sources-build.xml \
281 java/core/generate-test-sources-build.xml \
282 java/core/pom.xml \
283 java/core/src/main/java/com/google/protobuf/AbstractMessage.java \
284 java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java \
285 java/core/src/main/java/com/google/protobuf/AbstractParser.java \
286 java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700287 java/core/src/main/java/com/google/protobuf/AllocatedBuffer.java \
Adam Cozzette5d647e12017-12-01 10:59:52 -0800288 java/core/src/main/java/com/google/protobuf/Android.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700289 java/core/src/main/java/com/google/protobuf/ArrayDecoders.java \
290 java/core/src/main/java/com/google/protobuf/BinaryReader.java \
291 java/core/src/main/java/com/google/protobuf/BinaryWriter.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800292 java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
293 java/core/src/main/java/com/google/protobuf/BlockingService.java \
294 java/core/src/main/java/com/google/protobuf/BooleanArrayList.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700295 java/core/src/main/java/com/google/protobuf/BufferAllocator.java \
Jisi Liu3b3c8ab2016-03-30 11:39:59 -0700296 java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java \
297 java/core/src/main/java/com/google/protobuf/ByteOutput.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800298 java/core/src/main/java/com/google/protobuf/ByteString.java \
299 java/core/src/main/java/com/google/protobuf/CodedInputStream.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700300 java/core/src/main/java/com/google/protobuf/CodedInputStreamReader.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800301 java/core/src/main/java/com/google/protobuf/CodedOutputStream.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700302 java/core/src/main/java/com/google/protobuf/CodedOutputStreamWriter.java \
303 java/core/src/main/java/com/google/protobuf/DescriptorMessageInfoFactory.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800304 java/core/src/main/java/com/google/protobuf/Descriptors.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700305 java/core/src/main/java/com/google/protobuf/DiscardUnknownFieldsParser.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800306 java/core/src/main/java/com/google/protobuf/DoubleArrayList.java \
307 java/core/src/main/java/com/google/protobuf/DynamicMessage.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700308 java/core/src/main/java/com/google/protobuf/ExperimentalApi.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800309 java/core/src/main/java/com/google/protobuf/Extension.java \
310 java/core/src/main/java/com/google/protobuf/ExtensionLite.java \
311 java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java \
Adam Cozzetted64a2d92016-06-29 15:23:27 -0700312 java/core/src/main/java/com/google/protobuf/ExtensionRegistryFactory.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800313 java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700314 java/core/src/main/java/com/google/protobuf/ExtensionSchema.java \
315 java/core/src/main/java/com/google/protobuf/ExtensionSchemaFull.java \
316 java/core/src/main/java/com/google/protobuf/ExtensionSchemaLite.java \
317 java/core/src/main/java/com/google/protobuf/ExtensionSchemas.java \
318 java/core/src/main/java/com/google/protobuf/FieldInfo.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800319 java/core/src/main/java/com/google/protobuf/FieldSet.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700320 java/core/src/main/java/com/google/protobuf/FieldType.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800321 java/core/src/main/java/com/google/protobuf/FloatArrayList.java \
322 java/core/src/main/java/com/google/protobuf/GeneratedMessage.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700323 java/core/src/main/java/com/google/protobuf/GeneratedMessageInfoFactory.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800324 java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700325 java/core/src/main/java/com/google/protobuf/GeneratedMessageV3.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800326 java/core/src/main/java/com/google/protobuf/IntArrayList.java \
327 java/core/src/main/java/com/google/protobuf/Internal.java \
328 java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
Adam Cozzette13fd0452017-09-12 10:32:01 -0700329 java/core/src/main/java/com/google/protobuf/IterableByteBufferInputStream.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700330 java/core/src/main/java/com/google/protobuf/JavaType.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800331 java/core/src/main/java/com/google/protobuf/LazyField.java \
332 java/core/src/main/java/com/google/protobuf/LazyFieldLite.java \
333 java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java \
334 java/core/src/main/java/com/google/protobuf/LazyStringList.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700335 java/core/src/main/java/com/google/protobuf/ListFieldSchema.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800336 java/core/src/main/java/com/google/protobuf/LongArrayList.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700337 java/core/src/main/java/com/google/protobuf/ManifestSchemaFactory.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800338 java/core/src/main/java/com/google/protobuf/MapEntry.java \
339 java/core/src/main/java/com/google/protobuf/MapEntryLite.java \
340 java/core/src/main/java/com/google/protobuf/MapField.java \
341 java/core/src/main/java/com/google/protobuf/MapFieldLite.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700342 java/core/src/main/java/com/google/protobuf/MapFieldSchema.java \
343 java/core/src/main/java/com/google/protobuf/MapFieldSchemaFull.java \
344 java/core/src/main/java/com/google/protobuf/MapFieldSchemaLite.java \
345 java/core/src/main/java/com/google/protobuf/MapFieldSchemas.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800346 java/core/src/main/java/com/google/protobuf/Message.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700347 java/core/src/main/java/com/google/protobuf/MessageInfo.java \
348 java/core/src/main/java/com/google/protobuf/MessageInfoFactory.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800349 java/core/src/main/java/com/google/protobuf/MessageLite.java \
350 java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
351 java/core/src/main/java/com/google/protobuf/MessageLiteToString.java \
352 java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java \
353 java/core/src/main/java/com/google/protobuf/MessageReflection.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700354 java/core/src/main/java/com/google/protobuf/MessageSchema.java \
355 java/core/src/main/java/com/google/protobuf/MessageSetSchema.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800356 java/core/src/main/java/com/google/protobuf/MutabilityOracle.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700357 java/core/src/main/java/com/google/protobuf/NewInstanceSchema.java \
358 java/core/src/main/java/com/google/protobuf/NewInstanceSchemaFull.java \
359 java/core/src/main/java/com/google/protobuf/NewInstanceSchemaLite.java \
360 java/core/src/main/java/com/google/protobuf/NewInstanceSchemas.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800361 java/core/src/main/java/com/google/protobuf/NioByteString.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700362 java/core/src/main/java/com/google/protobuf/OneofInfo.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800363 java/core/src/main/java/com/google/protobuf/Parser.java \
Feng Xiaod36c0c52017-03-29 14:32:48 -0700364 java/core/src/main/java/com/google/protobuf/PrimitiveNonBoxingCollection.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700365 java/core/src/main/java/com/google/protobuf/ProtoSyntax.java \
366 java/core/src/main/java/com/google/protobuf/Protobuf.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800367 java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700368 java/core/src/main/java/com/google/protobuf/ProtobufLists.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800369 java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
370 java/core/src/main/java/com/google/protobuf/ProtocolStringList.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700371 java/core/src/main/java/com/google/protobuf/RawMessageInfo.java \
372 java/core/src/main/java/com/google/protobuf/Reader.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800373 java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700374 java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800375 java/core/src/main/java/com/google/protobuf/RopeByteString.java \
376 java/core/src/main/java/com/google/protobuf/RpcCallback.java \
377 java/core/src/main/java/com/google/protobuf/RpcChannel.java \
378 java/core/src/main/java/com/google/protobuf/RpcController.java \
379 java/core/src/main/java/com/google/protobuf/RpcUtil.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700380 java/core/src/main/java/com/google/protobuf/Schema.java \
381 java/core/src/main/java/com/google/protobuf/SchemaFactory.java \
382 java/core/src/main/java/com/google/protobuf/SchemaUtil.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800383 java/core/src/main/java/com/google/protobuf/Service.java \
384 java/core/src/main/java/com/google/protobuf/ServiceException.java \
385 java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700386 java/core/src/main/java/com/google/protobuf/SingleFieldBuilderV3.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800387 java/core/src/main/java/com/google/protobuf/SmallSortedMap.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700388 java/core/src/main/java/com/google/protobuf/StructuralMessageInfo.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800389 java/core/src/main/java/com/google/protobuf/TextFormat.java \
390 java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java \
Jisi Liu3b3c8ab2016-03-30 11:39:59 -0700391 java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java \
392 java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java \
Paul Yang7bff8392019-07-19 14:49:01 -0700393 java/core/src/main/java/com/google/protobuf/TypeRegistry.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800394 java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700395 java/core/src/main/java/com/google/protobuf/UnknownFieldSchema.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800396 java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java \
397 java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700398 java/core/src/main/java/com/google/protobuf/UnknownFieldSetLiteSchema.java \
399 java/core/src/main/java/com/google/protobuf/UnknownFieldSetSchema.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800400 java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
Jisi Liu5221dcb2016-01-29 13:51:05 -0800401 java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700402 java/core/src/main/java/com/google/protobuf/UnsafeUtil.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800403 java/core/src/main/java/com/google/protobuf/Utf8.java \
404 java/core/src/main/java/com/google/protobuf/WireFormat.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700405 java/core/src/main/java/com/google/protobuf/Writer.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800406 java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700407 java/core/src/test/java/com/google/protobuf/AbstractProto2LiteSchemaTest.java \
408 java/core/src/test/java/com/google/protobuf/AbstractProto2SchemaTest.java \
409 java/core/src/test/java/com/google/protobuf/AbstractProto3LiteSchemaTest.java \
410 java/core/src/test/java/com/google/protobuf/AbstractProto3SchemaTest.java \
411 java/core/src/test/java/com/google/protobuf/AbstractSchemaTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800412 java/core/src/test/java/com/google/protobuf/AnyTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700413 java/core/src/test/java/com/google/protobuf/ArrayDecodersTest.java \
414 java/core/src/test/java/com/google/protobuf/BinaryProtocolTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800415 java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java \
416 java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
Jisi Liu3b3c8ab2016-03-30 11:39:59 -0700417 java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800418 java/core/src/test/java/com/google/protobuf/ByteStringTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700419 java/core/src/test/java/com/google/protobuf/CachedFieldSizeTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800420 java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700421 java/core/src/test/java/com/google/protobuf/CodedAdapterTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800422 java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
423 java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
Anuraag Agrawal3e944ae2017-10-31 15:12:11 +0900424 java/core/src/test/java/com/google/protobuf/DecodeUtf8Test.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800425 java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
426 java/core/src/test/java/com/google/protobuf/DescriptorsTest.java \
Jisi Liubf658c22017-07-19 14:32:22 -0700427 java/core/src/test/java/com/google/protobuf/DiscardUnknownFieldsTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800428 java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java \
429 java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java \
Jisi Liu3b3c8ab2016-03-30 11:39:59 -0700430 java/core/src/test/java/com/google/protobuf/EnumTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700431 java/core/src/test/java/com/google/protobuf/ExperimentalMessageFactory.java \
432 java/core/src/test/java/com/google/protobuf/ExperimentalSerializationUtil.java \
433 java/core/src/test/java/com/google/protobuf/ExperimentalTestDataProvider.java \
Adam Cozzetted64a2d92016-06-29 15:23:27 -0700434 java/core/src/test/java/com/google/protobuf/ExtensionRegistryFactoryTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800435 java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java \
436 java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java \
437 java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
438 java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
439 java/core/src/test/java/com/google/protobuf/IntArrayListTest.java \
440 java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
441 java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
442 java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
443 java/core/src/test/java/com/google/protobuf/LazyFieldTest.java \
444 java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
445 java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
446 java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
447 java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800448 java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
449 java/core/src/test/java/com/google/protobuf/LongArrayListTest.java \
450 java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
451 java/core/src/test/java/com/google/protobuf/MapForProto2Test.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700452 java/core/src/test/java/com/google/protobuf/MapLiteTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800453 java/core/src/test/java/com/google/protobuf/MapTest.java \
454 java/core/src/test/java/com/google/protobuf/MessageTest.java \
455 java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java \
456 java/core/src/test/java/com/google/protobuf/NioByteStringTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700457 java/core/src/test/java/com/google/protobuf/PackedFieldTest.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700458 java/core/src/test/java/com/google/protobuf/ParseExceptionsTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700459 java/core/src/test/java/com/google/protobuf/ParserLiteTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800460 java/core/src/test/java/com/google/protobuf/ParserTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700461 java/core/src/test/java/com/google/protobuf/Proto2ExtensionLookupSchemaTest.java \
462 java/core/src/test/java/com/google/protobuf/Proto2LiteSchemaTest.java \
463 java/core/src/test/java/com/google/protobuf/Proto2MessageFactory.java \
464 java/core/src/test/java/com/google/protobuf/Proto2MessageInfoFactory.java \
465 java/core/src/test/java/com/google/protobuf/Proto2MessageLiteFactory.java \
466 java/core/src/test/java/com/google/protobuf/Proto2SchemaTest.java \
467 java/core/src/test/java/com/google/protobuf/Proto2UnknownEnumValueTest.java \
468 java/core/src/test/java/com/google/protobuf/Proto3LiteSchemaTest.java \
469 java/core/src/test/java/com/google/protobuf/Proto3MessageFactory.java \
470 java/core/src/test/java/com/google/protobuf/Proto3MessageInfoFactory.java \
471 java/core/src/test/java/com/google/protobuf/Proto3MessageLiteFactory.java \
472 java/core/src/test/java/com/google/protobuf/Proto3MessageLiteInfoFactory.java \
473 java/core/src/test/java/com/google/protobuf/Proto3SchemaTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800474 java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700475 java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderV3Test.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800476 java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
477 java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java \
478 java/core/src/test/java/com/google/protobuf/ServiceTest.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700479 java/core/src/test/java/com/google/protobuf/SingleFieldBuilderV3Test.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800480 java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
481 java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
Jisi Liu66c1dac2017-07-19 14:38:57 -0700482 java/core/src/test/java/com/google/protobuf/TestBadIdentifiersLite.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700483 java/core/src/test/java/com/google/protobuf/TestSchemas.java \
484 java/core/src/test/java/com/google/protobuf/TestSchemasLite.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800485 java/core/src/test/java/com/google/protobuf/TestUtil.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700486 java/core/src/test/java/com/google/protobuf/TestUtilLite.java \
Jisi Liu3b3c8ab2016-03-30 11:39:59 -0700487 java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java \
488 java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800489 java/core/src/test/java/com/google/protobuf/TextFormatTest.java \
Paul Yang7bff8392019-07-19 14:49:01 -0700490 java/core/src/test/java/com/google/protobuf/TypeRegistryTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800491 java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800492 java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
493 java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700494 java/core/src/test/java/com/google/protobuf/Utf8Test.java \
495 java/core/src/test/java/com/google/protobuf/Utf8Utils.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800496 java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700497 java/core/src/test/java/com/google/protobuf/WireFormatLiteTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800498 java/core/src/test/java/com/google/protobuf/WireFormatTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700499 java/core/src/test/java/com/google/protobuf/WrappersLiteOfMethodTest.java \
500 java/core/src/test/java/com/google/protobuf/WrappersOfMethodTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800501 java/core/src/test/proto/com/google/protobuf/any_test.proto \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700502 java/core/src/test/proto/com/google/protobuf/cached_field_size_test.proto \
Jisi Liudd69d5c2017-08-31 11:11:21 -0700503 java/core/src/test/proto/com/google/protobuf/deprecated_file.proto \
Feng Xiaoea956762016-01-14 14:29:51 -0800504 java/core/src/test/proto/com/google/protobuf/field_presence_test.proto \
505 java/core/src/test/proto/com/google/protobuf/lazy_fields_lite.proto \
506 java/core/src/test/proto/com/google/protobuf/lite_equals_and_hash.proto \
507 java/core/src/test/proto/com/google/protobuf/map_for_proto2_lite_test.proto \
508 java/core/src/test/proto/com/google/protobuf/map_for_proto2_test.proto \
509 java/core/src/test/proto/com/google/protobuf/map_initialization_order_test.proto \
Adam Cozzetteec57f512018-03-19 15:38:34 -0700510 java/core/src/test/proto/com/google/protobuf/map_lite_test.proto \
Feng Xiaoea956762016-01-14 14:29:51 -0800511 java/core/src/test/proto/com/google/protobuf/map_test.proto \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700512 java/core/src/test/proto/com/google/protobuf/message_lite_extension_util_test.proto\
Feng Xiaoea956762016-01-14 14:29:51 -0800513 java/core/src/test/proto/com/google/protobuf/multiple_files_test.proto \
514 java/core/src/test/proto/com/google/protobuf/nested_builders_test.proto \
515 java/core/src/test/proto/com/google/protobuf/nested_extension.proto \
516 java/core/src/test/proto/com/google/protobuf/nested_extension_lite.proto \
517 java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto \
518 java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto \
519 java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto \
520 java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto \
521 java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700522 java/core/src/test/proto/com/google/protobuf/packed_field_test.proto \
523 java/core/src/test/proto/com/google/protobuf/proto2_message.proto \
524 java/core/src/test/proto/com/google/protobuf/proto2_message_lite.proto \
Hao Nguyend0f91c82019-03-06 12:39:12 -0800525 java/core/src/test/proto/com/google/protobuf/proto2_unknown_enum_values.proto \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700526 java/core/src/test/proto/com/google/protobuf/proto3_message.proto \
527 java/core/src/test/proto/com/google/protobuf/proto3_message_lite.proto \
Feng Xiaoea956762016-01-14 14:29:51 -0800528 java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto \
529 java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto \
530 java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto \
531 java/core/src/test/proto/com/google/protobuf/test_custom_options.proto \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700532 java/core/src/test/proto/com/google/protobuf/wrappers_test.proto \
Derek Perezbbd69992021-04-21 17:50:12 -0700533 java/internal/BUILD \
534 java/internal/testing.bzl \
Deanna Garcia9aaaf702021-03-31 17:23:02 +0000535 java/kotlin/generate-sources-build.xml \
536 java/kotlin/generate-test-sources-build.xml \
537 java/kotlin/pom.xml \
Deanna Garciab0acba32021-03-31 16:54:01 +0000538 java/kotlin/src/main/kotlin/com/google/protobuf/DslList.kt \
539 java/kotlin/src/main/kotlin/com/google/protobuf/DslMap.kt \
540 java/kotlin/src/main/kotlin/com/google/protobuf/DslProxy.kt \
541 java/kotlin/src/main/kotlin/com/google/protobuf/ExtendableMessageExtensions.kt \
542 java/kotlin/src/main/kotlin/com/google/protobuf/ExtendableMessageLiteExtensions.kt\
543 java/kotlin/src/main/kotlin/com/google/protobuf/ExtensionList.kt \
544 java/kotlin/src/main/kotlin/com/google/protobuf/OnlyForUseByGeneratedProtoCode.kt\
545 java/kotlin/src/main/kotlin/com/google/protobuf/ProtoDslMarker.kt \
546 java/kotlin/src/main/kotlin/com/google/protobuf/UnmodifiableCollections.kt \
547 java/kotlin/src/test/kotlin/com/google/protobuf/DslListTest.kt \
548 java/kotlin/src/test/kotlin/com/google/protobuf/DslMapTest.kt \
549 java/kotlin/src/test/kotlin/com/google/protobuf/ExtendableMessageExtensionsTest.kt\
550 java/kotlin/src/test/kotlin/com/google/protobuf/ExtensionListTest.kt \
551 java/kotlin/src/test/kotlin/com/google/protobuf/Proto2Test.kt \
552 java/kotlin/src/test/kotlin/com/google/protobuf/Proto3Test.kt \
553 java/kotlin/src/test/proto/com/google/protobuf/evil_names_proto2.proto \
554 java/kotlin/src/test/proto/com/google/protobuf/evil_names_proto3.proto \
555 java/kotlin/src/test/proto/com/google/protobuf/example_extensible_message.proto \
556 java/kotlin/src/test/proto/com/google/protobuf/multiple_files_proto3.proto \
Deanna Garcia9aaaf702021-03-31 17:23:02 +0000557 java/kotlin-lite/generate-sources-build.xml \
558 java/kotlin-lite/generate-test-sources-build.xml \
559 java/kotlin-lite/lite.awk \
560 java/kotlin-lite/pom.xml \
561 java/kotlin-lite/process-lite-sources-build.xml \
Deanna Garciab0acba32021-03-31 16:54:01 +0000562 java/kotlin-lite/src/test/kotlin/com/google/protobuf/ExtendableMessageLiteExtensionsTest.kt\
563 java/kotlin-lite/src/test/kotlin/com/google/protobuf/Proto2LiteTest.kt \
Feng Xiaoa29e2bf2018-04-17 15:44:55 -0700564 java/lite.md \
Yannicf0cb9cd2020-02-13 22:04:14 +0100565 java/lite/BUILD \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700566 java/lite/generate-sources-build.xml \
567 java/lite/generate-test-sources-build.xml \
568 java/lite/lite.awk \
569 java/lite/pom.xml \
570 java/lite/process-lite-sources-build.xml \
571 java/lite/src/test/java/com/google/protobuf/LiteTest.java \
572 java/lite/src/test/java/com/google/protobuf/Proto2MessageLiteInfoFactory.java \
Derek Perezbbd69992021-04-21 17:50:12 -0700573 java/BUILD \
Feng Xiaoea956762016-01-14 14:29:51 -0800574 java/pom.xml \
Yannicf0cb9cd2020-02-13 22:04:14 +0100575 java/util/BUILD \
Feng Xiaoea956762016-01-14 14:29:51 -0800576 java/util/pom.xml \
Feng Xiao60cb0942016-07-19 16:15:42 -0700577 java/util/src/main/java/com/google/protobuf/util/Durations.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800578 java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java \
579 java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java \
580 java/util/src/main/java/com/google/protobuf/util/JsonFormat.java \
581 java/util/src/main/java/com/google/protobuf/util/TimeUtil.java \
Hao Nguyen0a677882019-05-31 06:26:08 -0700582 java/util/src/main/java/com/google/protobuf/util/Structs.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700583 java/util/src/main/java/com/google/protobuf/util/Timestamps.java \
Hao Nguyen0a677882019-05-31 06:26:08 -0700584 java/util/src/main/java/com/google/protobuf/util/Values.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800585 java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java \
586 java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java \
587 java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java \
Yannic Bonenberger6b1d0f12020-07-20 18:50:56 +0200588 java/util/src/test/java/com/google/protobuf/util/StructsTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800589 java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java \
Hao Nguyen0a677882019-05-31 06:26:08 -0700590 java/util/src/test/java/com/google/protobuf/util/ValuesTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800591 java/util/src/test/proto/com/google/protobuf/util/json_test.proto
Feng Xiao8f7dec82014-12-02 14:15:26 -0800592
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400593objectivec_EXTRA_DIST= \
Dave MacLachlanab48ecf2020-01-20 13:47:20 -0800594 objectivec/.clang-format \
Yannic Bonenberger6b1d0f12020-07-20 18:50:56 +0200595 objectivec/BUILD \
Thomas Van Lenten1dcc3292015-05-21 17:14:52 -0400596 objectivec/DevTools/check_version_stamps.sh \
Feng Xiao99e18682015-08-26 20:19:05 -0700597 objectivec/DevTools/compile_testing_protos.sh \
Bo Yang50a765b2015-05-25 12:48:03 -0700598 objectivec/DevTools/full_mac_build.sh \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400599 objectivec/DevTools/pddm.py \
600 objectivec/DevTools/pddm_tests.py \
Thomas Van Lenten79a23c42016-03-17 10:04:21 -0400601 objectivec/generate_well_known_types.sh \
TeBoringeef79f32015-05-25 13:08:09 -0700602 objectivec/google/protobuf/Any.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700603 objectivec/google/protobuf/Api.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700604 objectivec/google/protobuf/Duration.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700605 objectivec/google/protobuf/Empty.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700606 objectivec/google/protobuf/FieldMask.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700607 objectivec/google/protobuf/SourceContext.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700608 objectivec/google/protobuf/Struct.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700609 objectivec/google/protobuf/Timestamp.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700610 objectivec/google/protobuf/Type.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700611 objectivec/google/protobuf/Wrappers.pbobjc.h \
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500612 objectivec/GPBAny.pbobjc.h \
613 objectivec/GPBAny.pbobjc.m \
614 objectivec/GPBApi.pbobjc.h \
615 objectivec/GPBApi.pbobjc.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400616 objectivec/GPBArray.h \
617 objectivec/GPBArray.m \
618 objectivec/GPBArray_PackagePrivate.h \
619 objectivec/GPBBootstrap.h \
620 objectivec/GPBCodedInputStream.h \
621 objectivec/GPBCodedInputStream.m \
622 objectivec/GPBCodedInputStream_PackagePrivate.h \
623 objectivec/GPBCodedOutputStream.h \
624 objectivec/GPBCodedOutputStream.m \
Thomas Van Lenten1bf4b382016-03-08 09:29:49 -0500625 objectivec/GPBCodedOutputStream_PackagePrivate.h \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400626 objectivec/GPBDescriptor.h \
627 objectivec/GPBDescriptor.m \
628 objectivec/GPBDescriptor_PackagePrivate.h \
629 objectivec/GPBDictionary.h \
630 objectivec/GPBDictionary.m \
631 objectivec/GPBDictionary_PackagePrivate.h \
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500632 objectivec/GPBDuration.pbobjc.h \
633 objectivec/GPBDuration.pbobjc.m \
634 objectivec/GPBEmpty.pbobjc.h \
635 objectivec/GPBEmpty.pbobjc.m \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400636 objectivec/GPBExtensionInternals.h \
637 objectivec/GPBExtensionInternals.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400638 objectivec/GPBExtensionRegistry.h \
639 objectivec/GPBExtensionRegistry.m \
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500640 objectivec/GPBFieldMask.pbobjc.h \
641 objectivec/GPBFieldMask.pbobjc.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400642 objectivec/GPBMessage.h \
643 objectivec/GPBMessage.m \
644 objectivec/GPBMessage_PackagePrivate.h \
645 objectivec/GPBProtocolBuffers.h \
646 objectivec/GPBProtocolBuffers.m \
647 objectivec/GPBProtocolBuffers_RuntimeSupport.h \
648 objectivec/GPBRootObject.h \
649 objectivec/GPBRootObject.m \
650 objectivec/GPBRootObject_PackagePrivate.h \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400651 objectivec/GPBRuntimeTypes.h \
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500652 objectivec/GPBSourceContext.pbobjc.h \
653 objectivec/GPBSourceContext.pbobjc.m \
654 objectivec/GPBStruct.pbobjc.h \
655 objectivec/GPBStruct.pbobjc.m \
656 objectivec/GPBTimestamp.pbobjc.h \
657 objectivec/GPBTimestamp.pbobjc.m \
658 objectivec/GPBType.pbobjc.h \
659 objectivec/GPBType.pbobjc.m \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400660 objectivec/GPBUnknownField.h \
661 objectivec/GPBUnknownField.m \
662 objectivec/GPBUnknownField_PackagePrivate.h \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400663 objectivec/GPBUnknownFieldSet.h \
664 objectivec/GPBUnknownFieldSet.m \
665 objectivec/GPBUnknownFieldSet_PackagePrivate.h \
666 objectivec/GPBUtilities.h \
667 objectivec/GPBUtilities.m \
668 objectivec/GPBUtilities_PackagePrivate.h \
669 objectivec/GPBWellKnownTypes.h \
670 objectivec/GPBWellKnownTypes.m \
671 objectivec/GPBWireFormat.h \
672 objectivec/GPBWireFormat.m \
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500673 objectivec/GPBWrappers.pbobjc.h \
674 objectivec/GPBWrappers.pbobjc.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400675 objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \
676 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
Thomas Van Lentendce82292018-04-06 10:41:28 -0400677 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400678 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400679 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
680 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
681 objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \
682 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
Thomas Van Lentendce82292018-04-06 10:41:28 -0400683 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400684 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
685 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
686 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
Thomas Van Lentenbd006712019-01-07 16:42:22 -0500687 objectivec/ProtocolBuffers_tvOS.xcodeproj/project.pbxproj \
688 objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
689 objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
690 objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
691 objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
692 objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
Bo Yang50a765b2015-05-25 12:48:03 -0700693 objectivec/README.md \
Feng Xiao60cb0942016-07-19 16:15:42 -0700694 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.pbxproj \
695 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
696 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/OSXCocoaPodsTester.xcscheme \
697 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.h \
698 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.m \
699 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \
700 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Base.lproj/MainMenu.xib \
701 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Info.plist \
702 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/main.m \
703 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-framework \
704 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-static \
705 objectivec/Tests/CocoaPods/README.md \
706 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-framework \
707 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-static \
708 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.pbxproj \
709 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
710 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/iOSCocoaPodsTester.xcscheme \
711 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.h \
712 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.m \
713 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \
714 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/LaunchScreen.storyboard \
715 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/Main.storyboard \
716 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Info.plist \
717 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.h \
718 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.m \
719 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/main.m \
720 objectivec/Tests/CocoaPods/run_tests.sh \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400721 objectivec/Tests/golden_message \
722 objectivec/Tests/golden_packed_fields_message \
723 objectivec/Tests/GPBARCUnittestProtos.m \
724 objectivec/Tests/GPBArrayTests.m \
725 objectivec/Tests/GPBCodedInputStreamTests.m \
726 objectivec/Tests/GPBCodedOuputStreamTests.m \
Thomas Van Lentene998b8f2018-03-28 12:27:15 -0400727 objectivec/Tests/GPBCompileTest01.m \
728 objectivec/Tests/GPBCompileTest02.m \
729 objectivec/Tests/GPBCompileTest03.m \
730 objectivec/Tests/GPBCompileTest04.m \
731 objectivec/Tests/GPBCompileTest05.m \
732 objectivec/Tests/GPBCompileTest06.m \
733 objectivec/Tests/GPBCompileTest07.m \
734 objectivec/Tests/GPBCompileTest08.m \
735 objectivec/Tests/GPBCompileTest09.m \
736 objectivec/Tests/GPBCompileTest10.m \
737 objectivec/Tests/GPBCompileTest11.m \
738 objectivec/Tests/GPBCompileTest12.m \
739 objectivec/Tests/GPBCompileTest13.m \
740 objectivec/Tests/GPBCompileTest14.m \
741 objectivec/Tests/GPBCompileTest15.m \
742 objectivec/Tests/GPBCompileTest16.m \
743 objectivec/Tests/GPBCompileTest17.m \
744 objectivec/Tests/GPBCompileTest18.m \
745 objectivec/Tests/GPBCompileTest19.m \
746 objectivec/Tests/GPBCompileTest20.m \
747 objectivec/Tests/GPBCompileTest21.m \
748 objectivec/Tests/GPBCompileTest22.m \
749 objectivec/Tests/GPBCompileTest23.m \
750 objectivec/Tests/GPBCompileTest24.m \
751 objectivec/Tests/GPBCompileTest25.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400752 objectivec/Tests/GPBConcurrencyTests.m \
753 objectivec/Tests/GPBDescriptorTests.m \
754 objectivec/Tests/GPBDictionaryTests+Bool.m \
755 objectivec/Tests/GPBDictionaryTests+Int32.m \
756 objectivec/Tests/GPBDictionaryTests+Int64.m \
757 objectivec/Tests/GPBDictionaryTests+String.m \
758 objectivec/Tests/GPBDictionaryTests+UInt32.m \
759 objectivec/Tests/GPBDictionaryTests+UInt64.m \
Thomas Van Lenten988ffe02017-01-04 15:03:42 -0500760 objectivec/Tests/GPBDictionaryTests.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400761 objectivec/Tests/GPBDictionaryTests.pddm \
Thomas Van Lenten49e4ba62017-05-17 13:38:51 -0400762 objectivec/Tests/GPBExtensionRegistryTest.m \
Dave MacLachlan74956e12019-12-17 17:32:09 -0800763 objectivec/Tests/GPBMessageTests+ClassNames.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400764 objectivec/Tests/GPBMessageTests+Merge.m \
765 objectivec/Tests/GPBMessageTests+Runtime.m \
766 objectivec/Tests/GPBMessageTests+Serialization.m \
767 objectivec/Tests/GPBMessageTests.m \
Thomas Van Lentenad2d5c92015-09-30 13:34:16 -0400768 objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400769 objectivec/Tests/GPBPerfTests.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400770 objectivec/Tests/GPBSwiftTests.swift \
771 objectivec/Tests/GPBTestUtilities.h \
772 objectivec/Tests/GPBTestUtilities.m \
773 objectivec/Tests/GPBUnittestProtos.m \
Thomas Van Lenten13a41242016-09-01 11:45:50 -0400774 objectivec/Tests/GPBUnittestProtos2.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400775 objectivec/Tests/GPBUnknownFieldSetTest.m \
776 objectivec/Tests/GPBUtilitiesTests.m \
777 objectivec/Tests/GPBWellKnownTypesTest.m \
778 objectivec/Tests/GPBWireFormatTests.m \
Thomas Van Lenten92a879b2018-11-14 16:12:30 -0500779 objectivec/Tests/text_format_extensions_unittest_data.txt \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400780 objectivec/Tests/text_format_map_unittest_data.txt \
781 objectivec/Tests/text_format_unittest_data.txt \
782 objectivec/Tests/unittest_cycle.proto \
Thomas Van Lentendad775b2016-12-08 10:14:11 -0500783 objectivec/Tests/unittest_deprecated.proto \
784 objectivec/Tests/unittest_deprecated_file.proto \
Thomas Van Lenten13a41242016-09-01 11:45:50 -0400785 objectivec/Tests/unittest_extension_chain_a.proto \
786 objectivec/Tests/unittest_extension_chain_b.proto \
787 objectivec/Tests/unittest_extension_chain_c.proto \
788 objectivec/Tests/unittest_extension_chain_d.proto \
789 objectivec/Tests/unittest_extension_chain_e.proto \
790 objectivec/Tests/unittest_extension_chain_f.proto \
791 objectivec/Tests/unittest_extension_chain_g.proto \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400792 objectivec/Tests/unittest_objc.proto \
Dave MacLachlanef3a7252018-11-21 15:17:21 -0800793 objectivec/Tests/unittest_objc_options.proto \
Bo Yang1c81d0f2015-08-26 18:15:39 -0700794 objectivec/Tests/unittest_objc_startup.proto \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400795 objectivec/Tests/unittest_runtime_proto2.proto \
796 objectivec/Tests/unittest_runtime_proto3.proto \
797 objectivec/Tests/UnitTests-Bridging-Header.h \
Jorge Canizales46b0a652015-05-14 22:38:52 -0700798 objectivec/Tests/UnitTests-Info.plist \
799 Protobuf.podspec
Jisi Liuff35de32015-02-21 14:58:02 -0800800
Paul Yang46ae90d2016-12-08 11:16:49 -0800801php_EXTRA_DIST= \
Paul Yang77f64bb2017-10-05 21:03:57 -0700802 composer.json \
803 php/README.md \
804 php/composer.json \
Joshua Habermanffb2b532020-07-09 11:06:24 -0700805 php/ext/google/protobuf/arena.c \
806 php/ext/google/protobuf/arena.h \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700807 php/ext/google/protobuf/array.c \
Joshua Habermanffb2b532020-07-09 11:06:24 -0700808 php/ext/google/protobuf/array.h \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700809 php/ext/google/protobuf/config.m4 \
Joshua Habermanffb2b532020-07-09 11:06:24 -0700810 php/ext/google/protobuf/convert.c \
811 php/ext/google/protobuf/convert.h \
Paul Yang77f64bb2017-10-05 21:03:57 -0700812 php/ext/google/protobuf/def.c \
Joshua Habermanffb2b532020-07-09 11:06:24 -0700813 php/ext/google/protobuf/def.h \
Paul Yang77f64bb2017-10-05 21:03:57 -0700814 php/ext/google/protobuf/map.c \
Joshua Habermanffb2b532020-07-09 11:06:24 -0700815 php/ext/google/protobuf/map.h \
Paul Yang77f64bb2017-10-05 21:03:57 -0700816 php/ext/google/protobuf/message.c \
Joshua Habermanffb2b532020-07-09 11:06:24 -0700817 php/ext/google/protobuf/message.h \
818 php/ext/google/protobuf/names.c \
819 php/ext/google/protobuf/names.h \
Paul Yang77f64bb2017-10-05 21:03:57 -0700820 php/ext/google/protobuf/package.xml \
Joshua Habermanffb2b532020-07-09 11:06:24 -0700821 php/ext/google/protobuf/php-upb.c \
822 php/ext/google/protobuf/php-upb.h \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700823 php/ext/google/protobuf/protobuf.c \
Paul Yang77f64bb2017-10-05 21:03:57 -0700824 php/ext/google/protobuf/protobuf.h \
Joshua Habermana29f7922020-10-29 10:57:04 -0700825 php/ext/google/protobuf/wkt.inc \
Paul Yang77f64bb2017-10-05 21:03:57 -0700826 php/generate_descriptor_protos.sh \
827 php/phpunit.xml \
Joshua Habermanf65bcca2020-11-02 09:44:46 -0800828 php/prepare_c_extension.sh \
Paul Yang582743b2019-02-28 12:55:14 -0800829 php/release.sh \
Paul Yang77f64bb2017-10-05 21:03:57 -0700830 php/src/GPBMetadata/Google/Protobuf/Any.php \
831 php/src/GPBMetadata/Google/Protobuf/Api.php \
832 php/src/GPBMetadata/Google/Protobuf/Duration.php \
833 php/src/GPBMetadata/Google/Protobuf/FieldMask.php \
834 php/src/GPBMetadata/Google/Protobuf/GPBEmpty.php \
835 php/src/GPBMetadata/Google/Protobuf/Internal/Descriptor.php \
836 php/src/GPBMetadata/Google/Protobuf/SourceContext.php \
837 php/src/GPBMetadata/Google/Protobuf/Struct.php \
838 php/src/GPBMetadata/Google/Protobuf/Timestamp.php \
839 php/src/GPBMetadata/Google/Protobuf/Type.php \
840 php/src/GPBMetadata/Google/Protobuf/Wrappers.php \
Paul Yangc7457ef2017-08-25 08:49:34 -0700841 php/src/Google/Protobuf/Any.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700842 php/src/Google/Protobuf/Api.php \
843 php/src/Google/Protobuf/BoolValue.php \
844 php/src/Google/Protobuf/BytesValue.php \
michaelbausor21b0e552017-08-04 16:35:22 -0700845 php/src/Google/Protobuf/Descriptor.php \
846 php/src/Google/Protobuf/DescriptorPool.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700847 php/src/Google/Protobuf/DoubleValue.php \
Paul Yang7f8b91f2017-09-05 14:10:32 -0700848 php/src/Google/Protobuf/Duration.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700849 php/src/Google/Protobuf/Enum.php \
michaelbausor21b0e552017-08-04 16:35:22 -0700850 php/src/Google/Protobuf/EnumDescriptor.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700851 php/src/Google/Protobuf/EnumValue.php \
michaelbausor21b0e552017-08-04 16:35:22 -0700852 php/src/Google/Protobuf/EnumValueDescriptor.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700853 php/src/Google/Protobuf/Field.php \
michaelbausor21b0e552017-08-04 16:35:22 -0700854 php/src/Google/Protobuf/FieldDescriptor.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700855 php/src/Google/Protobuf/FieldMask.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700856 php/src/Google/Protobuf/Field/Cardinality.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700857 php/src/Google/Protobuf/Field_Cardinality.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700858 php/src/Google/Protobuf/Field/Kind.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700859 php/src/Google/Protobuf/Field_Kind.php \
860 php/src/Google/Protobuf/FloatValue.php \
861 php/src/Google/Protobuf/GPBEmpty.php \
862 php/src/Google/Protobuf/Int32Value.php \
863 php/src/Google/Protobuf/Int64Value.php \
Joshua Habermane0151ad2020-10-29 11:04:54 -0700864 php/src/Google/Protobuf/Internal/AnyBase.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700865 php/src/Google/Protobuf/Internal/CodedInputStream.php \
866 php/src/Google/Protobuf/Internal/CodedOutputStream.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700867 php/src/Google/Protobuf/Internal/Descriptor.php \
Paul Yang46ae90d2016-12-08 11:16:49 -0800868 php/src/Google/Protobuf/Internal/DescriptorPool.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700869 php/src/Google/Protobuf/Internal/DescriptorProto.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700870 php/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php \
871 php/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700872 php/src/Google/Protobuf/Internal/EnumBuilderContext.php \
Brent Shafferb9b34e92017-06-14 15:57:11 -0700873 php/src/Google/Protobuf/Internal/EnumDescriptor.php \
Paul Yang46ae90d2016-12-08 11:16:49 -0800874 php/src/Google/Protobuf/Internal/EnumDescriptorProto.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700875 php/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700876 php/src/Google/Protobuf/Internal/EnumOptions.php \
877 php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700878 php/src/Google/Protobuf/Internal/EnumValueOptions.php \
Paul Yang28074362017-08-30 16:50:07 -0700879 php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700880 php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \
881 php/src/Google/Protobuf/Internal/FieldDescriptor.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700882 php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700883 php/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php \
884 php/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700885 php/src/Google/Protobuf/Internal/FieldOptions.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700886 php/src/Google/Protobuf/Internal/FieldOptions/CType.php \
887 php/src/Google/Protobuf/Internal/FieldOptions/JSType.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700888 php/src/Google/Protobuf/Internal/FileDescriptor.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700889 php/src/Google/Protobuf/Internal/FileDescriptorProto.php \
890 php/src/Google/Protobuf/Internal/FileDescriptorSet.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700891 php/src/Google/Protobuf/Internal/FileOptions.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700892 php/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700893 php/src/Google/Protobuf/Internal/GPBDecodeException.php \
894 php/src/Google/Protobuf/Internal/GPBJsonWire.php \
895 php/src/Google/Protobuf/Internal/GPBLabel.php \
896 php/src/Google/Protobuf/Internal/GPBType.php \
897 php/src/Google/Protobuf/Internal/GPBUtil.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700898 php/src/Google/Protobuf/Internal/GPBWire.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700899 php/src/Google/Protobuf/Internal/GPBWireType.php \
900 php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700901 php/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700902 php/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php \
michaelbausor21b0e552017-08-04 16:35:22 -0700903 php/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700904 php/src/Google/Protobuf/Internal/MapEntry.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700905 php/src/Google/Protobuf/Internal/MapField.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700906 php/src/Google/Protobuf/Internal/MapFieldIter.php \
907 php/src/Google/Protobuf/Internal/Message.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700908 php/src/Google/Protobuf/Internal/MessageBuilderContext.php \
909 php/src/Google/Protobuf/Internal/MessageOptions.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700910 php/src/Google/Protobuf/Internal/MethodDescriptorProto.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700911 php/src/Google/Protobuf/Internal/MethodOptions.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700912 php/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700913 php/src/Google/Protobuf/Internal/OneofDescriptor.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700914 php/src/Google/Protobuf/Internal/OneofDescriptorProto.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700915 php/src/Google/Protobuf/Internal/OneofField.php \
916 php/src/Google/Protobuf/Internal/OneofOptions.php \
917 php/src/Google/Protobuf/Internal/RawInputStream.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700918 php/src/Google/Protobuf/Internal/RepeatedField.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700919 php/src/Google/Protobuf/Internal/RepeatedFieldIter.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700920 php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php \
921 php/src/Google/Protobuf/Internal/ServiceOptions.php \
Paul Yang46ae90d2016-12-08 11:16:49 -0800922 php/src/Google/Protobuf/Internal/SourceCodeInfo.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700923 php/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php \
Joshua Habermane0151ad2020-10-29 11:04:54 -0700924 php/src/Google/Protobuf/Internal/TimestampBase.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700925 php/src/Google/Protobuf/Internal/UninterpretedOption.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700926 php/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php \
Feng Xiaoacd5b052018-08-09 21:21:01 -0700927 php/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php \
928 php/src/Google/Protobuf/Internal/DescriptorProto_ReservedRange.php \
929 php/src/Google/Protobuf/Internal/EnumDescriptorProto_EnumReservedRange.php \
930 php/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php \
931 php/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php \
932 php/src/Google/Protobuf/Internal/FieldOptions_CType.php \
933 php/src/Google/Protobuf/Internal/FieldOptions_JSType.php \
934 php/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.php \
935 php/src/Google/Protobuf/Internal/GeneratedCodeInfo_Annotation.php \
936 php/src/Google/Protobuf/Internal/MethodOptions_IdempotencyLevel.php \
937 php/src/Google/Protobuf/Internal/SourceCodeInfo_Location.php \
938 php/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700939 php/src/Google/Protobuf/ListValue.php \
940 php/src/Google/Protobuf/Method.php \
941 php/src/Google/Protobuf/Mixin.php \
942 php/src/Google/Protobuf/NullValue.php \
943 php/src/Google/Protobuf/OneofDescriptor.php \
944 php/src/Google/Protobuf/Option.php \
945 php/src/Google/Protobuf/SourceContext.php \
946 php/src/Google/Protobuf/StringValue.php \
947 php/src/Google/Protobuf/Struct.php \
948 php/src/Google/Protobuf/Syntax.php \
949 php/src/Google/Protobuf/Timestamp.php \
950 php/src/Google/Protobuf/Type.php \
951 php/src/Google/Protobuf/UInt32Value.php \
952 php/src/Google/Protobuf/UInt64Value.php \
953 php/src/Google/Protobuf/Value.php \
954 php/src/phpdoc.dist.xml \
Paul Yangd4ca9292020-08-11 19:30:46 -0700955 php/tests/ArrayTest.php \
Paul Yang46ae90d2016-12-08 11:16:49 -0800956 php/tests/autoload.php \
Paul Yangae55fd22017-09-22 14:08:01 -0700957 php/tests/bootstrap_phpunit.php \
Paul Yang25abd7b2017-05-05 11:14:11 -0700958 php/tests/compatibility_test.sh \
David Supplee93533f72019-03-12 21:30:06 -0700959 php/tests/compile_extension.sh \
Paul Yangd4ca9292020-08-11 19:30:46 -0700960 php/tests/DescriptorsTest.php \
961 php/tests/EncodeDecodeTest.php \
Paul Yang46ae90d2016-12-08 11:16:49 -0800962 php/tests/gdb_test.sh \
Joshua Habermanf1ce8662020-06-09 15:40:29 -0700963 php/tests/generate_protos.sh \
Paul Yangd4ca9292020-08-11 19:30:46 -0700964 php/tests/GeneratedClassTest.php \
965 php/tests/GeneratedPhpdocTest.php \
966 php/tests/GeneratedServiceTest.php \
967 php/tests/MapFieldTest.php \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700968 php/tests/memory_leak_test.php \
Paul Yangfe1790c2019-12-12 13:59:51 -0800969 php/tests/multirequest.php \
970 php/tests/multirequest.sh \
Paul Yangd4ca9292020-08-11 19:30:46 -0700971 php/tests/PhpImplementationTest.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700972 php/tests/proto/empty/echo.proto \
Paul Yang77f64bb2017-10-05 21:03:57 -0700973 php/tests/proto/test.proto \
Paul Yangc15a3262017-08-02 07:42:27 -0700974 php/tests/proto/test_descriptors.proto \
Paul Yang6f325802017-06-05 00:10:18 -0700975 php/tests/proto/test_empty_php_namespace.proto \
Paul Yang4523c9c2017-04-20 16:55:56 -0700976 php/tests/proto/test_import_descriptor_proto.proto \
Paul Yang46ae90d2016-12-08 11:16:49 -0800977 php/tests/proto/test_include.proto \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700978 php/tests/proto/test_no_namespace.proto \
Paul Yang6f325802017-06-05 00:10:18 -0700979 php/tests/proto/test_php_namespace.proto \
980 php/tests/proto/test_prefix.proto \
Bo Yange5d000c2017-09-08 15:11:49 -0700981 php/tests/proto/test_reserved_enum_lower.proto \
982 php/tests/proto/test_reserved_enum_upper.proto \
Bo Yangf46a01d2017-09-12 15:04:34 -0700983 php/tests/proto/test_reserved_enum_value_lower.proto \
984 php/tests/proto/test_reserved_enum_value_upper.proto \
Bo Yange5d000c2017-09-08 15:11:49 -0700985 php/tests/proto/test_reserved_message_lower.proto \
986 php/tests/proto/test_reserved_message_upper.proto \
Matt A9e745f72017-07-18 10:45:18 -0400987 php/tests/proto/test_service.proto \
988 php/tests/proto/test_service_namespace.proto \
michaelbausor6a51c032018-10-07 16:56:41 -0700989 php/tests/proto/test_wrapper_type_setters.proto \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700990 php/tests/test.sh \
991 php/tests/test_base.php \
992 php/tests/test_util.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700993 php/tests/undefined_test.php \
Joshua Habermanad5a2152020-07-17 13:49:23 -0700994 php/tests/valgrind.supp \
Paul Yangd4ca9292020-08-11 19:30:46 -0700995 php/tests/WellKnownTest.php \
996 php/tests/WrapperTypeSettersTest.php
Bo Yange0a6e522016-09-23 18:37:37 -0700997
Feng Xiao8f7dec82014-12-02 14:15:26 -0800998python_EXTRA_DIST= \
Bo Yang51de7a72015-05-25 22:21:05 -0700999 python/MANIFEST.in \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001000 python/google/__init__.py \
1001 python/google/protobuf/__init__.py \
Thomas Hisch451e0442018-04-09 21:43:10 +02001002 python/google/protobuf/compiler/__init__.py \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001003 python/google/protobuf/descriptor.py \
1004 python/google/protobuf/descriptor_database.py \
1005 python/google/protobuf/descriptor_pool.py \
1006 python/google/protobuf/internal/__init__.py \
1007 python/google/protobuf/internal/_parameterized.py \
1008 python/google/protobuf/internal/any_test.proto \
Feng Xiaoe841bac2015-12-11 17:09:20 -08001009 python/google/protobuf/internal/any_test.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +00001010 python/google/protobuf/internal/api_implementation.cc \
1011 python/google/protobuf/internal/api_implementation.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +00001012 python/google/protobuf/internal/containers.py \
temporal40ee5512008-07-10 02:12:20 +00001013 python/google/protobuf/internal/decoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +00001014 python/google/protobuf/internal/descriptor_database_test.py \
1015 python/google/protobuf/internal/descriptor_pool_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +00001016 python/google/protobuf/internal/descriptor_pool_test1.proto \
1017 python/google/protobuf/internal/descriptor_pool_test2.proto \
temporal40ee5512008-07-10 02:12:20 +00001018 python/google/protobuf/internal/descriptor_test.py \
1019 python/google/protobuf/internal/encoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +00001020 python/google/protobuf/internal/enum_type_wrapper.py \
Yilun Chongd8c25012019-02-22 18:13:33 +08001021 python/google/protobuf/internal/extension_dict.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +00001022 python/google/protobuf/internal/factory_test1.proto \
1023 python/google/protobuf/internal/factory_test2.proto \
Feng Xiao60cb0942016-07-19 16:15:42 -07001024 python/google/protobuf/internal/file_options_test.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +00001025 python/google/protobuf/internal/generator_test.py \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001026 python/google/protobuf/internal/import_test_package/__init__.py \
1027 python/google/protobuf/internal/import_test_package/inner.proto \
1028 python/google/protobuf/internal/import_test_package/outer.proto \
Jisi Liu46e8ff62015-10-05 11:59:43 -07001029 python/google/protobuf/internal/json_format_test.py \
Hao Nguyenef1e8e72019-04-09 06:48:01 -07001030 python/google/protobuf/internal/keywords_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +00001031 python/google/protobuf/internal/message_factory_test.py \
temporal40ee5512008-07-10 02:12:20 +00001032 python/google/protobuf/internal/message_listener.py \
Feng Xiaoa3312982015-08-26 20:20:42 -07001033 python/google/protobuf/internal/message_set_extensions.proto \
kenton@google.com80b1d622009-07-29 01:13:20 +00001034 python/google/protobuf/internal/message_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +00001035 python/google/protobuf/internal/missing_enum_values.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -07001036 python/google/protobuf/internal/more_extensions.proto \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001037 python/google/protobuf/internal/more_extensions_dynamic.proto \
temporal40ee5512008-07-10 02:12:20 +00001038 python/google/protobuf/internal/more_messages.proto \
Adam Cozzette837c94b2018-03-14 13:01:55 -07001039 python/google/protobuf/internal/no_package.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -07001040 python/google/protobuf/internal/packed_field_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -08001041 python/google/protobuf/internal/proto_builder_test.py \
liujisi@google.com33165fe2010-11-02 13:14:58 +00001042 python/google/protobuf/internal/python_message.py \
temporal40ee5512008-07-10 02:12:20 +00001043 python/google/protobuf/internal/reflection_test.py \
1044 python/google/protobuf/internal/service_reflection_test.py \
jieluo@google.com2d10b802014-08-13 23:17:39 +00001045 python/google/protobuf/internal/symbol_database_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +00001046 python/google/protobuf/internal/test_bad_identifiers.proto \
Joshua Habermanb7742c52020-04-08 10:30:17 -07001047 python/google/protobuf/internal/test_proto3_optional.proto \
temporal40ee5512008-07-10 02:12:20 +00001048 python/google/protobuf/internal/test_util.py \
Bo Yangfe1aaad2016-09-20 23:34:05 +00001049 python/google/protobuf/internal/testing_refleaks.py \
jieluo@google.combde4a322014-08-12 21:10:30 +00001050 python/google/protobuf/internal/text_encoding_test.py \
temporal40ee5512008-07-10 02:12:20 +00001051 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +00001052 python/google/protobuf/internal/type_checkers.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +00001053 python/google/protobuf/internal/unknown_fields_test.py \
Feng Xiaoe841bac2015-12-11 17:09:20 -08001054 python/google/protobuf/internal/well_known_types.py \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001055 python/google/protobuf/internal/well_known_types.py \
1056 python/google/protobuf/internal/well_known_types_test.py \
Feng Xiaoe841bac2015-12-11 17:09:20 -08001057 python/google/protobuf/internal/well_known_types_test.py \
temporal40ee5512008-07-10 02:12:20 +00001058 python/google/protobuf/internal/wire_format.py \
1059 python/google/protobuf/internal/wire_format_test.py \
Jisi Liu46e8ff62015-10-05 11:59:43 -07001060 python/google/protobuf/json_format.py \
temporal40ee5512008-07-10 02:12:20 +00001061 python/google/protobuf/message.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +00001062 python/google/protobuf/message_factory.py \
Thomas Colthurst7c651422018-05-29 18:26:11 -04001063 python/google/protobuf/proto_api.h \
Feng Xiao6ef984a2014-11-10 17:34:54 -08001064 python/google/protobuf/proto_builder.py \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001065 python/google/protobuf/pyext/README \
1066 python/google/protobuf/pyext/__init__.py \
1067 python/google/protobuf/pyext/cpp_message.py \
1068 python/google/protobuf/pyext/descriptor.cc \
1069 python/google/protobuf/pyext/descriptor.h \
1070 python/google/protobuf/pyext/descriptor_containers.cc \
1071 python/google/protobuf/pyext/descriptor_containers.h \
1072 python/google/protobuf/pyext/descriptor_database.cc \
1073 python/google/protobuf/pyext/descriptor_database.h \
1074 python/google/protobuf/pyext/descriptor_pool.cc \
1075 python/google/protobuf/pyext/descriptor_pool.h \
1076 python/google/protobuf/pyext/extension_dict.cc \
1077 python/google/protobuf/pyext/extension_dict.h \
1078 python/google/protobuf/pyext/map_container.cc \
1079 python/google/protobuf/pyext/map_container.h \
1080 python/google/protobuf/pyext/message.cc \
1081 python/google/protobuf/pyext/message.h \
Feng Xiaoacd5b052018-08-09 21:21:01 -07001082 python/google/protobuf/pyext/field.cc \
1083 python/google/protobuf/pyext/field.h \
1084 python/google/protobuf/pyext/unknown_fields.cc \
1085 python/google/protobuf/pyext/unknown_fields.h \
Bo Yangfe1aaad2016-09-20 23:34:05 +00001086 python/google/protobuf/pyext/message_factory.cc \
1087 python/google/protobuf/pyext/message_factory.h \
Feng Xiao60cb0942016-07-19 16:15:42 -07001088 python/google/protobuf/pyext/message_module.cc \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001089 python/google/protobuf/pyext/proto2_api_test.proto \
1090 python/google/protobuf/pyext/python.proto \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001091 python/google/protobuf/pyext/repeated_composite_container.cc \
1092 python/google/protobuf/pyext/repeated_composite_container.h \
1093 python/google/protobuf/pyext/repeated_scalar_container.cc \
1094 python/google/protobuf/pyext/repeated_scalar_container.h \
Feng Xiao599613e2016-11-18 15:36:28 -08001095 python/google/protobuf/pyext/safe_numerics.h \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001096 python/google/protobuf/pyext/scoped_pyobject_ptr.h \
temporal40ee5512008-07-10 02:12:20 +00001097 python/google/protobuf/reflection.py \
1098 python/google/protobuf/service.py \
1099 python/google/protobuf/service_reflection.py \
jieluo@google.combde4a322014-08-12 21:10:30 +00001100 python/google/protobuf/symbol_database.py \
1101 python/google/protobuf/text_encoding.py \
temporal40ee5512008-07-10 02:12:20 +00001102 python/google/protobuf/text_format.py \
Thomas Hisch451e0442018-04-09 21:43:10 +02001103 python/google/protobuf/util/__init__.py \
Jisi Liu66c1dac2017-07-19 14:38:57 -07001104 python/release.sh \
temporal40ee5512008-07-10 02:12:20 +00001105 python/mox.py \
Jisi Liue1391172016-07-29 14:40:05 -07001106 python/setup.cfg \
Feng Xiao99e18682015-08-26 20:19:05 -07001107 python/setup.py \
temporal40ee5512008-07-10 02:12:20 +00001108 python/stubout.py \
Feng Xiao99e18682015-08-26 20:19:05 -07001109 python/tox.ini \
jesse0481bf32015-03-17 12:14:55 -07001110 python/README.md
temporal40ee5512008-07-10 02:12:20 +00001111
Chris Fallin973f4252014-11-18 14:19:58 -08001112ruby_EXTRA_DIST= \
Bo Yang51de7a72015-05-25 22:21:05 -07001113 ruby/Gemfile \
Bo Yang51de7a72015-05-25 22:21:05 -07001114 ruby/.gitignore \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001115 ruby/README.md \
1116 ruby/Rakefile \
Feng Xiao9118ad62017-02-23 17:53:06 -08001117 ruby/compatibility_tests/v3.0.0/tests/test_import.proto \
1118 ruby/compatibility_tests/v3.0.0/tests/stress.rb \
1119 ruby/compatibility_tests/v3.0.0/tests/repeated_field_test.rb \
1120 ruby/compatibility_tests/v3.0.0/tests/generated_code_test.rb \
1121 ruby/compatibility_tests/v3.0.0/tests/generated_code.proto \
1122 ruby/compatibility_tests/v3.0.0/tests/basic.rb \
1123 ruby/compatibility_tests/v3.0.0/test.sh \
1124 ruby/compatibility_tests/v3.0.0/Rakefile \
1125 ruby/compatibility_tests/v3.0.0/README.md \
Joshua Haberman9abf6e22021-01-13 12:16:25 -08001126 ruby/ext/google/protobuf_c/convert.c \
1127 ruby/ext/google/protobuf_c/convert.h \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001128 ruby/ext/google/protobuf_c/defs.c \
Joshua Haberman9abf6e22021-01-13 12:16:25 -08001129 ruby/ext/google/protobuf_c/defs.h \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001130 ruby/ext/google/protobuf_c/extconf.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -08001131 ruby/ext/google/protobuf_c/map.c \
Joshua Haberman9abf6e22021-01-13 12:16:25 -08001132 ruby/ext/google/protobuf_c/map.h \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001133 ruby/ext/google/protobuf_c/message.c \
Joshua Haberman9abf6e22021-01-13 12:16:25 -08001134 ruby/ext/google/protobuf_c/message.h \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001135 ruby/ext/google/protobuf_c/protobuf.c \
1136 ruby/ext/google/protobuf_c/protobuf.h \
1137 ruby/ext/google/protobuf_c/repeated_field.c \
Joshua Haberman9abf6e22021-01-13 12:16:25 -08001138 ruby/ext/google/protobuf_c/repeated_field.h \
1139 ruby/ext/google/protobuf_c/ruby-upb.c \
1140 ruby/ext/google/protobuf_c/ruby-upb.h \
Adam Cozzette9fa40312017-03-08 11:25:48 -08001141 ruby/ext/google/protobuf_c/wrap_memcpy.c \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001142 ruby/google-protobuf.gemspec \
Bo Yang51de7a72015-05-25 22:21:05 -07001143 ruby/lib/google/protobuf/message_exts.rb \
1144 ruby/lib/google/protobuf/repeated_field.rb \
Josh Haberman3cec2ea2016-08-01 14:31:31 -07001145 ruby/lib/google/protobuf/well_known_types.rb \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001146 ruby/lib/google/protobuf.rb \
Bo Yang51de7a72015-05-25 22:21:05 -07001147 ruby/pom.xml \
1148 ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \
1149 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \
1150 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \
Rob Widmer351a34f2020-12-01 10:52:15 -05001151 ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \
Bo Yang51de7a72015-05-25 22:21:05 -07001152 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \
1153 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \
Bo Yang51de7a72015-05-25 22:21:05 -07001154 ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \
Rob Widmer351a34f2020-12-01 10:52:15 -05001155 ruby/src/main/java/com/google/protobuf/jruby/RubyFileBuilderContext.java \
1156 ruby/src/main/java/com/google/protobuf/jruby/RubyFileDescriptor.java \
Bo Yang51de7a72015-05-25 22:21:05 -07001157 ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \
Bo Yang51de7a72015-05-25 22:21:05 -07001158 ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \
Rob Widmer351a34f2020-12-01 10:52:15 -05001159 ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \
Bo Yang51de7a72015-05-25 22:21:05 -07001160 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \
1161 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \
1162 ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \
1163 ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \
1164 ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \
1165 ruby/src/main/java/com/google/protobuf/jruby/Utils.java \
1166 ruby/src/main/java/google/ProtobufJavaService.java \
1167 ruby/src/main/sentinel.proto \
Paul Yang011f6702018-10-04 10:29:21 -07001168 ruby/tests/basic_proto2.rb \
1169 ruby/tests/basic_test_proto2.proto \
1170 ruby/tests/basic_test.proto \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001171 ruby/tests/basic.rb \
Paul Yang011f6702018-10-04 10:29:21 -07001172 ruby/tests/common_tests.rb \
Paul Yang0e7b5892017-12-07 14:18:38 -08001173 ruby/tests/encode_decode_test.rb \
Paul Yangcd5f49d2017-10-03 17:28:49 -07001174 ruby/tests/gc_test.rb \
Bo Yang51de7a72015-05-25 22:21:05 -07001175 ruby/tests/repeated_field_test.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -08001176 ruby/tests/stress.rb \
Paul Yang011f6702018-10-04 10:29:21 -07001177 ruby/tests/generated_code_proto2_test.rb \
1178 ruby/tests/generated_code_proto2.proto \
Chris Fallinb0670dd2015-01-14 16:45:47 -08001179 ruby/tests/generated_code.proto \
Rob Widmer48234f52021-01-13 11:13:44 -05001180 ruby/tests/multi_level_nesting_test.proto \
1181 ruby/tests/multi_level_nesting_test.rb \
Paul Yang011f6702018-10-04 10:29:21 -07001182 ruby/tests/test_import_proto2.proto \
Josh Haberman97e20262016-07-25 14:07:09 -07001183 ruby/tests/test_import.proto \
Paul Yang011f6702018-10-04 10:29:21 -07001184 ruby/tests/test_ruby_package_proto2.proto \
Bo Yang090fe392018-05-22 09:53:03 -07001185 ruby/tests/test_ruby_package.proto \
Bo Yang51de7a72015-05-25 22:21:05 -07001186 ruby/tests/generated_code_test.rb \
Josh Habermane3094a82016-07-27 17:31:16 -07001187 ruby/tests/well_known_types_test.rb \
Joe Bolinger64eb9b62019-02-06 07:57:13 -08001188 ruby/tests/type_errors.rb \
Bo Yang51de7a72015-05-25 22:21:05 -07001189 ruby/travis-test.sh
Chris Fallin973f4252014-11-18 14:19:58 -08001190
Adam Cozzette10ea2512017-02-28 14:20:56 -08001191js_EXTRA_DIST= \
1192 js/README.md \
1193 js/binary/arith.js \
1194 js/binary/arith_test.js \
1195 js/binary/constants.js \
1196 js/binary/decoder.js \
1197 js/binary/decoder_test.js \
1198 js/binary/encoder.js \
1199 js/binary/message_test.js \
1200 js/binary/proto_test.js \
1201 js/binary/reader.js \
1202 js/binary/reader_test.js \
1203 js/binary/utils.js \
1204 js/binary/utils_test.js \
1205 js/binary/writer.js \
1206 js/binary/writer_test.js \
1207 js/commonjs/export.js \
1208 js/commonjs/export_asserts.js \
1209 js/commonjs/export_testdeps.js \
1210 js/commonjs/import_test.js \
1211 js/commonjs/jasmine.json \
1212 js/commonjs/rewrite_tests_for_commonjs.js \
Peter Marton3c4e3682018-03-01 16:05:19 -08001213 js/commonjs/strict_test.js \
Adam Cozzette10ea2512017-02-28 14:20:56 -08001214 js/commonjs/test6/test6.proto \
1215 js/commonjs/test7/test7.proto \
1216 js/compatibility_tests/v3.0.0/binary/arith_test.js \
1217 js/compatibility_tests/v3.0.0/binary/decoder_test.js \
1218 js/compatibility_tests/v3.0.0/binary/proto_test.js \
1219 js/compatibility_tests/v3.0.0/binary/reader_test.js \
1220 js/compatibility_tests/v3.0.0/binary/utils_test.js \
1221 js/compatibility_tests/v3.0.0/binary/writer_test.js \
1222 js/compatibility_tests/v3.0.0/commonjs/export_asserts.js \
1223 js/compatibility_tests/v3.0.0/commonjs/export_testdeps.js \
1224 js/compatibility_tests/v3.0.0/commonjs/import_test.js \
1225 js/compatibility_tests/v3.0.0/commonjs/jasmine.json \
1226 js/compatibility_tests/v3.0.0/commonjs/rewrite_tests_for_commonjs.js \
1227 js/compatibility_tests/v3.0.0/commonjs/test6/test6.proto \
1228 js/compatibility_tests/v3.0.0/commonjs/test7/test7.proto \
1229 js/compatibility_tests/v3.0.0/data.proto \
1230 js/compatibility_tests/v3.0.0/debug_test.js \
1231 js/compatibility_tests/v3.0.0/jasmine1.json \
1232 js/compatibility_tests/v3.0.0/jasmine2.json \
1233 js/compatibility_tests/v3.0.0/jasmine3.json \
1234 js/compatibility_tests/v3.0.0/message_test.js \
1235 js/compatibility_tests/v3.0.0/proto3_test.js \
1236 js/compatibility_tests/v3.0.0/proto3_test.proto \
1237 js/compatibility_tests/v3.0.0/test2.proto \
1238 js/compatibility_tests/v3.0.0/test3.proto \
1239 js/compatibility_tests/v3.0.0/test4.proto \
1240 js/compatibility_tests/v3.0.0/test5.proto \
1241 js/compatibility_tests/v3.0.0/testbinary.proto \
1242 js/compatibility_tests/v3.0.0/testempty.proto \
1243 js/compatibility_tests/v3.0.0/test.proto \
1244 js/compatibility_tests/v3.0.0/test.sh \
Jisi Liubf658c22017-07-19 14:32:22 -07001245 js/compatibility_tests/v3.1.0/testempty.proto \
1246 js/compatibility_tests/v3.1.0/testbinary.proto \
1247 js/compatibility_tests/v3.1.0/test5.proto \
1248 js/compatibility_tests/v3.1.0/test4.proto \
1249 js/compatibility_tests/v3.1.0/test3.proto \
1250 js/compatibility_tests/v3.1.0/test2.proto \
1251 js/compatibility_tests/v3.1.0/test.proto \
1252 js/compatibility_tests/v3.1.0/proto3_test.proto \
1253 js/compatibility_tests/v3.1.0/proto3_test.js \
1254 js/compatibility_tests/v3.1.0/message_test.js \
1255 js/compatibility_tests/v3.1.0/maps_test.js \
1256 js/compatibility_tests/v3.1.0/debug_test.js \
1257 js/compatibility_tests/v3.1.0/data.proto \
1258 js/compatibility_tests/v3.1.0/commonjs/test7/test7.proto \
1259 js/compatibility_tests/v3.1.0/commonjs/test6/test6.proto \
1260 js/compatibility_tests/v3.1.0/binary/writer_test.js \
1261 js/compatibility_tests/v3.1.0/binary/utils_test.js \
1262 js/compatibility_tests/v3.1.0/binary/reader_test.js \
1263 js/compatibility_tests/v3.1.0/binary/proto_test.js \
1264 js/compatibility_tests/v3.1.0/binary/decoder_test.js \
1265 js/compatibility_tests/v3.1.0/binary/arith_test.js \
Adam Cozzette10ea2512017-02-28 14:20:56 -08001266 js/data.proto \
1267 js/debug.js \
1268 js/debug_test.js \
Adam Cozzettefa9ebaf2020-05-08 16:56:43 -07001269 js/experimental/runtime/kernel/message_set.js \
1270 js/experimental/runtime/kernel/message_set_test.js \
1271 js/experimental/runtime/kernel/tag.js \
1272 js/experimental/runtime/kernel/tag_test.js \
Adam Cozzette10ea2512017-02-28 14:20:56 -08001273 js/gulpfile.js \
1274 js/jasmine.json \
1275 js/map.js \
1276 js/maps_test.js \
1277 js/message.js \
1278 js/message_test.js \
1279 js/node_loader.js \
1280 js/package.json \
1281 js/proto3_test.js \
1282 js/proto3_test.proto \
1283 js/test.proto \
1284 js/test2.proto \
1285 js/test3.proto \
1286 js/test4.proto \
1287 js/test5.proto \
1288 js/test8.proto \
Peter Marton3c4e3682018-03-01 16:05:19 -08001289 js/test9.proto \
Peter Marton13f94b42018-03-26 16:07:45 -07001290 js/test10.proto \
Adam Cozzettefbd69fa2018-11-08 08:41:12 -08001291 js/test11.proto \
1292 js/test12.proto \
1293 js/test13.proto \
1294 js/test14.proto \
1295 js/test15.proto \
Adam Cozzette10ea2512017-02-28 14:20:56 -08001296 js/test_bootstrap.js \
1297 js/testbinary.proto \
Rafi Kamal7e0a0812020-02-07 17:14:49 -08001298 js/testempty.proto \
David L. Jones73f3a722020-02-27 11:26:39 -08001299 js/testlargenumbers.proto \
Rafi Kamal7e0a0812020-02-07 17:14:49 -08001300 js/experimental/runtime/testing/jasmine_protobuf.js \
1301 js/experimental/runtime/testing/ensure_custom_equality_test.js \
1302 js/experimental/runtime/testing/binary/test_message.js \
1303 js/experimental/runtime/kernel/writer_test.js \
1304 js/experimental/runtime/kernel/writer.js \
1305 js/experimental/runtime/kernel/wire_type.js \
1306 js/experimental/runtime/kernel/uint8arrays_test.js \
1307 js/experimental/runtime/kernel/uint8arrays.js \
1308 js/experimental/runtime/kernel/uint32_test_pairs.js \
1309 js/experimental/runtime/kernel/typed_arrays_test.js \
1310 js/experimental/runtime/kernel/typed_arrays.js \
1311 js/experimental/runtime/kernel/textencoding_test.js \
1312 js/experimental/runtime/kernel/textencoding.js \
Rafi Kamal7e0a0812020-02-07 17:14:49 -08001313 js/experimental/runtime/kernel/storage.js \
1314 js/experimental/runtime/kernel/sint64_test_pairs.js \
1315 js/experimental/runtime/kernel/sint32_test_pairs.js \
1316 js/experimental/runtime/kernel/sfixed64_test_pairs.js \
1317 js/experimental/runtime/kernel/sfixed32_test_pairs.js \
1318 js/experimental/runtime/kernel/reader_test.js \
1319 js/experimental/runtime/kernel/reader.js \
1320 js/experimental/runtime/kernel/packed_uint32_test_pairs.js \
1321 js/experimental/runtime/kernel/packed_sint64_test_pairs.js \
1322 js/experimental/runtime/kernel/packed_sint32_test_pairs.js \
1323 js/experimental/runtime/kernel/packed_sfixed64_test_pairs.js \
1324 js/experimental/runtime/kernel/packed_sfixed32_test_pairs.js \
1325 js/experimental/runtime/kernel/packed_int64_test_pairs.js \
1326 js/experimental/runtime/kernel/packed_int32_test_pairs.js \
1327 js/experimental/runtime/kernel/packed_float_test_pairs.js \
1328 js/experimental/runtime/kernel/packed_fixed32_test_pairs.js \
1329 js/experimental/runtime/kernel/packed_double_test_pairs.js \
1330 js/experimental/runtime/kernel/packed_bool_test_pairs.js \
Rafi Kamal53128552020-03-17 12:16:12 -07001331 js/experimental/runtime/kernel/kernel_test.js \
1332 js/experimental/runtime/kernel/kernel_repeated_test.js \
1333 js/experimental/runtime/kernel/kernel_compatibility_test.js \
1334 js/experimental/runtime/kernel/kernel.js \
Rafi Kamal7e0a0812020-02-07 17:14:49 -08001335 js/experimental/runtime/kernel/internal_message.js \
1336 js/experimental/runtime/kernel/int64_test_pairs.js \
1337 js/experimental/runtime/kernel/int32_test_pairs.js \
1338 js/experimental/runtime/kernel/indexer_test.js \
1339 js/experimental/runtime/kernel/indexer.js \
1340 js/experimental/runtime/kernel/float_test_pairs.js \
1341 js/experimental/runtime/kernel/fixed32_test_pairs.js \
1342 js/experimental/runtime/kernel/field.js \
1343 js/experimental/runtime/kernel/double_test_pairs.js \
1344 js/experimental/runtime/kernel/conformance/wire_format.js \
1345 js/experimental/runtime/kernel/conformance/test_all_types_proto3.js \
1346 js/experimental/runtime/kernel/conformance/test_all_types_proto2.js \
1347 js/experimental/runtime/kernel/conformance/conformance_testee_runner_node.js \
1348 js/experimental/runtime/kernel/conformance/conformance_testee.js \
1349 js/experimental/runtime/kernel/conformance/conformance_response.js \
1350 js/experimental/runtime/kernel/conformance/conformance_request.js \
1351 js/experimental/runtime/kernel/buffer_decoder_test.js \
1352 js/experimental/runtime/kernel/buffer_decoder_helper.js \
1353 js/experimental/runtime/kernel/buffer_decoder.js \
1354 js/experimental/runtime/kernel/bool_test_pairs.js \
Rafi Kamal53128552020-03-17 12:16:12 -07001355 js/experimental/runtime/kernel/binary_storage_test.js \
1356 js/experimental/runtime/kernel/binary_storage.js \
Rafi Kamal7e0a0812020-02-07 17:14:49 -08001357 js/experimental/runtime/internal/checks_test.js \
1358 js/experimental/runtime/internal/checks.js \
1359 js/experimental/runtime/int64_test.js \
1360 js/experimental/runtime/int64.js \
1361 js/experimental/runtime/bytestring_test.js \
1362 js/experimental/runtime/bytestring_internal.js \
1363 js/experimental/runtime/bytestring.js \
1364 js/experimental/benchmarks/code_size/kernel/popular_types.js \
1365 js/experimental/benchmarks/code_size/kernel/all_types.js \
1366 js/experimental/benchmarks/code_size/code_size_base.js \
1367 js/experimental/benchmarks/code_size/apps_jspb/popular_types_proto3.js \
1368 js/experimental/benchmarks/code_size/apps_jspb/popular_types_proto2.js \
1369 js/experimental/benchmarks/code_size/apps_jspb/all_types_proto3.js \
1370 js/experimental/benchmarks/code_size/apps_jspb/all_types_proto2.js
Feng Xiaob7610f12015-12-22 14:36:04 -08001371
Feng Xiaod5a00242018-03-26 12:59:28 -07001372all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(php_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) $(js_EXTRA_DIST)
Feng Xiao8f7dec82014-12-02 14:15:26 -08001373
Bo Yangff7bdad2015-08-23 10:45:14 -07001374EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
1375 autogen.sh \
1376 generate_descriptor_proto.sh \
1377 README.md \
Bo Yangff7bdad2015-08-23 10:45:14 -07001378 LICENSE \
1379 CONTRIBUTORS.txt \
1380 CHANGES.txt \
1381 update_file_lists.sh \
Jisi Liu40081002015-08-26 17:48:08 -07001382 BUILD \
Jisi Liu40081002015-08-26 17:48:08 -07001383 WORKSPACE \
Bo Yangff7bdad2015-08-23 10:45:14 -07001384 cmake/CMakeLists.txt \
1385 cmake/README.md \
Yannicf0cb9cd2020-02-13 22:04:14 +01001386 cmake/conformance.cmake \
Feng Xiao60cb0942016-07-19 16:15:42 -07001387 cmake/examples.cmake \
Bo Yangff7bdad2015-08-23 10:45:14 -07001388 cmake/extract_includes.bat.in \
1389 cmake/install.cmake \
1390 cmake/libprotobuf.cmake \
1391 cmake/libprotobuf-lite.cmake \
1392 cmake/libprotoc.cmake \
1393 cmake/protobuf-config-version.cmake.in \
1394 cmake/protobuf-config.cmake.in \
Jisi Liud8c61932017-08-24 14:11:37 -07001395 cmake/protobuf-lite.pc.cmake \
Bo Yangff7bdad2015-08-23 10:45:14 -07001396 cmake/protobuf-module.cmake.in \
Feng Xiao60cb0942016-07-19 16:15:42 -07001397 cmake/protobuf-options.cmake \
Jisi Liud8c61932017-08-24 14:11:37 -07001398 cmake/protobuf.pc.cmake \
Bo Yangff7bdad2015-08-23 10:45:14 -07001399 cmake/protoc.cmake \
1400 cmake/tests.cmake \
Jozef Izso8233d462018-04-28 10:53:54 +02001401 cmake/version.rc.in \
Adam Cozzette9e381c02019-02-12 14:13:32 -08001402 compiler_config_setting.bzl \
Yannicf0cb9cd2020-02-13 22:04:14 +01001403 build_files_updated_unittest.sh \
1404 cc_proto_blacklist_test.bzl \
Bo Yangff7bdad2015-08-23 10:45:14 -07001405 editors/README.txt \
1406 editors/proto.vim \
1407 editors/protobuf-mode.el \
Bo Yangff7bdad2015-08-23 10:45:14 -07001408 examples/AddPerson.java \
Feng Xiao49b88af2017-09-11 12:48:53 -07001409 examples/BUILD \
Feng Xiao60cb0942016-07-19 16:15:42 -07001410 examples/CMakeLists.txt \
Bo Yangff7bdad2015-08-23 10:45:14 -07001411 examples/ListPeople.java \
Feng Xiao49b88af2017-09-11 12:48:53 -07001412 examples/Makefile \
1413 examples/README.md \
1414 examples/WORKSPACE \
1415 examples/add_person.cc \
Adam Cozzettefbd69fa2018-11-08 08:41:12 -08001416 examples/add_person.dart \
Feng Xiao49b88af2017-09-11 12:48:53 -07001417 examples/add_person.go \
Bo Yangff7bdad2015-08-23 10:45:14 -07001418 examples/add_person.py \
Feng Xiao49b88af2017-09-11 12:48:53 -07001419 examples/add_person_test.go \
1420 examples/addressbook.proto \
1421 examples/list_people.cc \
Adam Cozzettefbd69fa2018-11-08 08:41:12 -08001422 examples/list_people.dart \
Feng Xiao49b88af2017-09-11 12:48:53 -07001423 examples/list_people.go \
Feng Xiaob7610f12015-12-22 14:36:04 -08001424 examples/list_people.py \
1425 examples/list_people_test.go \
Adam Cozzettefbd69fa2018-11-08 08:41:12 -08001426 examples/pubspec.yaml \
Feng Xiaob7610f12015-12-22 14:36:04 -08001427 protobuf.bzl \
Adam Cozzette21773ef2019-06-18 10:07:18 -07001428 protobuf_deps.bzl \
Adam Liddell8199a012019-07-21 21:02:48 +00001429 third_party/six.BUILD \
Hao Nguyen87f83cc2019-05-13 16:38:07 -07001430 third_party/zlib.BUILD \
Joshua Habermanf65bcca2020-11-02 09:44:46 -08001431 third_party/wyhash/LICENSE \
1432 third_party/wyhash/wyhash.h \
Feng Xiaob7610f12015-12-22 14:36:04 -08001433 util/python/BUILD
Feng Xiao8f7dec82014-12-02 14:15:26 -08001434
Paul Yang176bac62017-06-28 15:22:19 -07001435
temporal40ee5512008-07-10 02:12:20 +00001436# Deletes all the files generated by autogen.sh.
1437MAINTAINERCLEANFILES = \
1438 aclocal.m4 \
Thomas Van Lentena20d0b62015-12-10 15:34:34 -05001439 ar-lib \
temporal40ee5512008-07-10 02:12:20 +00001440 config.guess \
1441 config.sub \
1442 configure \
1443 depcomp \
1444 install-sh \
1445 ltmain.sh \
1446 Makefile.in \
1447 missing \
1448 mkinstalldirs \
1449 config.h.in \
kenton@google.com39671e52009-07-31 21:46:11 +00001450 stamp.h.in \
1451 m4/ltsugar.m4 \
1452 m4/libtool.m4 \
1453 m4/ltversion.m4 \
1454 m4/lt~obsolete.m4 \
1455 m4/ltoptions.m4