blob: 8778b17cee4664c38c993fd7094801c8adf401b6 [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 \
92 csharp/src/Google.Protobuf.Benchmarks/Google.Protobuf.Benchmarks.csproj \
Jan Tattermuschc762a3b2020-04-07 12:01:29 +020093 csharp/src/Google.Protobuf.Benchmarks/GoogleMessageBenchmark.cs \
Jan Tattermuschc762a3b2020-04-07 12:01:29 +020094 csharp/src/Google.Protobuf.Benchmarks/ParseMessagesBenchmark.cs \
Jan Tattermuscheac2a6a2020-04-22 11:18:16 +020095 csharp/src/Google.Protobuf.Benchmarks/ParseRawPrimitivesBenchmark.cs \
Jan Tattermusch3f810562019-11-04 17:19:13 +010096 csharp/src/Google.Protobuf.Benchmarks/Program.cs \
Jan Tattermusch3f810562019-11-04 17:19:13 +010097 csharp/src/Google.Protobuf.Benchmarks/wrapper_benchmark_messages.proto \
Jan Tattermusch3f810562019-11-04 17:19:13 +010098 csharp/src/Google.Protobuf.Benchmarks/WrapperBenchmarkMessages.cs \
Feng Xiao99e18682015-08-26 20:19:05 -070099 csharp/src/Google.Protobuf.Conformance/Conformance.cs \
Jon Skeetf26e8c22017-05-04 08:51:46 +0100100 csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj \
Feng Xiao99e18682015-08-26 20:19:05 -0700101 csharp/src/Google.Protobuf.Conformance/Program.cs \
Jon Skeetf26e8c22017-05-04 08:51:46 +0100102 csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100103 csharp/src/Google.Protobuf.JsonDump/Program.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100104 csharp/src/Google.Protobuf.Test/ByteStringTest.cs \
105 csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \
106 csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \
107 csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \
108 csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \
Jon Skeetf3e9a652017-10-25 16:03:23 +0100109 csharp/src/Google.Protobuf.Test/Collections/ProtobufEqualityComparersTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100110 csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700111 csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \
John Brockc9b2c8f2017-02-13 15:34:35 -0800112 csharp/src/Google.Protobuf.Test/Compatibility/StreamExtensionsTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700113 csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100114 csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \
115 csharp/src/Google.Protobuf.Test/EqualityTester.cs \
Sydney Acksman2b9d0fd2019-05-28 15:42:41 -0500116 csharp/src/Google.Protobuf.Test/ExtensionSetTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100117 csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \
Benjamin Krämer80e530d2018-10-08 12:54:05 -0700118 csharp/src/Google.Protobuf.Test/FieldMaskTreeTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100119 csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \
Sydney Acksman6da14fa2019-08-12 18:29:01 -0500120 csharp/src/Google.Protobuf.Test/GeneratedMessageTest.Proto2.cs \
Jon Skeetf26e8c22017-05-04 08:51:46 +0100121 csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100122 csharp/src/Google.Protobuf.Test/IssuesTest.cs \
123 csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \
Jon Skeetfb248822015-09-04 12:41:14 +0100124 csharp/src/Google.Protobuf.Test/JsonParserTest.cs \
125 csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs \
Jan Tattermuscheac2a6a2020-04-22 11:18:16 +0200126 csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs \
127 csharp/src/Google.Protobuf.Test/MessageParsingHelpers.cs \
Jon Skeet81c9b852020-04-24 17:29:44 +0100128 csharp/src/Google.Protobuf.Test/Proto3OptionalTest.cs \
Jan Tattermuscheac2a6a2020-04-22 11:18:16 +0200129 csharp/src/Google.Protobuf.Test/ReadOnlySequenceFactory.cs \
Jan Tattermusch7cb55972020-06-02 09:26:25 +0200130 csharp/src/Google.Protobuf.Test/RefStructCompatibilityTest.cs \
Jon Skeet047575f2017-01-16 11:23:32 +0000131 csharp/src/Google.Protobuf.Test/Reflection/CustomOptionsTest.cs \
Jon Skeet0b314d72018-09-19 09:21:27 +0100132 csharp/src/Google.Protobuf.Test/Reflection/DescriptorDeclarationTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100133 csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700134 csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs \
Feng Xiaob7610f12015-12-22 14:36:04 -0800135 csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100136 csharp/src/Google.Protobuf.Test/SampleEnum.cs \
137 csharp/src/Google.Protobuf.Test/SampleMessages.cs \
Jon Skeetf3e9a652017-10-25 16:03:23 +0100138 csharp/src/Google.Protobuf.Test/SampleNaNs.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100139 csharp/src/Google.Protobuf.Test/TestCornerCases.cs \
Sydney Acksmancbafc682019-11-11 10:29:40 -0600140 csharp/src/Google.Protobuf.Test.TestProtos/Google.Protobuf.Test.TestProtos.csproj \
Sydney Acksman367fd272019-12-03 10:52:24 -0600141 csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936A.cs \
142 csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.cs \
143 csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.cs \
Sydney Acksmanb84929f2019-11-08 08:41:26 -0600144 csharp/src/Google.Protobuf.Test.TestProtos/ForeignMessagePartial.cs \
145 csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.cs \
146 csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs \
147 csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions2.cs \
148 csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.cs \
149 csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.cs \
150 csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.cs \
151 csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.cs \
152 csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.cs \
153 csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.cs \
154 csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.cs \
155 csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.cs \
156 csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.cs \
Jon Skeet81c9b852020-04-24 17:29:44 +0100157 csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.cs \
Jan Tattermusch0757d8e2020-05-11 11:24:48 +0200158 csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.cs \
Sydney Acksmanb84929f2019-11-08 08:41:26 -0600159 csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.cs \
160 csharp/src/Google.Protobuf.Test.TestProtos/Unittest.cs \
Jon Skeete50461d2015-09-04 11:22:34 +0100161 csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700162 csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \
Feng Xiao60cb0942016-07-19 16:15:42 -0700163 csharp/src/Google.Protobuf.Test/WellKnownTypes/FieldMaskTest.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700164 csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100165 csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \
Jie Luobfd254e2017-12-13 13:48:58 -0800166 csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs \
Jon Skeet0b314d72018-09-19 09:21:27 +0100167 csharp/src/Google.Protobuf.Test/testprotos.pb \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100168 csharp/src/Google.Protobuf.sln \
169 csharp/src/Google.Protobuf/ByteArray.cs \
170 csharp/src/Google.Protobuf/ByteString.cs \
171 csharp/src/Google.Protobuf/CodedInputStream.cs \
172 csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \
173 csharp/src/Google.Protobuf/CodedOutputStream.cs \
Jie Luobfd254e2017-12-13 13:48:58 -0800174 csharp/src/Google.Protobuf/Collections/Lists.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100175 csharp/src/Google.Protobuf/Collections/MapField.cs \
Jon Skeetf3e9a652017-10-25 16:03:23 +0100176 csharp/src/Google.Protobuf/Collections/ProtobufEqualityComparers.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100177 csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \
178 csharp/src/Google.Protobuf/Collections/RepeatedField.cs \
Jon Skeet7b19d202018-03-27 08:44:42 +0100179 csharp/src/Google.Protobuf/Compatibility/MethodInfoExtensions.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700180 csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \
John Brockc9b2c8f2017-02-13 15:34:35 -0800181 csharp/src/Google.Protobuf/Compatibility/StreamExtensions.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700182 csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \
Sydney Acksman9e89b6e2019-05-03 15:54:41 -0500183 csharp/src/Google.Protobuf/Extension.cs \
184 csharp/src/Google.Protobuf/ExtensionRegistry.cs \
185 csharp/src/Google.Protobuf/ExtensionSet.cs \
186 csharp/src/Google.Protobuf/ExtensionValue.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100187 csharp/src/Google.Protobuf/FieldCodec.cs \
Benjamin Krämer80e530d2018-10-08 12:54:05 -0700188 csharp/src/Google.Protobuf/FieldMaskTree.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100189 csharp/src/Google.Protobuf/FrameworkPortability.cs \
Jon Skeetf26e8c22017-05-04 08:51:46 +0100190 csharp/src/Google.Protobuf/Google.Protobuf.csproj \
Jan Tattermuscheac2a6a2020-04-22 11:18:16 +0200191 csharp/src/Google.Protobuf/IBufferMessage.cs \
Feng Xiao60cb0942016-07-19 16:15:42 -0700192 csharp/src/Google.Protobuf/ICustomDiagnosticMessage.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700193 csharp/src/Google.Protobuf/IDeepCloneable.cs \
Sydney Acksman9e89b6e2019-05-03 15:54:41 -0500194 csharp/src/Google.Protobuf/IExtendableMessage.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100195 csharp/src/Google.Protobuf/IMessage.cs \
Jon Skeet0fb39c42015-11-04 11:49:15 +0000196 csharp/src/Google.Protobuf/InvalidJsonException.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100197 csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \
198 csharp/src/Google.Protobuf/JsonFormatter.cs \
Jon Skeetfb248822015-09-04 12:41:14 +0100199 csharp/src/Google.Protobuf/JsonParser.cs \
200 csharp/src/Google.Protobuf/JsonToken.cs \
201 csharp/src/Google.Protobuf/JsonTokenizer.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100202 csharp/src/Google.Protobuf/LimitedInputStream.cs \
203 csharp/src/Google.Protobuf/MessageExtensions.cs \
204 csharp/src/Google.Protobuf/MessageParser.cs \
Sydney Acksman9e89b6e2019-05-03 15:54:41 -0500205 csharp/src/Google.Protobuf/ObjectIntPair.cs \
Jan Tattermuscheac2a6a2020-04-22 11:18:16 +0200206 csharp/src/Google.Protobuf/ParseContext.cs \
207 csharp/src/Google.Protobuf/ParserInternalState.cs \
208 csharp/src/Google.Protobuf/ParsingPrimitives.cs \
209 csharp/src/Google.Protobuf/ParsingPrimitivesMessages.cs \
210 csharp/src/Google.Protobuf/ParsingPrimitivesWrappers.cs \
Jon Skeet7762f162016-02-04 06:51:54 +0000211 csharp/src/Google.Protobuf/ProtoPreconditions.cs \
Jan Tattermuscheac2a6a2020-04-22 11:18:16 +0200212 csharp/src/Google.Protobuf/SegmentedBufferHelper.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100213 csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \
Jon Skeet047575f2017-01-16 11:23:32 +0000214 csharp/src/Google.Protobuf/Reflection/CustomOptions.cs \
Jon Skeet284bb452015-11-05 09:13:53 +0000215 csharp/src/Google.Protobuf/Reflection/Descriptor.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100216 csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \
Jon Skeet0b314d72018-09-19 09:21:27 +0100217 csharp/src/Google.Protobuf/Reflection/DescriptorDeclaration.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100218 csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100219 csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \
220 csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \
221 csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \
222 csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \
Sydney Acksman9e89b6e2019-05-03 15:54:41 -0500223 csharp/src/Google.Protobuf/Reflection/ExtensionAccessor.cs \
224 csharp/src/Google.Protobuf/Reflection/ExtensionCollection.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100225 csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100226 csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \
227 csharp/src/Google.Protobuf/Reflection/FieldType.cs \
228 csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \
Jon Skeeta3ea9d12016-02-04 07:05:49 +0000229 csharp/src/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100230 csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \
231 csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \
232 csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \
233 csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \
234 csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \
235 csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \
236 csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \
Jon Skeet75626ed2016-04-08 12:19:10 +0100237 csharp/src/Google.Protobuf/Reflection/OriginalNameAttribute.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100238 csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100239 csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \
240 csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \
241 csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \
242 csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \
Feng Xiaob7610f12015-12-22 14:36:04 -0800243 csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100244 csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \
Jon Skeete50461d2015-09-04 11:22:34 +0100245 csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100246 csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \
247 csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700248 csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100249 csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \
250 csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \
Feng Xiao60cb0942016-07-19 16:15:42 -0700251 csharp/src/Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100252 csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \
253 csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700254 csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100255 csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \
Feng Xiao99e18682015-08-26 20:19:05 -0700256 csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100257 csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \
Feng Xiaob7610f12015-12-22 14:36:04 -0800258 csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs \
Jon Skeet86cf61d2015-07-17 10:14:29 +0100259 csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \
Feng Xiaob7610f12015-12-22 14:36:04 -0800260 csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs \
Jie Luobfd254e2017-12-13 13:48:58 -0800261 csharp/src/Google.Protobuf/WireFormat.cs \
262 csharp/src/Google.Protobuf/UnknownField.cs \
263 csharp/src/Google.Protobuf/UnknownFieldSet.cs
Bo Yang99072862015-05-25 17:06:18 -0700264
Feng Xiaoea956762016-01-14 14:29:51 -0800265java_EXTRA_DIST= \
266 java/README.md \
Adam Cozzettecf900532018-11-13 09:50:41 -0800267 java/bom/pom.xml \
Yannicf0cb9cd2020-02-13 22:04:14 +0100268 java/core/BUILD \
Feng Xiaoea956762016-01-14 14:29:51 -0800269 java/core/generate-sources-build.xml \
270 java/core/generate-test-sources-build.xml \
271 java/core/pom.xml \
272 java/core/src/main/java/com/google/protobuf/AbstractMessage.java \
273 java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java \
274 java/core/src/main/java/com/google/protobuf/AbstractParser.java \
275 java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700276 java/core/src/main/java/com/google/protobuf/AllocatedBuffer.java \
Adam Cozzette5d647e12017-12-01 10:59:52 -0800277 java/core/src/main/java/com/google/protobuf/Android.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700278 java/core/src/main/java/com/google/protobuf/ArrayDecoders.java \
279 java/core/src/main/java/com/google/protobuf/BinaryReader.java \
280 java/core/src/main/java/com/google/protobuf/BinaryWriter.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800281 java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
282 java/core/src/main/java/com/google/protobuf/BlockingService.java \
283 java/core/src/main/java/com/google/protobuf/BooleanArrayList.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700284 java/core/src/main/java/com/google/protobuf/BufferAllocator.java \
Jisi Liu3b3c8ab2016-03-30 11:39:59 -0700285 java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java \
286 java/core/src/main/java/com/google/protobuf/ByteOutput.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800287 java/core/src/main/java/com/google/protobuf/ByteString.java \
288 java/core/src/main/java/com/google/protobuf/CodedInputStream.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700289 java/core/src/main/java/com/google/protobuf/CodedInputStreamReader.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800290 java/core/src/main/java/com/google/protobuf/CodedOutputStream.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700291 java/core/src/main/java/com/google/protobuf/CodedOutputStreamWriter.java \
292 java/core/src/main/java/com/google/protobuf/DescriptorMessageInfoFactory.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800293 java/core/src/main/java/com/google/protobuf/Descriptors.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700294 java/core/src/main/java/com/google/protobuf/DiscardUnknownFieldsParser.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800295 java/core/src/main/java/com/google/protobuf/DoubleArrayList.java \
296 java/core/src/main/java/com/google/protobuf/DynamicMessage.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700297 java/core/src/main/java/com/google/protobuf/ExperimentalApi.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800298 java/core/src/main/java/com/google/protobuf/Extension.java \
299 java/core/src/main/java/com/google/protobuf/ExtensionLite.java \
300 java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java \
Adam Cozzetted64a2d92016-06-29 15:23:27 -0700301 java/core/src/main/java/com/google/protobuf/ExtensionRegistryFactory.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800302 java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700303 java/core/src/main/java/com/google/protobuf/ExtensionSchema.java \
304 java/core/src/main/java/com/google/protobuf/ExtensionSchemaFull.java \
305 java/core/src/main/java/com/google/protobuf/ExtensionSchemaLite.java \
306 java/core/src/main/java/com/google/protobuf/ExtensionSchemas.java \
307 java/core/src/main/java/com/google/protobuf/FieldInfo.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800308 java/core/src/main/java/com/google/protobuf/FieldSet.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700309 java/core/src/main/java/com/google/protobuf/FieldType.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800310 java/core/src/main/java/com/google/protobuf/FloatArrayList.java \
311 java/core/src/main/java/com/google/protobuf/GeneratedMessage.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700312 java/core/src/main/java/com/google/protobuf/GeneratedMessageInfoFactory.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800313 java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700314 java/core/src/main/java/com/google/protobuf/GeneratedMessageV3.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800315 java/core/src/main/java/com/google/protobuf/IntArrayList.java \
316 java/core/src/main/java/com/google/protobuf/Internal.java \
317 java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
Adam Cozzette13fd0452017-09-12 10:32:01 -0700318 java/core/src/main/java/com/google/protobuf/IterableByteBufferInputStream.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700319 java/core/src/main/java/com/google/protobuf/JavaType.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800320 java/core/src/main/java/com/google/protobuf/LazyField.java \
321 java/core/src/main/java/com/google/protobuf/LazyFieldLite.java \
322 java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java \
323 java/core/src/main/java/com/google/protobuf/LazyStringList.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700324 java/core/src/main/java/com/google/protobuf/ListFieldSchema.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800325 java/core/src/main/java/com/google/protobuf/LongArrayList.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700326 java/core/src/main/java/com/google/protobuf/ManifestSchemaFactory.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800327 java/core/src/main/java/com/google/protobuf/MapEntry.java \
328 java/core/src/main/java/com/google/protobuf/MapEntryLite.java \
329 java/core/src/main/java/com/google/protobuf/MapField.java \
330 java/core/src/main/java/com/google/protobuf/MapFieldLite.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700331 java/core/src/main/java/com/google/protobuf/MapFieldSchema.java \
332 java/core/src/main/java/com/google/protobuf/MapFieldSchemaFull.java \
333 java/core/src/main/java/com/google/protobuf/MapFieldSchemaLite.java \
334 java/core/src/main/java/com/google/protobuf/MapFieldSchemas.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800335 java/core/src/main/java/com/google/protobuf/Message.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700336 java/core/src/main/java/com/google/protobuf/MessageInfo.java \
337 java/core/src/main/java/com/google/protobuf/MessageInfoFactory.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800338 java/core/src/main/java/com/google/protobuf/MessageLite.java \
339 java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
340 java/core/src/main/java/com/google/protobuf/MessageLiteToString.java \
341 java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java \
342 java/core/src/main/java/com/google/protobuf/MessageReflection.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700343 java/core/src/main/java/com/google/protobuf/MessageSchema.java \
344 java/core/src/main/java/com/google/protobuf/MessageSetSchema.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800345 java/core/src/main/java/com/google/protobuf/MutabilityOracle.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700346 java/core/src/main/java/com/google/protobuf/NewInstanceSchema.java \
347 java/core/src/main/java/com/google/protobuf/NewInstanceSchemaFull.java \
348 java/core/src/main/java/com/google/protobuf/NewInstanceSchemaLite.java \
349 java/core/src/main/java/com/google/protobuf/NewInstanceSchemas.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800350 java/core/src/main/java/com/google/protobuf/NioByteString.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700351 java/core/src/main/java/com/google/protobuf/OneofInfo.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800352 java/core/src/main/java/com/google/protobuf/Parser.java \
Feng Xiaod36c0c52017-03-29 14:32:48 -0700353 java/core/src/main/java/com/google/protobuf/PrimitiveNonBoxingCollection.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700354 java/core/src/main/java/com/google/protobuf/ProtoSyntax.java \
355 java/core/src/main/java/com/google/protobuf/Protobuf.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800356 java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700357 java/core/src/main/java/com/google/protobuf/ProtobufLists.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800358 java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
359 java/core/src/main/java/com/google/protobuf/ProtocolStringList.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700360 java/core/src/main/java/com/google/protobuf/RawMessageInfo.java \
361 java/core/src/main/java/com/google/protobuf/Reader.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800362 java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700363 java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800364 java/core/src/main/java/com/google/protobuf/RopeByteString.java \
365 java/core/src/main/java/com/google/protobuf/RpcCallback.java \
366 java/core/src/main/java/com/google/protobuf/RpcChannel.java \
367 java/core/src/main/java/com/google/protobuf/RpcController.java \
368 java/core/src/main/java/com/google/protobuf/RpcUtil.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700369 java/core/src/main/java/com/google/protobuf/Schema.java \
370 java/core/src/main/java/com/google/protobuf/SchemaFactory.java \
371 java/core/src/main/java/com/google/protobuf/SchemaUtil.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800372 java/core/src/main/java/com/google/protobuf/Service.java \
373 java/core/src/main/java/com/google/protobuf/ServiceException.java \
374 java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700375 java/core/src/main/java/com/google/protobuf/SingleFieldBuilderV3.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800376 java/core/src/main/java/com/google/protobuf/SmallSortedMap.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700377 java/core/src/main/java/com/google/protobuf/StructuralMessageInfo.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800378 java/core/src/main/java/com/google/protobuf/TextFormat.java \
379 java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java \
Jisi Liu3b3c8ab2016-03-30 11:39:59 -0700380 java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java \
381 java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java \
Paul Yang7bff8392019-07-19 14:49:01 -0700382 java/core/src/main/java/com/google/protobuf/TypeRegistry.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800383 java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700384 java/core/src/main/java/com/google/protobuf/UnknownFieldSchema.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800385 java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java \
386 java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700387 java/core/src/main/java/com/google/protobuf/UnknownFieldSetLiteSchema.java \
388 java/core/src/main/java/com/google/protobuf/UnknownFieldSetSchema.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800389 java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
Jisi Liu5221dcb2016-01-29 13:51:05 -0800390 java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700391 java/core/src/main/java/com/google/protobuf/UnsafeUtil.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800392 java/core/src/main/java/com/google/protobuf/Utf8.java \
393 java/core/src/main/java/com/google/protobuf/WireFormat.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700394 java/core/src/main/java/com/google/protobuf/Writer.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800395 java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700396 java/core/src/test/java/com/google/protobuf/AbstractProto2LiteSchemaTest.java \
397 java/core/src/test/java/com/google/protobuf/AbstractProto2SchemaTest.java \
398 java/core/src/test/java/com/google/protobuf/AbstractProto3LiteSchemaTest.java \
399 java/core/src/test/java/com/google/protobuf/AbstractProto3SchemaTest.java \
400 java/core/src/test/java/com/google/protobuf/AbstractSchemaTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800401 java/core/src/test/java/com/google/protobuf/AnyTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700402 java/core/src/test/java/com/google/protobuf/ArrayDecodersTest.java \
403 java/core/src/test/java/com/google/protobuf/BinaryProtocolTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800404 java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java \
405 java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
Jisi Liu3b3c8ab2016-03-30 11:39:59 -0700406 java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800407 java/core/src/test/java/com/google/protobuf/ByteStringTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700408 java/core/src/test/java/com/google/protobuf/CachedFieldSizeTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800409 java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700410 java/core/src/test/java/com/google/protobuf/CodedAdapterTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800411 java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
412 java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
Anuraag Agrawal3e944ae2017-10-31 15:12:11 +0900413 java/core/src/test/java/com/google/protobuf/DecodeUtf8Test.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800414 java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
415 java/core/src/test/java/com/google/protobuf/DescriptorsTest.java \
Jisi Liubf658c22017-07-19 14:32:22 -0700416 java/core/src/test/java/com/google/protobuf/DiscardUnknownFieldsTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800417 java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java \
418 java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java \
Jisi Liu3b3c8ab2016-03-30 11:39:59 -0700419 java/core/src/test/java/com/google/protobuf/EnumTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700420 java/core/src/test/java/com/google/protobuf/ExperimentalMessageFactory.java \
421 java/core/src/test/java/com/google/protobuf/ExperimentalSerializationUtil.java \
422 java/core/src/test/java/com/google/protobuf/ExperimentalTestDataProvider.java \
Adam Cozzetted64a2d92016-06-29 15:23:27 -0700423 java/core/src/test/java/com/google/protobuf/ExtensionRegistryFactoryTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800424 java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java \
425 java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java \
426 java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
427 java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
428 java/core/src/test/java/com/google/protobuf/IntArrayListTest.java \
429 java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
430 java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
431 java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
432 java/core/src/test/java/com/google/protobuf/LazyFieldTest.java \
433 java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
434 java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
435 java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
436 java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800437 java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
438 java/core/src/test/java/com/google/protobuf/LongArrayListTest.java \
439 java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
440 java/core/src/test/java/com/google/protobuf/MapForProto2Test.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700441 java/core/src/test/java/com/google/protobuf/MapLiteTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800442 java/core/src/test/java/com/google/protobuf/MapTest.java \
443 java/core/src/test/java/com/google/protobuf/MessageTest.java \
444 java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java \
445 java/core/src/test/java/com/google/protobuf/NioByteStringTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700446 java/core/src/test/java/com/google/protobuf/PackedFieldTest.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700447 java/core/src/test/java/com/google/protobuf/ParseExceptionsTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700448 java/core/src/test/java/com/google/protobuf/ParserLiteTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800449 java/core/src/test/java/com/google/protobuf/ParserTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700450 java/core/src/test/java/com/google/protobuf/Proto2ExtensionLookupSchemaTest.java \
451 java/core/src/test/java/com/google/protobuf/Proto2LiteSchemaTest.java \
452 java/core/src/test/java/com/google/protobuf/Proto2MessageFactory.java \
453 java/core/src/test/java/com/google/protobuf/Proto2MessageInfoFactory.java \
454 java/core/src/test/java/com/google/protobuf/Proto2MessageLiteFactory.java \
455 java/core/src/test/java/com/google/protobuf/Proto2SchemaTest.java \
456 java/core/src/test/java/com/google/protobuf/Proto2UnknownEnumValueTest.java \
457 java/core/src/test/java/com/google/protobuf/Proto3LiteSchemaTest.java \
458 java/core/src/test/java/com/google/protobuf/Proto3MessageFactory.java \
459 java/core/src/test/java/com/google/protobuf/Proto3MessageInfoFactory.java \
460 java/core/src/test/java/com/google/protobuf/Proto3MessageLiteFactory.java \
461 java/core/src/test/java/com/google/protobuf/Proto3MessageLiteInfoFactory.java \
462 java/core/src/test/java/com/google/protobuf/Proto3SchemaTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800463 java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700464 java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderV3Test.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800465 java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
466 java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java \
467 java/core/src/test/java/com/google/protobuf/ServiceTest.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700468 java/core/src/test/java/com/google/protobuf/SingleFieldBuilderV3Test.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800469 java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
470 java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
Jisi Liu66c1dac2017-07-19 14:38:57 -0700471 java/core/src/test/java/com/google/protobuf/TestBadIdentifiersLite.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700472 java/core/src/test/java/com/google/protobuf/TestSchemas.java \
473 java/core/src/test/java/com/google/protobuf/TestSchemasLite.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800474 java/core/src/test/java/com/google/protobuf/TestUtil.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700475 java/core/src/test/java/com/google/protobuf/TestUtilLite.java \
Jisi Liu3b3c8ab2016-03-30 11:39:59 -0700476 java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java \
477 java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800478 java/core/src/test/java/com/google/protobuf/TextFormatTest.java \
Paul Yang7bff8392019-07-19 14:49:01 -0700479 java/core/src/test/java/com/google/protobuf/TypeRegistryTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800480 java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800481 java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
482 java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700483 java/core/src/test/java/com/google/protobuf/Utf8Test.java \
484 java/core/src/test/java/com/google/protobuf/Utf8Utils.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800485 java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700486 java/core/src/test/java/com/google/protobuf/WireFormatLiteTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800487 java/core/src/test/java/com/google/protobuf/WireFormatTest.java \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700488 java/core/src/test/java/com/google/protobuf/WrappersLiteOfMethodTest.java \
489 java/core/src/test/java/com/google/protobuf/WrappersOfMethodTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800490 java/core/src/test/proto/com/google/protobuf/any_test.proto \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700491 java/core/src/test/proto/com/google/protobuf/cached_field_size_test.proto \
Jisi Liudd69d5c2017-08-31 11:11:21 -0700492 java/core/src/test/proto/com/google/protobuf/deprecated_file.proto \
Feng Xiaoea956762016-01-14 14:29:51 -0800493 java/core/src/test/proto/com/google/protobuf/field_presence_test.proto \
494 java/core/src/test/proto/com/google/protobuf/lazy_fields_lite.proto \
495 java/core/src/test/proto/com/google/protobuf/lite_equals_and_hash.proto \
496 java/core/src/test/proto/com/google/protobuf/map_for_proto2_lite_test.proto \
497 java/core/src/test/proto/com/google/protobuf/map_for_proto2_test.proto \
498 java/core/src/test/proto/com/google/protobuf/map_initialization_order_test.proto \
Adam Cozzetteec57f512018-03-19 15:38:34 -0700499 java/core/src/test/proto/com/google/protobuf/map_lite_test.proto \
Feng Xiaoea956762016-01-14 14:29:51 -0800500 java/core/src/test/proto/com/google/protobuf/map_test.proto \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700501 java/core/src/test/proto/com/google/protobuf/message_lite_extension_util_test.proto\
Feng Xiaoea956762016-01-14 14:29:51 -0800502 java/core/src/test/proto/com/google/protobuf/multiple_files_test.proto \
503 java/core/src/test/proto/com/google/protobuf/nested_builders_test.proto \
504 java/core/src/test/proto/com/google/protobuf/nested_extension.proto \
505 java/core/src/test/proto/com/google/protobuf/nested_extension_lite.proto \
506 java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto \
507 java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto \
508 java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto \
509 java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto \
510 java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700511 java/core/src/test/proto/com/google/protobuf/packed_field_test.proto \
512 java/core/src/test/proto/com/google/protobuf/proto2_message.proto \
513 java/core/src/test/proto/com/google/protobuf/proto2_message_lite.proto \
Hao Nguyend0f91c82019-03-06 12:39:12 -0800514 java/core/src/test/proto/com/google/protobuf/proto2_unknown_enum_values.proto \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700515 java/core/src/test/proto/com/google/protobuf/proto3_message.proto \
516 java/core/src/test/proto/com/google/protobuf/proto3_message_lite.proto \
Feng Xiaoea956762016-01-14 14:29:51 -0800517 java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto \
518 java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto \
519 java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto \
520 java/core/src/test/proto/com/google/protobuf/test_custom_options.proto \
521 java/core/src/test/proto/com/google/protobuf/test_extra_interfaces.proto \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700522 java/core/src/test/proto/com/google/protobuf/wrappers_test.proto \
Feng Xiaoa29e2bf2018-04-17 15:44:55 -0700523 java/lite.md \
Yannicf0cb9cd2020-02-13 22:04:14 +0100524 java/lite/BUILD \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700525 java/lite/generate-sources-build.xml \
526 java/lite/generate-test-sources-build.xml \
527 java/lite/lite.awk \
528 java/lite/pom.xml \
529 java/lite/process-lite-sources-build.xml \
530 java/lite/src/test/java/com/google/protobuf/LiteTest.java \
531 java/lite/src/test/java/com/google/protobuf/Proto2MessageLiteInfoFactory.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800532 java/pom.xml \
Yannicf0cb9cd2020-02-13 22:04:14 +0100533 java/util/BUILD \
Feng Xiaoea956762016-01-14 14:29:51 -0800534 java/util/pom.xml \
Feng Xiao60cb0942016-07-19 16:15:42 -0700535 java/util/src/main/java/com/google/protobuf/util/Durations.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800536 java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java \
537 java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java \
538 java/util/src/main/java/com/google/protobuf/util/JsonFormat.java \
539 java/util/src/main/java/com/google/protobuf/util/TimeUtil.java \
Hao Nguyen0a677882019-05-31 06:26:08 -0700540 java/util/src/main/java/com/google/protobuf/util/Structs.java \
Feng Xiao60cb0942016-07-19 16:15:42 -0700541 java/util/src/main/java/com/google/protobuf/util/Timestamps.java \
Hao Nguyen0a677882019-05-31 06:26:08 -0700542 java/util/src/main/java/com/google/protobuf/util/Values.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800543 java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java \
544 java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java \
545 java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java \
Hao Nguyen0a677882019-05-31 06:26:08 -0700546 java/util/src/test/java/com/google/protobuf/util/StructsTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800547 java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java \
Hao Nguyen0a677882019-05-31 06:26:08 -0700548 java/util/src/test/java/com/google/protobuf/util/ValuesTest.java \
Feng Xiaoea956762016-01-14 14:29:51 -0800549 java/util/src/test/proto/com/google/protobuf/util/json_test.proto
Feng Xiao8f7dec82014-12-02 14:15:26 -0800550
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400551objectivec_EXTRA_DIST= \
Dave MacLachlanab48ecf2020-01-20 13:47:20 -0800552 objectivec/.clang-format \
Thomas Van Lenten1dcc3292015-05-21 17:14:52 -0400553 objectivec/DevTools/check_version_stamps.sh \
Feng Xiao99e18682015-08-26 20:19:05 -0700554 objectivec/DevTools/compile_testing_protos.sh \
Bo Yang50a765b2015-05-25 12:48:03 -0700555 objectivec/DevTools/full_mac_build.sh \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400556 objectivec/DevTools/pddm.py \
557 objectivec/DevTools/pddm_tests.py \
Thomas Van Lenten79a23c42016-03-17 10:04:21 -0400558 objectivec/generate_well_known_types.sh \
TeBoringeef79f32015-05-25 13:08:09 -0700559 objectivec/google/protobuf/Any.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700560 objectivec/google/protobuf/Api.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700561 objectivec/google/protobuf/Duration.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700562 objectivec/google/protobuf/Empty.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700563 objectivec/google/protobuf/FieldMask.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700564 objectivec/google/protobuf/SourceContext.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700565 objectivec/google/protobuf/Struct.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700566 objectivec/google/protobuf/Timestamp.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700567 objectivec/google/protobuf/Type.pbobjc.h \
TeBoringeef79f32015-05-25 13:08:09 -0700568 objectivec/google/protobuf/Wrappers.pbobjc.h \
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500569 objectivec/GPBAny.pbobjc.h \
570 objectivec/GPBAny.pbobjc.m \
571 objectivec/GPBApi.pbobjc.h \
572 objectivec/GPBApi.pbobjc.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400573 objectivec/GPBArray.h \
574 objectivec/GPBArray.m \
575 objectivec/GPBArray_PackagePrivate.h \
576 objectivec/GPBBootstrap.h \
577 objectivec/GPBCodedInputStream.h \
578 objectivec/GPBCodedInputStream.m \
579 objectivec/GPBCodedInputStream_PackagePrivate.h \
580 objectivec/GPBCodedOutputStream.h \
581 objectivec/GPBCodedOutputStream.m \
Thomas Van Lenten1bf4b382016-03-08 09:29:49 -0500582 objectivec/GPBCodedOutputStream_PackagePrivate.h \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400583 objectivec/GPBDescriptor.h \
584 objectivec/GPBDescriptor.m \
585 objectivec/GPBDescriptor_PackagePrivate.h \
586 objectivec/GPBDictionary.h \
587 objectivec/GPBDictionary.m \
588 objectivec/GPBDictionary_PackagePrivate.h \
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500589 objectivec/GPBDuration.pbobjc.h \
590 objectivec/GPBDuration.pbobjc.m \
591 objectivec/GPBEmpty.pbobjc.h \
592 objectivec/GPBEmpty.pbobjc.m \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400593 objectivec/GPBExtensionInternals.h \
594 objectivec/GPBExtensionInternals.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400595 objectivec/GPBExtensionRegistry.h \
596 objectivec/GPBExtensionRegistry.m \
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500597 objectivec/GPBFieldMask.pbobjc.h \
598 objectivec/GPBFieldMask.pbobjc.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400599 objectivec/GPBMessage.h \
600 objectivec/GPBMessage.m \
601 objectivec/GPBMessage_PackagePrivate.h \
602 objectivec/GPBProtocolBuffers.h \
603 objectivec/GPBProtocolBuffers.m \
604 objectivec/GPBProtocolBuffers_RuntimeSupport.h \
605 objectivec/GPBRootObject.h \
606 objectivec/GPBRootObject.m \
607 objectivec/GPBRootObject_PackagePrivate.h \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400608 objectivec/GPBRuntimeTypes.h \
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500609 objectivec/GPBSourceContext.pbobjc.h \
610 objectivec/GPBSourceContext.pbobjc.m \
611 objectivec/GPBStruct.pbobjc.h \
612 objectivec/GPBStruct.pbobjc.m \
613 objectivec/GPBTimestamp.pbobjc.h \
614 objectivec/GPBTimestamp.pbobjc.m \
615 objectivec/GPBType.pbobjc.h \
616 objectivec/GPBType.pbobjc.m \
Thomas Van Lentend846b0b2015-06-08 16:24:57 -0400617 objectivec/GPBUnknownField.h \
618 objectivec/GPBUnknownField.m \
619 objectivec/GPBUnknownField_PackagePrivate.h \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400620 objectivec/GPBUnknownFieldSet.h \
621 objectivec/GPBUnknownFieldSet.m \
622 objectivec/GPBUnknownFieldSet_PackagePrivate.h \
623 objectivec/GPBUtilities.h \
624 objectivec/GPBUtilities.m \
625 objectivec/GPBUtilities_PackagePrivate.h \
626 objectivec/GPBWellKnownTypes.h \
627 objectivec/GPBWellKnownTypes.m \
628 objectivec/GPBWireFormat.h \
629 objectivec/GPBWireFormat.m \
Thomas Van Lenten56c48ae2020-01-22 15:50:52 -0500630 objectivec/GPBWrappers.pbobjc.h \
631 objectivec/GPBWrappers.pbobjc.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400632 objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \
633 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
Thomas Van Lentendce82292018-04-06 10:41:28 -0400634 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400635 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400636 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
637 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
638 objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \
639 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
Thomas Van Lentendce82292018-04-06 10:41:28 -0400640 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400641 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
642 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
643 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
Thomas Van Lentenbd006712019-01-07 16:42:22 -0500644 objectivec/ProtocolBuffers_tvOS.xcodeproj/project.pbxproj \
645 objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
646 objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
647 objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
648 objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
649 objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
Bo Yang50a765b2015-05-25 12:48:03 -0700650 objectivec/README.md \
Feng Xiao60cb0942016-07-19 16:15:42 -0700651 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.pbxproj \
652 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
653 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/OSXCocoaPodsTester.xcscheme \
654 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.h \
655 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.m \
656 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \
657 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Base.lproj/MainMenu.xib \
658 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Info.plist \
659 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/main.m \
660 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-framework \
661 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-static \
662 objectivec/Tests/CocoaPods/README.md \
663 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-framework \
664 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-static \
665 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.pbxproj \
666 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
667 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/iOSCocoaPodsTester.xcscheme \
668 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.h \
669 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.m \
670 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \
671 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/LaunchScreen.storyboard \
672 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/Main.storyboard \
673 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Info.plist \
674 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.h \
675 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.m \
676 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/main.m \
677 objectivec/Tests/CocoaPods/run_tests.sh \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400678 objectivec/Tests/golden_message \
679 objectivec/Tests/golden_packed_fields_message \
680 objectivec/Tests/GPBARCUnittestProtos.m \
681 objectivec/Tests/GPBArrayTests.m \
682 objectivec/Tests/GPBCodedInputStreamTests.m \
683 objectivec/Tests/GPBCodedOuputStreamTests.m \
Thomas Van Lentene998b8f2018-03-28 12:27:15 -0400684 objectivec/Tests/GPBCompileTest01.m \
685 objectivec/Tests/GPBCompileTest02.m \
686 objectivec/Tests/GPBCompileTest03.m \
687 objectivec/Tests/GPBCompileTest04.m \
688 objectivec/Tests/GPBCompileTest05.m \
689 objectivec/Tests/GPBCompileTest06.m \
690 objectivec/Tests/GPBCompileTest07.m \
691 objectivec/Tests/GPBCompileTest08.m \
692 objectivec/Tests/GPBCompileTest09.m \
693 objectivec/Tests/GPBCompileTest10.m \
694 objectivec/Tests/GPBCompileTest11.m \
695 objectivec/Tests/GPBCompileTest12.m \
696 objectivec/Tests/GPBCompileTest13.m \
697 objectivec/Tests/GPBCompileTest14.m \
698 objectivec/Tests/GPBCompileTest15.m \
699 objectivec/Tests/GPBCompileTest16.m \
700 objectivec/Tests/GPBCompileTest17.m \
701 objectivec/Tests/GPBCompileTest18.m \
702 objectivec/Tests/GPBCompileTest19.m \
703 objectivec/Tests/GPBCompileTest20.m \
704 objectivec/Tests/GPBCompileTest21.m \
705 objectivec/Tests/GPBCompileTest22.m \
706 objectivec/Tests/GPBCompileTest23.m \
707 objectivec/Tests/GPBCompileTest24.m \
708 objectivec/Tests/GPBCompileTest25.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400709 objectivec/Tests/GPBConcurrencyTests.m \
710 objectivec/Tests/GPBDescriptorTests.m \
711 objectivec/Tests/GPBDictionaryTests+Bool.m \
712 objectivec/Tests/GPBDictionaryTests+Int32.m \
713 objectivec/Tests/GPBDictionaryTests+Int64.m \
714 objectivec/Tests/GPBDictionaryTests+String.m \
715 objectivec/Tests/GPBDictionaryTests+UInt32.m \
716 objectivec/Tests/GPBDictionaryTests+UInt64.m \
Thomas Van Lenten988ffe02017-01-04 15:03:42 -0500717 objectivec/Tests/GPBDictionaryTests.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400718 objectivec/Tests/GPBDictionaryTests.pddm \
Thomas Van Lenten49e4ba62017-05-17 13:38:51 -0400719 objectivec/Tests/GPBExtensionRegistryTest.m \
Dave MacLachlan74956e12019-12-17 17:32:09 -0800720 objectivec/Tests/GPBMessageTests+ClassNames.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400721 objectivec/Tests/GPBMessageTests+Merge.m \
722 objectivec/Tests/GPBMessageTests+Runtime.m \
723 objectivec/Tests/GPBMessageTests+Serialization.m \
724 objectivec/Tests/GPBMessageTests.m \
Thomas Van Lentenad2d5c92015-09-30 13:34:16 -0400725 objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400726 objectivec/Tests/GPBPerfTests.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400727 objectivec/Tests/GPBSwiftTests.swift \
728 objectivec/Tests/GPBTestUtilities.h \
729 objectivec/Tests/GPBTestUtilities.m \
730 objectivec/Tests/GPBUnittestProtos.m \
Thomas Van Lenten13a41242016-09-01 11:45:50 -0400731 objectivec/Tests/GPBUnittestProtos2.m \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400732 objectivec/Tests/GPBUnknownFieldSetTest.m \
733 objectivec/Tests/GPBUtilitiesTests.m \
734 objectivec/Tests/GPBWellKnownTypesTest.m \
735 objectivec/Tests/GPBWireFormatTests.m \
Thomas Van Lenten92a879b2018-11-14 16:12:30 -0500736 objectivec/Tests/text_format_extensions_unittest_data.txt \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400737 objectivec/Tests/text_format_map_unittest_data.txt \
738 objectivec/Tests/text_format_unittest_data.txt \
739 objectivec/Tests/unittest_cycle.proto \
Thomas Van Lentendad775b2016-12-08 10:14:11 -0500740 objectivec/Tests/unittest_deprecated.proto \
741 objectivec/Tests/unittest_deprecated_file.proto \
Thomas Van Lenten13a41242016-09-01 11:45:50 -0400742 objectivec/Tests/unittest_extension_chain_a.proto \
743 objectivec/Tests/unittest_extension_chain_b.proto \
744 objectivec/Tests/unittest_extension_chain_c.proto \
745 objectivec/Tests/unittest_extension_chain_d.proto \
746 objectivec/Tests/unittest_extension_chain_e.proto \
747 objectivec/Tests/unittest_extension_chain_f.proto \
748 objectivec/Tests/unittest_extension_chain_g.proto \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400749 objectivec/Tests/unittest_objc.proto \
Dave MacLachlanef3a7252018-11-21 15:17:21 -0800750 objectivec/Tests/unittest_objc_options.proto \
Bo Yang1c81d0f2015-08-26 18:15:39 -0700751 objectivec/Tests/unittest_objc_startup.proto \
Thomas Van Lenten30650d82015-05-01 08:57:16 -0400752 objectivec/Tests/unittest_runtime_proto2.proto \
753 objectivec/Tests/unittest_runtime_proto3.proto \
754 objectivec/Tests/UnitTests-Bridging-Header.h \
Jorge Canizales46b0a652015-05-14 22:38:52 -0700755 objectivec/Tests/UnitTests-Info.plist \
756 Protobuf.podspec
Jisi Liuff35de32015-02-21 14:58:02 -0800757
Paul Yang46ae90d2016-12-08 11:16:49 -0800758php_EXTRA_DIST= \
Paul Yang77f64bb2017-10-05 21:03:57 -0700759 composer.json \
760 php/README.md \
761 php/composer.json \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700762 php/ext/google/protobuf/array.c \
Joshua Habermanf5e8ee42019-03-06 12:04:17 -0800763 php/ext/google/protobuf/builtin_descriptors.inc \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700764 php/ext/google/protobuf/config.m4 \
Paul Yang77f64bb2017-10-05 21:03:57 -0700765 php/ext/google/protobuf/def.c \
766 php/ext/google/protobuf/encode_decode.c \
767 php/ext/google/protobuf/map.c \
768 php/ext/google/protobuf/message.c \
769 php/ext/google/protobuf/package.xml \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700770 php/ext/google/protobuf/protobuf.c \
Paul Yang77f64bb2017-10-05 21:03:57 -0700771 php/ext/google/protobuf/protobuf.h \
772 php/ext/google/protobuf/storage.c \
773 php/ext/google/protobuf/type_check.c \
774 php/ext/google/protobuf/upb.c \
775 php/ext/google/protobuf/upb.h \
776 php/ext/google/protobuf/utf8.c \
777 php/ext/google/protobuf/utf8.h \
778 php/generate_descriptor_protos.sh \
779 php/phpunit.xml \
Paul Yang582743b2019-02-28 12:55:14 -0800780 php/release.sh \
Paul Yang77f64bb2017-10-05 21:03:57 -0700781 php/src/GPBMetadata/Google/Protobuf/Any.php \
782 php/src/GPBMetadata/Google/Protobuf/Api.php \
783 php/src/GPBMetadata/Google/Protobuf/Duration.php \
784 php/src/GPBMetadata/Google/Protobuf/FieldMask.php \
785 php/src/GPBMetadata/Google/Protobuf/GPBEmpty.php \
786 php/src/GPBMetadata/Google/Protobuf/Internal/Descriptor.php \
787 php/src/GPBMetadata/Google/Protobuf/SourceContext.php \
788 php/src/GPBMetadata/Google/Protobuf/Struct.php \
789 php/src/GPBMetadata/Google/Protobuf/Timestamp.php \
790 php/src/GPBMetadata/Google/Protobuf/Type.php \
791 php/src/GPBMetadata/Google/Protobuf/Wrappers.php \
Paul Yangc7457ef2017-08-25 08:49:34 -0700792 php/src/Google/Protobuf/Any.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700793 php/src/Google/Protobuf/Api.php \
794 php/src/Google/Protobuf/BoolValue.php \
795 php/src/Google/Protobuf/BytesValue.php \
michaelbausor21b0e552017-08-04 16:35:22 -0700796 php/src/Google/Protobuf/Descriptor.php \
797 php/src/Google/Protobuf/DescriptorPool.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700798 php/src/Google/Protobuf/DoubleValue.php \
Paul Yang7f8b91f2017-09-05 14:10:32 -0700799 php/src/Google/Protobuf/Duration.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700800 php/src/Google/Protobuf/Enum.php \
michaelbausor21b0e552017-08-04 16:35:22 -0700801 php/src/Google/Protobuf/EnumDescriptor.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700802 php/src/Google/Protobuf/EnumValue.php \
michaelbausor21b0e552017-08-04 16:35:22 -0700803 php/src/Google/Protobuf/EnumValueDescriptor.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700804 php/src/Google/Protobuf/Field.php \
michaelbausor21b0e552017-08-04 16:35:22 -0700805 php/src/Google/Protobuf/FieldDescriptor.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700806 php/src/Google/Protobuf/FieldMask.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700807 php/src/Google/Protobuf/Field/Cardinality.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700808 php/src/Google/Protobuf/Field_Cardinality.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700809 php/src/Google/Protobuf/Field/Kind.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700810 php/src/Google/Protobuf/Field_Kind.php \
811 php/src/Google/Protobuf/FloatValue.php \
812 php/src/Google/Protobuf/GPBEmpty.php \
813 php/src/Google/Protobuf/Int32Value.php \
814 php/src/Google/Protobuf/Int64Value.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700815 php/src/Google/Protobuf/Internal/CodedInputStream.php \
816 php/src/Google/Protobuf/Internal/CodedOutputStream.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700817 php/src/Google/Protobuf/Internal/Descriptor.php \
Paul Yang46ae90d2016-12-08 11:16:49 -0800818 php/src/Google/Protobuf/Internal/DescriptorPool.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700819 php/src/Google/Protobuf/Internal/DescriptorProto.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700820 php/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php \
821 php/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700822 php/src/Google/Protobuf/Internal/EnumBuilderContext.php \
Brent Shafferb9b34e92017-06-14 15:57:11 -0700823 php/src/Google/Protobuf/Internal/EnumDescriptor.php \
Paul Yang46ae90d2016-12-08 11:16:49 -0800824 php/src/Google/Protobuf/Internal/EnumDescriptorProto.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700825 php/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700826 php/src/Google/Protobuf/Internal/EnumOptions.php \
827 php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700828 php/src/Google/Protobuf/Internal/EnumValueOptions.php \
Paul Yang28074362017-08-30 16:50:07 -0700829 php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700830 php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \
831 php/src/Google/Protobuf/Internal/FieldDescriptor.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700832 php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700833 php/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php \
834 php/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700835 php/src/Google/Protobuf/Internal/FieldOptions.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700836 php/src/Google/Protobuf/Internal/FieldOptions/CType.php \
837 php/src/Google/Protobuf/Internal/FieldOptions/JSType.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700838 php/src/Google/Protobuf/Internal/FileDescriptor.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700839 php/src/Google/Protobuf/Internal/FileDescriptorProto.php \
840 php/src/Google/Protobuf/Internal/FileDescriptorSet.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700841 php/src/Google/Protobuf/Internal/FileOptions.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700842 php/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700843 php/src/Google/Protobuf/Internal/GPBDecodeException.php \
844 php/src/Google/Protobuf/Internal/GPBJsonWire.php \
845 php/src/Google/Protobuf/Internal/GPBLabel.php \
846 php/src/Google/Protobuf/Internal/GPBType.php \
847 php/src/Google/Protobuf/Internal/GPBUtil.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700848 php/src/Google/Protobuf/Internal/GPBWire.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700849 php/src/Google/Protobuf/Internal/GPBWireType.php \
850 php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700851 php/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700852 php/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php \
michaelbausor21b0e552017-08-04 16:35:22 -0700853 php/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700854 php/src/Google/Protobuf/Internal/MapEntry.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700855 php/src/Google/Protobuf/Internal/MapField.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700856 php/src/Google/Protobuf/Internal/MapFieldIter.php \
857 php/src/Google/Protobuf/Internal/Message.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700858 php/src/Google/Protobuf/Internal/MessageBuilderContext.php \
859 php/src/Google/Protobuf/Internal/MessageOptions.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700860 php/src/Google/Protobuf/Internal/MethodDescriptorProto.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700861 php/src/Google/Protobuf/Internal/MethodOptions.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700862 php/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700863 php/src/Google/Protobuf/Internal/OneofDescriptor.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700864 php/src/Google/Protobuf/Internal/OneofDescriptorProto.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700865 php/src/Google/Protobuf/Internal/OneofField.php \
866 php/src/Google/Protobuf/Internal/OneofOptions.php \
867 php/src/Google/Protobuf/Internal/RawInputStream.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700868 php/src/Google/Protobuf/Internal/RepeatedField.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700869 php/src/Google/Protobuf/Internal/RepeatedFieldIter.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700870 php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php \
871 php/src/Google/Protobuf/Internal/ServiceOptions.php \
Paul Yang46ae90d2016-12-08 11:16:49 -0800872 php/src/Google/Protobuf/Internal/SourceCodeInfo.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700873 php/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700874 php/src/Google/Protobuf/Internal/UninterpretedOption.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700875 php/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php \
Feng Xiaoacd5b052018-08-09 21:21:01 -0700876 php/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php \
877 php/src/Google/Protobuf/Internal/DescriptorProto_ReservedRange.php \
878 php/src/Google/Protobuf/Internal/EnumDescriptorProto_EnumReservedRange.php \
879 php/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php \
880 php/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php \
881 php/src/Google/Protobuf/Internal/FieldOptions_CType.php \
882 php/src/Google/Protobuf/Internal/FieldOptions_JSType.php \
883 php/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.php \
884 php/src/Google/Protobuf/Internal/GeneratedCodeInfo_Annotation.php \
885 php/src/Google/Protobuf/Internal/MethodOptions_IdempotencyLevel.php \
886 php/src/Google/Protobuf/Internal/SourceCodeInfo_Location.php \
887 php/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php \
Paul Yang77f64bb2017-10-05 21:03:57 -0700888 php/src/Google/Protobuf/ListValue.php \
889 php/src/Google/Protobuf/Method.php \
890 php/src/Google/Protobuf/Mixin.php \
891 php/src/Google/Protobuf/NullValue.php \
892 php/src/Google/Protobuf/OneofDescriptor.php \
893 php/src/Google/Protobuf/Option.php \
894 php/src/Google/Protobuf/SourceContext.php \
895 php/src/Google/Protobuf/StringValue.php \
896 php/src/Google/Protobuf/Struct.php \
897 php/src/Google/Protobuf/Syntax.php \
898 php/src/Google/Protobuf/Timestamp.php \
899 php/src/Google/Protobuf/Type.php \
900 php/src/Google/Protobuf/UInt32Value.php \
901 php/src/Google/Protobuf/UInt64Value.php \
902 php/src/Google/Protobuf/Value.php \
903 php/src/phpdoc.dist.xml \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700904 php/tests/array_test.php \
Paul Yang46ae90d2016-12-08 11:16:49 -0800905 php/tests/autoload.php \
Paul Yangae55fd22017-09-22 14:08:01 -0700906 php/tests/bootstrap_phpunit.php \
Paul Yang25abd7b2017-05-05 11:14:11 -0700907 php/tests/compatibility_test.sh \
David Supplee93533f72019-03-12 21:30:06 -0700908 php/tests/compile_extension.sh \
Paul Yangc15a3262017-08-02 07:42:27 -0700909 php/tests/descriptors_test.php \
Paul Yang46ae90d2016-12-08 11:16:49 -0800910 php/tests/encode_decode_test.php \
Paul Yang46ae90d2016-12-08 11:16:49 -0800911 php/tests/gdb_test.sh \
912 php/tests/generated_class_test.php \
Brent Shaffer12acbc22017-06-27 16:28:28 -0700913 php/tests/generated_phpdoc_test.php \
Matt A9e745f72017-07-18 10:45:18 -0400914 php/tests/generated_service_test.php \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700915 php/tests/map_field_test.php \
916 php/tests/memory_leak_test.php \
Paul Yangfe1790c2019-12-12 13:59:51 -0800917 php/tests/multirequest.php \
918 php/tests/multirequest.sh \
Paul Yang46ae90d2016-12-08 11:16:49 -0800919 php/tests/php_implementation_test.php \
Brent Shaffer67379542018-05-23 16:43:30 -0700920 php/tests/proto/empty/echo.proto \
Paul Yang77f64bb2017-10-05 21:03:57 -0700921 php/tests/proto/test.proto \
Paul Yangc15a3262017-08-02 07:42:27 -0700922 php/tests/proto/test_descriptors.proto \
Paul Yang6f325802017-06-05 00:10:18 -0700923 php/tests/proto/test_empty_php_namespace.proto \
Paul Yang4523c9c2017-04-20 16:55:56 -0700924 php/tests/proto/test_import_descriptor_proto.proto \
Paul Yang46ae90d2016-12-08 11:16:49 -0800925 php/tests/proto/test_include.proto \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700926 php/tests/proto/test_no_namespace.proto \
Paul Yang6f325802017-06-05 00:10:18 -0700927 php/tests/proto/test_php_namespace.proto \
928 php/tests/proto/test_prefix.proto \
Bo Yange5d000c2017-09-08 15:11:49 -0700929 php/tests/proto/test_reserved_enum_lower.proto \
930 php/tests/proto/test_reserved_enum_upper.proto \
Bo Yangf46a01d2017-09-12 15:04:34 -0700931 php/tests/proto/test_reserved_enum_value_lower.proto \
932 php/tests/proto/test_reserved_enum_value_upper.proto \
Bo Yange5d000c2017-09-08 15:11:49 -0700933 php/tests/proto/test_reserved_message_lower.proto \
934 php/tests/proto/test_reserved_message_upper.proto \
Matt A9e745f72017-07-18 10:45:18 -0400935 php/tests/proto/test_service.proto \
936 php/tests/proto/test_service_namespace.proto \
michaelbausor6a51c032018-10-07 16:56:41 -0700937 php/tests/proto/test_wrapper_type_setters.proto \
Paul Yang6b27c1f2017-03-17 11:08:06 -0700938 php/tests/test.sh \
939 php/tests/test_base.php \
940 php/tests/test_util.php \
Paul Yangecca6ea2017-06-30 12:14:09 -0700941 php/tests/undefined_test.php \
michaelbausor6a51c032018-10-07 16:56:41 -0700942 php/tests/well_known_test.php \
943 php/tests/wrapper_type_setters_test.php
Bo Yange0a6e522016-09-23 18:37:37 -0700944
Feng Xiao8f7dec82014-12-02 14:15:26 -0800945python_EXTRA_DIST= \
Bo Yang51de7a72015-05-25 22:21:05 -0700946 python/MANIFEST.in \
Feng Xiao1c10aca2015-12-11 17:55:27 -0800947 python/google/__init__.py \
948 python/google/protobuf/__init__.py \
Thomas Hisch451e0442018-04-09 21:43:10 +0200949 python/google/protobuf/compiler/__init__.py \
Feng Xiao1c10aca2015-12-11 17:55:27 -0800950 python/google/protobuf/descriptor.py \
951 python/google/protobuf/descriptor_database.py \
952 python/google/protobuf/descriptor_pool.py \
953 python/google/protobuf/internal/__init__.py \
954 python/google/protobuf/internal/_parameterized.py \
955 python/google/protobuf/internal/any_test.proto \
Feng Xiaoe841bac2015-12-11 17:09:20 -0800956 python/google/protobuf/internal/any_test.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000957 python/google/protobuf/internal/api_implementation.cc \
958 python/google/protobuf/internal/api_implementation.py \
kenton@google.com26bd9ee2008-11-21 00:06:27 +0000959 python/google/protobuf/internal/containers.py \
temporal40ee5512008-07-10 02:12:20 +0000960 python/google/protobuf/internal/decoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000961 python/google/protobuf/internal/descriptor_database_test.py \
962 python/google/protobuf/internal/descriptor_pool_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000963 python/google/protobuf/internal/descriptor_pool_test1.proto \
964 python/google/protobuf/internal/descriptor_pool_test2.proto \
temporal40ee5512008-07-10 02:12:20 +0000965 python/google/protobuf/internal/descriptor_test.py \
966 python/google/protobuf/internal/encoder.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000967 python/google/protobuf/internal/enum_type_wrapper.py \
Yilun Chongd8c25012019-02-22 18:13:33 +0800968 python/google/protobuf/internal/extension_dict.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000969 python/google/protobuf/internal/factory_test1.proto \
970 python/google/protobuf/internal/factory_test2.proto \
Feng Xiao60cb0942016-07-19 16:15:42 -0700971 python/google/protobuf/internal/file_options_test.proto \
jieluo@google.combde4a322014-08-12 21:10:30 +0000972 python/google/protobuf/internal/generator_test.py \
Feng Xiao1c10aca2015-12-11 17:55:27 -0800973 python/google/protobuf/internal/import_test_package/__init__.py \
974 python/google/protobuf/internal/import_test_package/inner.proto \
975 python/google/protobuf/internal/import_test_package/outer.proto \
Jisi Liu46e8ff62015-10-05 11:59:43 -0700976 python/google/protobuf/internal/json_format_test.py \
Hao Nguyenef1e8e72019-04-09 06:48:01 -0700977 python/google/protobuf/internal/keywords_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000978 python/google/protobuf/internal/message_factory_test.py \
temporal40ee5512008-07-10 02:12:20 +0000979 python/google/protobuf/internal/message_listener.py \
Feng Xiaoa3312982015-08-26 20:20:42 -0700980 python/google/protobuf/internal/message_set_extensions.proto \
kenton@google.com80b1d622009-07-29 01:13:20 +0000981 python/google/protobuf/internal/message_test.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000982 python/google/protobuf/internal/missing_enum_values.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -0700983 python/google/protobuf/internal/more_extensions.proto \
Feng Xiao1c10aca2015-12-11 17:55:27 -0800984 python/google/protobuf/internal/more_extensions_dynamic.proto \
temporal40ee5512008-07-10 02:12:20 +0000985 python/google/protobuf/internal/more_messages.proto \
Adam Cozzette837c94b2018-03-14 13:01:55 -0700986 python/google/protobuf/internal/no_package.proto \
Feng Xiaoa3312982015-08-26 20:20:42 -0700987 python/google/protobuf/internal/packed_field_test.proto \
Feng Xiao6ef984a2014-11-10 17:34:54 -0800988 python/google/protobuf/internal/proto_builder_test.py \
liujisi@google.com33165fe2010-11-02 13:14:58 +0000989 python/google/protobuf/internal/python_message.py \
Jisi Liu66c1dac2017-07-19 14:38:57 -0700990 python/google/protobuf/internal/python_protobuf.cc \
temporal40ee5512008-07-10 02:12:20 +0000991 python/google/protobuf/internal/reflection_test.py \
992 python/google/protobuf/internal/service_reflection_test.py \
jieluo@google.com2d10b802014-08-13 23:17:39 +0000993 python/google/protobuf/internal/symbol_database_test.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +0000994 python/google/protobuf/internal/test_bad_identifiers.proto \
Joshua Habermanb7742c52020-04-08 10:30:17 -0700995 python/google/protobuf/internal/test_proto3_optional.proto \
temporal40ee5512008-07-10 02:12:20 +0000996 python/google/protobuf/internal/test_util.py \
Bo Yangfe1aaad2016-09-20 23:34:05 +0000997 python/google/protobuf/internal/testing_refleaks.py \
jieluo@google.combde4a322014-08-12 21:10:30 +0000998 python/google/protobuf/internal/text_encoding_test.py \
temporal40ee5512008-07-10 02:12:20 +0000999 python/google/protobuf/internal/text_format_test.py \
temporaldd681ad2008-08-18 22:55:31 +00001000 python/google/protobuf/internal/type_checkers.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +00001001 python/google/protobuf/internal/unknown_fields_test.py \
Feng Xiaoe841bac2015-12-11 17:09:20 -08001002 python/google/protobuf/internal/well_known_types.py \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001003 python/google/protobuf/internal/well_known_types.py \
1004 python/google/protobuf/internal/well_known_types_test.py \
Feng Xiaoe841bac2015-12-11 17:09:20 -08001005 python/google/protobuf/internal/well_known_types_test.py \
temporal40ee5512008-07-10 02:12:20 +00001006 python/google/protobuf/internal/wire_format.py \
1007 python/google/protobuf/internal/wire_format_test.py \
Jisi Liu46e8ff62015-10-05 11:59:43 -07001008 python/google/protobuf/json_format.py \
temporal40ee5512008-07-10 02:12:20 +00001009 python/google/protobuf/message.py \
xiaofeng@google.comcaa66db2012-12-04 18:44:24 +00001010 python/google/protobuf/message_factory.py \
Jisi Liu66c1dac2017-07-19 14:38:57 -07001011 python/google/protobuf/python_protobuf.h \
Thomas Colthurst7c651422018-05-29 18:26:11 -04001012 python/google/protobuf/proto_api.h \
Feng Xiao6ef984a2014-11-10 17:34:54 -08001013 python/google/protobuf/proto_builder.py \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001014 python/google/protobuf/pyext/README \
1015 python/google/protobuf/pyext/__init__.py \
1016 python/google/protobuf/pyext/cpp_message.py \
1017 python/google/protobuf/pyext/descriptor.cc \
1018 python/google/protobuf/pyext/descriptor.h \
1019 python/google/protobuf/pyext/descriptor_containers.cc \
1020 python/google/protobuf/pyext/descriptor_containers.h \
1021 python/google/protobuf/pyext/descriptor_database.cc \
1022 python/google/protobuf/pyext/descriptor_database.h \
1023 python/google/protobuf/pyext/descriptor_pool.cc \
1024 python/google/protobuf/pyext/descriptor_pool.h \
1025 python/google/protobuf/pyext/extension_dict.cc \
1026 python/google/protobuf/pyext/extension_dict.h \
1027 python/google/protobuf/pyext/map_container.cc \
1028 python/google/protobuf/pyext/map_container.h \
1029 python/google/protobuf/pyext/message.cc \
1030 python/google/protobuf/pyext/message.h \
Feng Xiaoacd5b052018-08-09 21:21:01 -07001031 python/google/protobuf/pyext/field.cc \
1032 python/google/protobuf/pyext/field.h \
1033 python/google/protobuf/pyext/unknown_fields.cc \
1034 python/google/protobuf/pyext/unknown_fields.h \
Bo Yangfe1aaad2016-09-20 23:34:05 +00001035 python/google/protobuf/pyext/message_factory.cc \
1036 python/google/protobuf/pyext/message_factory.h \
Feng Xiao60cb0942016-07-19 16:15:42 -07001037 python/google/protobuf/pyext/message_module.cc \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001038 python/google/protobuf/pyext/proto2_api_test.proto \
1039 python/google/protobuf/pyext/python.proto \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001040 python/google/protobuf/pyext/repeated_composite_container.cc \
1041 python/google/protobuf/pyext/repeated_composite_container.h \
1042 python/google/protobuf/pyext/repeated_scalar_container.cc \
1043 python/google/protobuf/pyext/repeated_scalar_container.h \
Feng Xiao599613e2016-11-18 15:36:28 -08001044 python/google/protobuf/pyext/safe_numerics.h \
Feng Xiao1c10aca2015-12-11 17:55:27 -08001045 python/google/protobuf/pyext/scoped_pyobject_ptr.h \
temporal40ee5512008-07-10 02:12:20 +00001046 python/google/protobuf/reflection.py \
1047 python/google/protobuf/service.py \
1048 python/google/protobuf/service_reflection.py \
jieluo@google.combde4a322014-08-12 21:10:30 +00001049 python/google/protobuf/symbol_database.py \
1050 python/google/protobuf/text_encoding.py \
temporal40ee5512008-07-10 02:12:20 +00001051 python/google/protobuf/text_format.py \
Thomas Hisch451e0442018-04-09 21:43:10 +02001052 python/google/protobuf/util/__init__.py \
Jisi Liu66c1dac2017-07-19 14:38:57 -07001053 python/release.sh \
temporal40ee5512008-07-10 02:12:20 +00001054 python/mox.py \
Jisi Liue1391172016-07-29 14:40:05 -07001055 python/setup.cfg \
Feng Xiao99e18682015-08-26 20:19:05 -07001056 python/setup.py \
temporal40ee5512008-07-10 02:12:20 +00001057 python/stubout.py \
Feng Xiao99e18682015-08-26 20:19:05 -07001058 python/tox.ini \
jesse0481bf32015-03-17 12:14:55 -07001059 python/README.md
temporal40ee5512008-07-10 02:12:20 +00001060
Chris Fallin973f4252014-11-18 14:19:58 -08001061ruby_EXTRA_DIST= \
Bo Yang51de7a72015-05-25 22:21:05 -07001062 ruby/Gemfile \
Bo Yang51de7a72015-05-25 22:21:05 -07001063 ruby/.gitignore \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001064 ruby/README.md \
1065 ruby/Rakefile \
Feng Xiao9118ad62017-02-23 17:53:06 -08001066 ruby/compatibility_tests/v3.0.0/tests/test_import.proto \
1067 ruby/compatibility_tests/v3.0.0/tests/stress.rb \
1068 ruby/compatibility_tests/v3.0.0/tests/repeated_field_test.rb \
1069 ruby/compatibility_tests/v3.0.0/tests/generated_code_test.rb \
1070 ruby/compatibility_tests/v3.0.0/tests/generated_code.proto \
1071 ruby/compatibility_tests/v3.0.0/tests/basic.rb \
1072 ruby/compatibility_tests/v3.0.0/test.sh \
1073 ruby/compatibility_tests/v3.0.0/Rakefile \
1074 ruby/compatibility_tests/v3.0.0/README.md \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001075 ruby/ext/google/protobuf_c/defs.c \
1076 ruby/ext/google/protobuf_c/encode_decode.c \
1077 ruby/ext/google/protobuf_c/extconf.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -08001078 ruby/ext/google/protobuf_c/map.c \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001079 ruby/ext/google/protobuf_c/message.c \
1080 ruby/ext/google/protobuf_c/protobuf.c \
1081 ruby/ext/google/protobuf_c/protobuf.h \
1082 ruby/ext/google/protobuf_c/repeated_field.c \
1083 ruby/ext/google/protobuf_c/storage.c \
1084 ruby/ext/google/protobuf_c/upb.c \
1085 ruby/ext/google/protobuf_c/upb.h \
Adam Cozzette9fa40312017-03-08 11:25:48 -08001086 ruby/ext/google/protobuf_c/wrap_memcpy.c \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001087 ruby/google-protobuf.gemspec \
Bo Yang51de7a72015-05-25 22:21:05 -07001088 ruby/lib/google/protobuf/message_exts.rb \
1089 ruby/lib/google/protobuf/repeated_field.rb \
Josh Haberman3cec2ea2016-08-01 14:31:31 -07001090 ruby/lib/google/protobuf/well_known_types.rb \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001091 ruby/lib/google/protobuf.rb \
Bo Yang51de7a72015-05-25 22:21:05 -07001092 ruby/pom.xml \
1093 ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \
1094 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \
1095 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \
1096 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \
1097 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \
1098 ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \
1099 ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \
1100 ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \
1101 ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \
1102 ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \
1103 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \
1104 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \
1105 ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \
1106 ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \
1107 ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \
1108 ruby/src/main/java/com/google/protobuf/jruby/Utils.java \
1109 ruby/src/main/java/google/ProtobufJavaService.java \
1110 ruby/src/main/sentinel.proto \
Paul Yang011f6702018-10-04 10:29:21 -07001111 ruby/tests/basic_proto2.rb \
1112 ruby/tests/basic_test_proto2.proto \
1113 ruby/tests/basic_test.proto \
Feng Xiaoe7d562a2014-12-12 17:41:34 -08001114 ruby/tests/basic.rb \
Paul Yang011f6702018-10-04 10:29:21 -07001115 ruby/tests/common_tests.rb \
Paul Yang0e7b5892017-12-07 14:18:38 -08001116 ruby/tests/encode_decode_test.rb \
Paul Yangcd5f49d2017-10-03 17:28:49 -07001117 ruby/tests/gc_test.rb \
Bo Yang51de7a72015-05-25 22:21:05 -07001118 ruby/tests/repeated_field_test.rb \
Chris Fallinb0670dd2015-01-14 16:45:47 -08001119 ruby/tests/stress.rb \
Paul Yang011f6702018-10-04 10:29:21 -07001120 ruby/tests/generated_code_proto2_test.rb \
1121 ruby/tests/generated_code_proto2.proto \
Chris Fallinb0670dd2015-01-14 16:45:47 -08001122 ruby/tests/generated_code.proto \
Paul Yang011f6702018-10-04 10:29:21 -07001123 ruby/tests/test_import_proto2.proto \
Josh Haberman97e20262016-07-25 14:07:09 -07001124 ruby/tests/test_import.proto \
Paul Yang011f6702018-10-04 10:29:21 -07001125 ruby/tests/test_ruby_package_proto2.proto \
Bo Yang090fe392018-05-22 09:53:03 -07001126 ruby/tests/test_ruby_package.proto \
Bo Yang51de7a72015-05-25 22:21:05 -07001127 ruby/tests/generated_code_test.rb \
Josh Habermane3094a82016-07-27 17:31:16 -07001128 ruby/tests/well_known_types_test.rb \
Joe Bolinger64eb9b62019-02-06 07:57:13 -08001129 ruby/tests/type_errors.rb \
Bo Yang51de7a72015-05-25 22:21:05 -07001130 ruby/travis-test.sh
Chris Fallin973f4252014-11-18 14:19:58 -08001131
Adam Cozzette10ea2512017-02-28 14:20:56 -08001132js_EXTRA_DIST= \
1133 js/README.md \
1134 js/binary/arith.js \
1135 js/binary/arith_test.js \
1136 js/binary/constants.js \
1137 js/binary/decoder.js \
1138 js/binary/decoder_test.js \
1139 js/binary/encoder.js \
1140 js/binary/message_test.js \
1141 js/binary/proto_test.js \
1142 js/binary/reader.js \
1143 js/binary/reader_test.js \
1144 js/binary/utils.js \
1145 js/binary/utils_test.js \
1146 js/binary/writer.js \
1147 js/binary/writer_test.js \
1148 js/commonjs/export.js \
1149 js/commonjs/export_asserts.js \
1150 js/commonjs/export_testdeps.js \
1151 js/commonjs/import_test.js \
1152 js/commonjs/jasmine.json \
1153 js/commonjs/rewrite_tests_for_commonjs.js \
Peter Marton3c4e3682018-03-01 16:05:19 -08001154 js/commonjs/strict_test.js \
Adam Cozzette10ea2512017-02-28 14:20:56 -08001155 js/commonjs/test6/test6.proto \
1156 js/commonjs/test7/test7.proto \
1157 js/compatibility_tests/v3.0.0/binary/arith_test.js \
1158 js/compatibility_tests/v3.0.0/binary/decoder_test.js \
1159 js/compatibility_tests/v3.0.0/binary/proto_test.js \
1160 js/compatibility_tests/v3.0.0/binary/reader_test.js \
1161 js/compatibility_tests/v3.0.0/binary/utils_test.js \
1162 js/compatibility_tests/v3.0.0/binary/writer_test.js \
1163 js/compatibility_tests/v3.0.0/commonjs/export_asserts.js \
1164 js/compatibility_tests/v3.0.0/commonjs/export_testdeps.js \
1165 js/compatibility_tests/v3.0.0/commonjs/import_test.js \
1166 js/compatibility_tests/v3.0.0/commonjs/jasmine.json \
1167 js/compatibility_tests/v3.0.0/commonjs/rewrite_tests_for_commonjs.js \
1168 js/compatibility_tests/v3.0.0/commonjs/test6/test6.proto \
1169 js/compatibility_tests/v3.0.0/commonjs/test7/test7.proto \
1170 js/compatibility_tests/v3.0.0/data.proto \
1171 js/compatibility_tests/v3.0.0/debug_test.js \
1172 js/compatibility_tests/v3.0.0/jasmine1.json \
1173 js/compatibility_tests/v3.0.0/jasmine2.json \
1174 js/compatibility_tests/v3.0.0/jasmine3.json \
1175 js/compatibility_tests/v3.0.0/message_test.js \
1176 js/compatibility_tests/v3.0.0/proto3_test.js \
1177 js/compatibility_tests/v3.0.0/proto3_test.proto \
1178 js/compatibility_tests/v3.0.0/test2.proto \
1179 js/compatibility_tests/v3.0.0/test3.proto \
1180 js/compatibility_tests/v3.0.0/test4.proto \
1181 js/compatibility_tests/v3.0.0/test5.proto \
1182 js/compatibility_tests/v3.0.0/testbinary.proto \
1183 js/compatibility_tests/v3.0.0/testempty.proto \
1184 js/compatibility_tests/v3.0.0/test.proto \
1185 js/compatibility_tests/v3.0.0/test.sh \
Jisi Liubf658c22017-07-19 14:32:22 -07001186 js/compatibility_tests/v3.1.0/testempty.proto \
1187 js/compatibility_tests/v3.1.0/testbinary.proto \
1188 js/compatibility_tests/v3.1.0/test5.proto \
1189 js/compatibility_tests/v3.1.0/test4.proto \
1190 js/compatibility_tests/v3.1.0/test3.proto \
1191 js/compatibility_tests/v3.1.0/test2.proto \
1192 js/compatibility_tests/v3.1.0/test.proto \
1193 js/compatibility_tests/v3.1.0/proto3_test.proto \
1194 js/compatibility_tests/v3.1.0/proto3_test.js \
1195 js/compatibility_tests/v3.1.0/message_test.js \
1196 js/compatibility_tests/v3.1.0/maps_test.js \
1197 js/compatibility_tests/v3.1.0/debug_test.js \
1198 js/compatibility_tests/v3.1.0/data.proto \
1199 js/compatibility_tests/v3.1.0/commonjs/test7/test7.proto \
1200 js/compatibility_tests/v3.1.0/commonjs/test6/test6.proto \
1201 js/compatibility_tests/v3.1.0/binary/writer_test.js \
1202 js/compatibility_tests/v3.1.0/binary/utils_test.js \
1203 js/compatibility_tests/v3.1.0/binary/reader_test.js \
1204 js/compatibility_tests/v3.1.0/binary/proto_test.js \
1205 js/compatibility_tests/v3.1.0/binary/decoder_test.js \
1206 js/compatibility_tests/v3.1.0/binary/arith_test.js \
Adam Cozzette10ea2512017-02-28 14:20:56 -08001207 js/data.proto \
1208 js/debug.js \
1209 js/debug_test.js \
Adam Cozzettefa9ebaf2020-05-08 16:56:43 -07001210 js/experimental/runtime/kernel/message_set.js \
1211 js/experimental/runtime/kernel/message_set_test.js \
1212 js/experimental/runtime/kernel/tag.js \
1213 js/experimental/runtime/kernel/tag_test.js \
Adam Cozzette10ea2512017-02-28 14:20:56 -08001214 js/gulpfile.js \
1215 js/jasmine.json \
1216 js/map.js \
1217 js/maps_test.js \
1218 js/message.js \
1219 js/message_test.js \
1220 js/node_loader.js \
1221 js/package.json \
1222 js/proto3_test.js \
1223 js/proto3_test.proto \
1224 js/test.proto \
1225 js/test2.proto \
1226 js/test3.proto \
1227 js/test4.proto \
1228 js/test5.proto \
1229 js/test8.proto \
Peter Marton3c4e3682018-03-01 16:05:19 -08001230 js/test9.proto \
Peter Marton13f94b42018-03-26 16:07:45 -07001231 js/test10.proto \
Adam Cozzettefbd69fa2018-11-08 08:41:12 -08001232 js/test11.proto \
1233 js/test12.proto \
1234 js/test13.proto \
1235 js/test14.proto \
1236 js/test15.proto \
Adam Cozzette10ea2512017-02-28 14:20:56 -08001237 js/test_bootstrap.js \
1238 js/testbinary.proto \
Rafi Kamal7e0a0812020-02-07 17:14:49 -08001239 js/testempty.proto \
David L. Jones73f3a722020-02-27 11:26:39 -08001240 js/testlargenumbers.proto \
Rafi Kamal7e0a0812020-02-07 17:14:49 -08001241 js/experimental/runtime/testing/jasmine_protobuf.js \
1242 js/experimental/runtime/testing/ensure_custom_equality_test.js \
1243 js/experimental/runtime/testing/binary/test_message.js \
1244 js/experimental/runtime/kernel/writer_test.js \
1245 js/experimental/runtime/kernel/writer.js \
1246 js/experimental/runtime/kernel/wire_type.js \
1247 js/experimental/runtime/kernel/uint8arrays_test.js \
1248 js/experimental/runtime/kernel/uint8arrays.js \
1249 js/experimental/runtime/kernel/uint32_test_pairs.js \
1250 js/experimental/runtime/kernel/typed_arrays_test.js \
1251 js/experimental/runtime/kernel/typed_arrays.js \
1252 js/experimental/runtime/kernel/textencoding_test.js \
1253 js/experimental/runtime/kernel/textencoding.js \
Rafi Kamal7e0a0812020-02-07 17:14:49 -08001254 js/experimental/runtime/kernel/storage.js \
1255 js/experimental/runtime/kernel/sint64_test_pairs.js \
1256 js/experimental/runtime/kernel/sint32_test_pairs.js \
1257 js/experimental/runtime/kernel/sfixed64_test_pairs.js \
1258 js/experimental/runtime/kernel/sfixed32_test_pairs.js \
1259 js/experimental/runtime/kernel/reader_test.js \
1260 js/experimental/runtime/kernel/reader.js \
1261 js/experimental/runtime/kernel/packed_uint32_test_pairs.js \
1262 js/experimental/runtime/kernel/packed_sint64_test_pairs.js \
1263 js/experimental/runtime/kernel/packed_sint32_test_pairs.js \
1264 js/experimental/runtime/kernel/packed_sfixed64_test_pairs.js \
1265 js/experimental/runtime/kernel/packed_sfixed32_test_pairs.js \
1266 js/experimental/runtime/kernel/packed_int64_test_pairs.js \
1267 js/experimental/runtime/kernel/packed_int32_test_pairs.js \
1268 js/experimental/runtime/kernel/packed_float_test_pairs.js \
1269 js/experimental/runtime/kernel/packed_fixed32_test_pairs.js \
1270 js/experimental/runtime/kernel/packed_double_test_pairs.js \
1271 js/experimental/runtime/kernel/packed_bool_test_pairs.js \
Rafi Kamal53128552020-03-17 12:16:12 -07001272 js/experimental/runtime/kernel/kernel_test.js \
1273 js/experimental/runtime/kernel/kernel_repeated_test.js \
1274 js/experimental/runtime/kernel/kernel_compatibility_test.js \
1275 js/experimental/runtime/kernel/kernel.js \
Rafi Kamal7e0a0812020-02-07 17:14:49 -08001276 js/experimental/runtime/kernel/internal_message.js \
1277 js/experimental/runtime/kernel/int64_test_pairs.js \
1278 js/experimental/runtime/kernel/int32_test_pairs.js \
1279 js/experimental/runtime/kernel/indexer_test.js \
1280 js/experimental/runtime/kernel/indexer.js \
1281 js/experimental/runtime/kernel/float_test_pairs.js \
1282 js/experimental/runtime/kernel/fixed32_test_pairs.js \
1283 js/experimental/runtime/kernel/field.js \
1284 js/experimental/runtime/kernel/double_test_pairs.js \
1285 js/experimental/runtime/kernel/conformance/wire_format.js \
1286 js/experimental/runtime/kernel/conformance/test_all_types_proto3.js \
1287 js/experimental/runtime/kernel/conformance/test_all_types_proto2.js \
1288 js/experimental/runtime/kernel/conformance/conformance_testee_runner_node.js \
1289 js/experimental/runtime/kernel/conformance/conformance_testee.js \
1290 js/experimental/runtime/kernel/conformance/conformance_response.js \
1291 js/experimental/runtime/kernel/conformance/conformance_request.js \
1292 js/experimental/runtime/kernel/buffer_decoder_test.js \
1293 js/experimental/runtime/kernel/buffer_decoder_helper.js \
1294 js/experimental/runtime/kernel/buffer_decoder.js \
1295 js/experimental/runtime/kernel/bool_test_pairs.js \
Rafi Kamal53128552020-03-17 12:16:12 -07001296 js/experimental/runtime/kernel/binary_storage_test.js \
1297 js/experimental/runtime/kernel/binary_storage.js \
Rafi Kamal7e0a0812020-02-07 17:14:49 -08001298 js/experimental/runtime/internal/checks_test.js \
1299 js/experimental/runtime/internal/checks.js \
1300 js/experimental/runtime/int64_test.js \
1301 js/experimental/runtime/int64.js \
1302 js/experimental/runtime/bytestring_test.js \
1303 js/experimental/runtime/bytestring_internal.js \
1304 js/experimental/runtime/bytestring.js \
1305 js/experimental/benchmarks/code_size/kernel/popular_types.js \
1306 js/experimental/benchmarks/code_size/kernel/all_types.js \
1307 js/experimental/benchmarks/code_size/code_size_base.js \
1308 js/experimental/benchmarks/code_size/apps_jspb/popular_types_proto3.js \
1309 js/experimental/benchmarks/code_size/apps_jspb/popular_types_proto2.js \
1310 js/experimental/benchmarks/code_size/apps_jspb/all_types_proto3.js \
1311 js/experimental/benchmarks/code_size/apps_jspb/all_types_proto2.js
Feng Xiaob7610f12015-12-22 14:36:04 -08001312
Feng Xiaod5a00242018-03-26 12:59:28 -07001313all_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 -08001314
Bo Yangff7bdad2015-08-23 10:45:14 -07001315EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
1316 autogen.sh \
1317 generate_descriptor_proto.sh \
1318 README.md \
Bo Yangff7bdad2015-08-23 10:45:14 -07001319 LICENSE \
1320 CONTRIBUTORS.txt \
1321 CHANGES.txt \
1322 update_file_lists.sh \
Jisi Liu40081002015-08-26 17:48:08 -07001323 BUILD \
Jisi Liu40081002015-08-26 17:48:08 -07001324 WORKSPACE \
Bo Yangff7bdad2015-08-23 10:45:14 -07001325 cmake/CMakeLists.txt \
1326 cmake/README.md \
Yannicf0cb9cd2020-02-13 22:04:14 +01001327 cmake/conformance.cmake \
Feng Xiao60cb0942016-07-19 16:15:42 -07001328 cmake/examples.cmake \
Bo Yangff7bdad2015-08-23 10:45:14 -07001329 cmake/extract_includes.bat.in \
1330 cmake/install.cmake \
1331 cmake/libprotobuf.cmake \
1332 cmake/libprotobuf-lite.cmake \
1333 cmake/libprotoc.cmake \
1334 cmake/protobuf-config-version.cmake.in \
1335 cmake/protobuf-config.cmake.in \
Jisi Liud8c61932017-08-24 14:11:37 -07001336 cmake/protobuf-lite.pc.cmake \
Bo Yangff7bdad2015-08-23 10:45:14 -07001337 cmake/protobuf-module.cmake.in \
Feng Xiao60cb0942016-07-19 16:15:42 -07001338 cmake/protobuf-options.cmake \
Jisi Liud8c61932017-08-24 14:11:37 -07001339 cmake/protobuf.pc.cmake \
Bo Yangff7bdad2015-08-23 10:45:14 -07001340 cmake/protoc.cmake \
1341 cmake/tests.cmake \
Jozef Izso8233d462018-04-28 10:53:54 +02001342 cmake/version.rc.in \
Adam Cozzette9e381c02019-02-12 14:13:32 -08001343 compiler_config_setting.bzl \
Yannicf0cb9cd2020-02-13 22:04:14 +01001344 build_files_updated_unittest.sh \
1345 cc_proto_blacklist_test.bzl \
Bo Yangff7bdad2015-08-23 10:45:14 -07001346 editors/README.txt \
1347 editors/proto.vim \
1348 editors/protobuf-mode.el \
Bo Yangff7bdad2015-08-23 10:45:14 -07001349 examples/AddPerson.java \
Feng Xiao49b88af2017-09-11 12:48:53 -07001350 examples/BUILD \
Feng Xiao60cb0942016-07-19 16:15:42 -07001351 examples/CMakeLists.txt \
Bo Yangff7bdad2015-08-23 10:45:14 -07001352 examples/ListPeople.java \
Feng Xiao49b88af2017-09-11 12:48:53 -07001353 examples/Makefile \
1354 examples/README.md \
1355 examples/WORKSPACE \
1356 examples/add_person.cc \
Adam Cozzettefbd69fa2018-11-08 08:41:12 -08001357 examples/add_person.dart \
Feng Xiao49b88af2017-09-11 12:48:53 -07001358 examples/add_person.go \
Bo Yangff7bdad2015-08-23 10:45:14 -07001359 examples/add_person.py \
Feng Xiao49b88af2017-09-11 12:48:53 -07001360 examples/add_person_test.go \
1361 examples/addressbook.proto \
1362 examples/list_people.cc \
Adam Cozzettefbd69fa2018-11-08 08:41:12 -08001363 examples/list_people.dart \
Feng Xiao49b88af2017-09-11 12:48:53 -07001364 examples/list_people.go \
Feng Xiaob7610f12015-12-22 14:36:04 -08001365 examples/list_people.py \
1366 examples/list_people_test.go \
Adam Cozzettefbd69fa2018-11-08 08:41:12 -08001367 examples/pubspec.yaml \
Feng Xiaob7610f12015-12-22 14:36:04 -08001368 protobuf.bzl \
Adam Cozzette21773ef2019-06-18 10:07:18 -07001369 protobuf_deps.bzl \
Paul Yang176bac62017-06-28 15:22:19 -07001370 python/release/wheel/build_wheel_manylinux.sh \
1371 python/release/wheel/Dockerfile \
1372 python/release/wheel/protobuf_optimized_pip.sh \
1373 python/release/wheel/README.md \
Adam Liddell8199a012019-07-21 21:02:48 +00001374 third_party/six.BUILD \
Hao Nguyen87f83cc2019-05-13 16:38:07 -07001375 third_party/zlib.BUILD \
Feng Xiaob7610f12015-12-22 14:36:04 -08001376 util/python/BUILD
Feng Xiao8f7dec82014-12-02 14:15:26 -08001377
Paul Yang176bac62017-06-28 15:22:19 -07001378
temporal40ee5512008-07-10 02:12:20 +00001379# Deletes all the files generated by autogen.sh.
1380MAINTAINERCLEANFILES = \
1381 aclocal.m4 \
Thomas Van Lentena20d0b62015-12-10 15:34:34 -05001382 ar-lib \
temporal40ee5512008-07-10 02:12:20 +00001383 config.guess \
1384 config.sub \
1385 configure \
1386 depcomp \
1387 install-sh \
1388 ltmain.sh \
1389 Makefile.in \
1390 missing \
1391 mkinstalldirs \
1392 config.h.in \
kenton@google.com39671e52009-07-31 21:46:11 +00001393 stamp.h.in \
1394 m4/ltsugar.m4 \
1395 m4/libtool.m4 \
1396 m4/ltversion.m4 \
1397 m4/lt~obsolete.m4 \
1398 m4/ltoptions.m4