temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1 | ## Process this file with automake to produce Makefile.in |
| 2 | |
| 3 | ACLOCAL_AMFLAGS = -I m4 |
| 4 | |
kenton@google.com | 7516a69 | 2008-09-30 20:55:25 +0000 | [diff] [blame] | 5 | AUTOMAKE_OPTIONS = foreign |
| 6 | |
kenton@google.com | 37ad00d | 2009-04-21 21:00:39 +0000 | [diff] [blame] | 7 | # Build . before src so that our all-local and clean-local hooks kicks in at |
| 8 | # the right time. |
| 9 | SUBDIRS = . src |
| 10 | |
Carlos O'Ryan | 3c5442a | 2018-03-26 16:54:32 -0400 | [diff] [blame] | 11 | # Always include third_party directories in distributions. |
| 12 | DIST_SUBDIRS = src conformance benchmarks third_party/googletest |
kenton@google.com | 37ad00d | 2009-04-21 21:00:39 +0000 | [diff] [blame] | 13 | |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 14 | # 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.com | 37ad00d | 2009-04-21 21:00:39 +0000 | [diff] [blame] | 16 | # which takes a lot of time and is generally not useful to us. Also, we don't |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 17 | # 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.com | 37ad00d | 2009-04-21 21:00:39 +0000 | [diff] [blame] | 19 | check-local: |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 20 | @echo "Making lib/libgmock.a lib/libgmock_main.a in gmock" |
Carlos O'Ryan | 3c5442a | 2018-03-26 16:54:32 -0400 | [diff] [blame] | 21 | @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.com | 37ad00d | 2009-04-21 21:00:39 +0000 | [diff] [blame] | 23 | |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 24 | # We would like to clean gmock when "make clean" is invoked. But we have to |
kenton@google.com | 37ad00d | 2009-04-21 21:00:39 +0000 | [diff] [blame] | 25 | # be careful because clean-local is also invoked during "make distclean", but |
Feng Xiao | e96ff30 | 2015-06-15 18:21:48 -0700 | [diff] [blame] | 26 | # "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.com | 37ad00d | 2009-04-21 21:00:39 +0000 | [diff] [blame] | 28 | # cd to the directory again and "make clean" it will fail. So, check that the |
| 29 | # Makefile exists before recursing. |
| 30 | clean-local: |
Carlos O'Ryan | 3c5442a | 2018-03-26 16:54:32 -0400 | [diff] [blame] | 31 | @if test -e third_party/googletest/Makefile; then \ |
| 32 | echo "Making clean in googletest"; \ |
| 33 | cd third_party/googletest && $(MAKE) $(AM_MAKEFLAGS) clean; \ |
Josh Haberman | 35a1cc7 | 2015-04-01 17:23:48 -0700 | [diff] [blame] | 34 | fi; \ |
| 35 | if test -e conformance/Makefile; then \ |
| 36 | echo "Making clean in conformance"; \ |
| 37 | cd conformance && $(MAKE) $(AM_MAKEFLAGS) clean; \ |
Thomas Van Lenten | 42f2eee | 2015-11-16 11:24:58 -0500 | [diff] [blame] | 38 | fi; \ |
Josh Haberman | 2e83110 | 2016-04-27 18:22:22 -0700 | [diff] [blame] | 39 | if test -e benchmarks/Makefile; then \ |
| 40 | echo "Making clean in benchmarks"; \ |
| 41 | cd benchmarks && $(MAKE) $(AM_MAKEFLAGS) clean; \ |
| 42 | fi; \ |
Thomas Van Lenten | 42f2eee | 2015-11-16 11:24:58 -0500 | [diff] [blame] | 43 | if test -e objectivec/DevTools; then \ |
| 44 | echo "Cleaning any ObjC pyc files"; \ |
| 45 | rm -f objectivec/DevTools/*.pyc; \ |
kenton@google.com | 37ad00d | 2009-04-21 21:00:39 +0000 | [diff] [blame] | 46 | fi |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 47 | |
kenton@google.com | 3c66c2e | 2009-08-03 21:31:25 +0000 | [diff] [blame] | 48 | pkgconfigdir = $(libdir)/pkgconfig |
| 49 | pkgconfig_DATA = protobuf.pc protobuf-lite.pc |
| 50 | |
Jan Tattermusch | 271cba2 | 2015-07-16 11:24:48 -0700 | [diff] [blame] | 51 | csharp_EXTRA_DIST= \ |
Sydney Acksman | 15fab91 | 2019-03-11 15:03:58 -0500 | [diff] [blame] | 52 | global.json \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 53 | csharp/.gitignore \ |
Jan Tattermusch | 271cba2 | 2015-07-16 11:24:48 -0700 | [diff] [blame] | 54 | csharp/CHANGES.txt \ |
Sydney Acksman | 1f77342 | 2018-06-21 17:53:31 -0400 | [diff] [blame] | 55 | csharp/Google.Protobuf.Tools.targets \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 56 | csharp/Google.Protobuf.Tools.nuspec \ |
Jan Tattermusch | 271cba2 | 2015-07-16 11:24:48 -0700 | [diff] [blame] | 57 | csharp/README.md \ |
| 58 | csharp/build_packages.bat \ |
Bo Yang | 5be6325 | 2016-10-06 10:23:34 -0700 | [diff] [blame] | 59 | csharp/build_tools.sh \ |
Jan Tattermusch | d305c2a | 2019-03-12 05:47:53 -0400 | [diff] [blame] | 60 | csharp/buildall.bat \ |
Jan Tattermusch | 271cba2 | 2015-07-16 11:24:48 -0700 | [diff] [blame] | 61 | csharp/buildall.sh \ |
| 62 | csharp/generate_protos.sh \ |
Sydney Acksman | 15fab91 | 2019-03-11 15:03:58 -0500 | [diff] [blame] | 63 | csharp/install_dotnet_sdk.ps1 \ |
Jan Tattermusch | e61b528 | 2015-08-02 14:27:01 -0700 | [diff] [blame] | 64 | csharp/keys/Google.Protobuf.public.snk \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 65 | csharp/keys/Google.Protobuf.snk \ |
Jan Tattermusch | e61b528 | 2015-08-02 14:27:01 -0700 | [diff] [blame] | 66 | csharp/keys/README.md \ |
Jon Skeet | aa77eab | 2017-11-10 09:50:02 +0000 | [diff] [blame] | 67 | csharp/protos/README.md \ |
| 68 | csharp/protos/map_unittest_proto3.proto \ |
Jon Skeet | 7581fd5 | 2019-10-30 09:46:24 +0000 | [diff] [blame] | 69 | csharp/protos/old_extensions1.proto \ |
| 70 | csharp/protos/old_extensions2.proto \ |
Sydney Acksman | 367fd27 | 2019-12-03 10:52:24 -0600 | [diff] [blame] | 71 | csharp/protos/unittest_issue6936_a.proto \ |
| 72 | csharp/protos/unittest_issue6936_b.proto \ |
| 73 | csharp/protos/unittest_issue6936_c.proto \ |
Jon Skeet | 047575f | 2017-01-16 11:23:32 +0000 | [diff] [blame] | 74 | csharp/protos/unittest_custom_options_proto3.proto \ |
Jon Skeet | aa77eab | 2017-11-10 09:50:02 +0000 | [diff] [blame] | 75 | csharp/protos/unittest_import_public_proto3.proto \ |
Sydney Acksman | 2b9d0fd | 2019-05-28 15:42:41 -0500 | [diff] [blame] | 76 | csharp/protos/unittest_import_public.proto \ |
Jon Skeet | aa77eab | 2017-11-10 09:50:02 +0000 | [diff] [blame] | 77 | csharp/protos/unittest_import_proto3.proto \ |
Sydney Acksman | 2b9d0fd | 2019-05-28 15:42:41 -0500 | [diff] [blame] | 78 | csharp/protos/unittest_import.proto \ |
Jon Skeet | 0f370b4 | 2015-08-03 10:59:27 +0100 | [diff] [blame] | 79 | csharp/protos/unittest_issues.proto \ |
Jon Skeet | aa77eab | 2017-11-10 09:50:02 +0000 | [diff] [blame] | 80 | csharp/protos/unittest_proto3.proto \ |
Jan Tattermusch | 0757d8e | 2020-05-11 11:24:48 +0200 | [diff] [blame] | 81 | csharp/protos/unittest_selfreferential_options.proto \ |
Sydney Acksman | 2b9d0fd | 2019-05-28 15:42:41 -0500 | [diff] [blame] | 82 | csharp/protos/unittest.proto \ |
Jan Tattermusch | 271cba2 | 2015-07-16 11:24:48 -0700 | [diff] [blame] | 83 | csharp/src/AddressBook/AddPerson.cs \ |
Jan Tattermusch | 271cba2 | 2015-07-16 11:24:48 -0700 | [diff] [blame] | 84 | csharp/src/AddressBook/Addressbook.cs \ |
Jon Skeet | f26e8c2 | 2017-05-04 08:51:46 +0100 | [diff] [blame] | 85 | csharp/src/AddressBook/AddressBook.csproj \ |
Jan Tattermusch | 271cba2 | 2015-07-16 11:24:48 -0700 | [diff] [blame] | 86 | csharp/src/AddressBook/ListPeople.cs \ |
| 87 | csharp/src/AddressBook/Program.cs \ |
Jan Tattermusch | 271cba2 | 2015-07-16 11:24:48 -0700 | [diff] [blame] | 88 | csharp/src/AddressBook/SampleUsage.cs \ |
Jan Tattermusch | c762a3b | 2020-04-07 12:01:29 +0200 | [diff] [blame] | 89 | csharp/src/Google.Protobuf.Benchmarks/BenchmarkDatasetConfig.cs \ |
Jon Skeet | 66fb3ce | 2019-03-12 09:07:21 +0000 | [diff] [blame] | 90 | csharp/src/Google.Protobuf.Benchmarks/BenchmarkMessage1Proto3.cs \ |
Jan Tattermusch | 3f81056 | 2019-11-04 17:19:13 +0100 | [diff] [blame] | 91 | csharp/src/Google.Protobuf.Benchmarks/Benchmarks.cs \ |
James Newton-King | 79f5bad | 2020-06-24 16:02:13 +1200 | [diff] [blame] | 92 | csharp/src/Google.Protobuf.Benchmarks/ByteStringBenchmark.cs \ |
Jan Tattermusch | 3f81056 | 2019-11-04 17:19:13 +0100 | [diff] [blame] | 93 | csharp/src/Google.Protobuf.Benchmarks/Google.Protobuf.Benchmarks.csproj \ |
Jan Tattermusch | c762a3b | 2020-04-07 12:01:29 +0200 | [diff] [blame] | 94 | csharp/src/Google.Protobuf.Benchmarks/GoogleMessageBenchmark.cs \ |
Jan Tattermusch | c762a3b | 2020-04-07 12:01:29 +0200 | [diff] [blame] | 95 | csharp/src/Google.Protobuf.Benchmarks/ParseMessagesBenchmark.cs \ |
Jan Tattermusch | eac2a6a | 2020-04-22 11:18:16 +0200 | [diff] [blame] | 96 | csharp/src/Google.Protobuf.Benchmarks/ParseRawPrimitivesBenchmark.cs \ |
Jan Tattermusch | 3f81056 | 2019-11-04 17:19:13 +0100 | [diff] [blame] | 97 | csharp/src/Google.Protobuf.Benchmarks/Program.cs \ |
Jan Tattermusch | 3f81056 | 2019-11-04 17:19:13 +0100 | [diff] [blame] | 98 | csharp/src/Google.Protobuf.Benchmarks/wrapper_benchmark_messages.proto \ |
Jan Tattermusch | 3f81056 | 2019-11-04 17:19:13 +0100 | [diff] [blame] | 99 | csharp/src/Google.Protobuf.Benchmarks/WrapperBenchmarkMessages.cs \ |
Jan Tattermusch | e967fac | 2020-06-11 09:30:21 +0200 | [diff] [blame] | 100 | csharp/src/Google.Protobuf.Benchmarks/WriteMessagesBenchmark.cs \ |
Jan Tattermusch | 2350e90 | 2020-06-09 18:06:45 +0200 | [diff] [blame] | 101 | csharp/src/Google.Protobuf.Benchmarks/WriteRawPrimitivesBenchmark.cs \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 102 | csharp/src/Google.Protobuf.Conformance/Conformance.cs \ |
Jon Skeet | f26e8c2 | 2017-05-04 08:51:46 +0100 | [diff] [blame] | 103 | csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 104 | csharp/src/Google.Protobuf.Conformance/Program.cs \ |
Jon Skeet | f26e8c2 | 2017-05-04 08:51:46 +0100 | [diff] [blame] | 105 | csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 106 | csharp/src/Google.Protobuf.JsonDump/Program.cs \ |
Jan Tattermusch | 2350e90 | 2020-06-09 18:06:45 +0200 | [diff] [blame] | 107 | csharp/src/Google.Protobuf.Test/Buffers/ArrayBufferWriter.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 108 | csharp/src/Google.Protobuf.Test/ByteStringTest.cs \ |
| 109 | csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \ |
| 110 | csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \ |
| 111 | csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \ |
| 112 | csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \ |
Jon Skeet | f3e9a65 | 2017-10-25 16:03:23 +0100 | [diff] [blame] | 113 | csharp/src/Google.Protobuf.Test/Collections/ProtobufEqualityComparersTest.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 114 | csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 115 | csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \ |
John Brock | c9b2c8f | 2017-02-13 15:34:35 -0800 | [diff] [blame] | 116 | csharp/src/Google.Protobuf.Test/Compatibility/StreamExtensionsTest.cs \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 117 | csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 118 | csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \ |
| 119 | csharp/src/Google.Protobuf.Test/EqualityTester.cs \ |
Sydney Acksman | 2b9d0fd | 2019-05-28 15:42:41 -0500 | [diff] [blame] | 120 | csharp/src/Google.Protobuf.Test/ExtensionSetTest.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 121 | csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \ |
Benjamin Krämer | 80e530d | 2018-10-08 12:54:05 -0700 | [diff] [blame] | 122 | csharp/src/Google.Protobuf.Test/FieldMaskTreeTest.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 123 | csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \ |
Sydney Acksman | 6da14fa | 2019-08-12 18:29:01 -0500 | [diff] [blame] | 124 | csharp/src/Google.Protobuf.Test/GeneratedMessageTest.Proto2.cs \ |
Jon Skeet | f26e8c2 | 2017-05-04 08:51:46 +0100 | [diff] [blame] | 125 | csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 126 | csharp/src/Google.Protobuf.Test/IssuesTest.cs \ |
| 127 | csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \ |
Jon Skeet | fb24882 | 2015-09-04 12:41:14 +0100 | [diff] [blame] | 128 | csharp/src/Google.Protobuf.Test/JsonParserTest.cs \ |
| 129 | csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs \ |
Jan Tattermusch | eac2a6a | 2020-04-22 11:18:16 +0200 | [diff] [blame] | 130 | csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs \ |
| 131 | csharp/src/Google.Protobuf.Test/MessageParsingHelpers.cs \ |
Jon Skeet | 81c9b85 | 2020-04-24 17:29:44 +0100 | [diff] [blame] | 132 | csharp/src/Google.Protobuf.Test/Proto3OptionalTest.cs \ |
Jan Tattermusch | eac2a6a | 2020-04-22 11:18:16 +0200 | [diff] [blame] | 133 | csharp/src/Google.Protobuf.Test/ReadOnlySequenceFactory.cs \ |
Jan Tattermusch | 7cb5597 | 2020-06-02 09:26:25 +0200 | [diff] [blame] | 134 | csharp/src/Google.Protobuf.Test/RefStructCompatibilityTest.cs \ |
Jon Skeet | 047575f | 2017-01-16 11:23:32 +0000 | [diff] [blame] | 135 | csharp/src/Google.Protobuf.Test/Reflection/CustomOptionsTest.cs \ |
Jon Skeet | 0b314d7 | 2018-09-19 09:21:27 +0100 | [diff] [blame] | 136 | csharp/src/Google.Protobuf.Test/Reflection/DescriptorDeclarationTest.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 137 | csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 138 | csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs \ |
Feng Xiao | b7610f1 | 2015-12-22 14:36:04 -0800 | [diff] [blame] | 139 | csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 140 | csharp/src/Google.Protobuf.Test/SampleEnum.cs \ |
| 141 | csharp/src/Google.Protobuf.Test/SampleMessages.cs \ |
Jon Skeet | f3e9a65 | 2017-10-25 16:03:23 +0100 | [diff] [blame] | 142 | csharp/src/Google.Protobuf.Test/SampleNaNs.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 143 | csharp/src/Google.Protobuf.Test/TestCornerCases.cs \ |
Sydney Acksman | cbafc68 | 2019-11-11 10:29:40 -0600 | [diff] [blame] | 144 | csharp/src/Google.Protobuf.Test.TestProtos/Google.Protobuf.Test.TestProtos.csproj \ |
Sydney Acksman | 367fd27 | 2019-12-03 10:52:24 -0600 | [diff] [blame] | 145 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936A.cs \ |
| 146 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.cs \ |
| 147 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.cs \ |
Sydney Acksman | b84929f | 2019-11-08 08:41:26 -0600 | [diff] [blame] | 148 | csharp/src/Google.Protobuf.Test.TestProtos/ForeignMessagePartial.cs \ |
| 149 | csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.cs \ |
| 150 | csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs \ |
| 151 | csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions2.cs \ |
| 152 | csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.cs \ |
| 153 | csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.cs \ |
| 154 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.cs \ |
| 155 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.cs \ |
| 156 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.cs \ |
| 157 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.cs \ |
| 158 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.cs \ |
| 159 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.cs \ |
| 160 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.cs \ |
Jon Skeet | 81c9b85 | 2020-04-24 17:29:44 +0100 | [diff] [blame] | 161 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.cs \ |
Jan Tattermusch | 0757d8e | 2020-05-11 11:24:48 +0200 | [diff] [blame] | 162 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.cs \ |
Sydney Acksman | b84929f | 2019-11-08 08:41:26 -0600 | [diff] [blame] | 163 | csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.cs \ |
| 164 | csharp/src/Google.Protobuf.Test.TestProtos/Unittest.cs \ |
Jon Skeet | e50461d | 2015-09-04 11:22:34 +0100 | [diff] [blame] | 165 | csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 166 | csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 167 | csharp/src/Google.Protobuf.Test/WellKnownTypes/FieldMaskTest.cs \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 168 | csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 169 | csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \ |
Jie Luo | bfd254e | 2017-12-13 13:48:58 -0800 | [diff] [blame] | 170 | csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs \ |
Jon Skeet | 0b314d7 | 2018-09-19 09:21:27 +0100 | [diff] [blame] | 171 | csharp/src/Google.Protobuf.Test/testprotos.pb \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 172 | csharp/src/Google.Protobuf.sln \ |
| 173 | csharp/src/Google.Protobuf/ByteArray.cs \ |
| 174 | csharp/src/Google.Protobuf/ByteString.cs \ |
James Newton-King | 79f5bad | 2020-06-24 16:02:13 +1200 | [diff] [blame] | 175 | csharp/src/Google.Protobuf/ByteStringAsync.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 176 | csharp/src/Google.Protobuf/CodedInputStream.cs \ |
| 177 | csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \ |
| 178 | csharp/src/Google.Protobuf/CodedOutputStream.cs \ |
Jie Luo | bfd254e | 2017-12-13 13:48:58 -0800 | [diff] [blame] | 179 | csharp/src/Google.Protobuf/Collections/Lists.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 180 | csharp/src/Google.Protobuf/Collections/MapField.cs \ |
Jon Skeet | f3e9a65 | 2017-10-25 16:03:23 +0100 | [diff] [blame] | 181 | csharp/src/Google.Protobuf/Collections/ProtobufEqualityComparers.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 182 | csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \ |
| 183 | csharp/src/Google.Protobuf/Collections/RepeatedField.cs \ |
Jon Skeet | 7b19d20 | 2018-03-27 08:44:42 +0100 | [diff] [blame] | 184 | csharp/src/Google.Protobuf/Compatibility/MethodInfoExtensions.cs \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 185 | csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \ |
John Brock | c9b2c8f | 2017-02-13 15:34:35 -0800 | [diff] [blame] | 186 | csharp/src/Google.Protobuf/Compatibility/StreamExtensions.cs \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 187 | csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \ |
Sydney Acksman | 9e89b6e | 2019-05-03 15:54:41 -0500 | [diff] [blame] | 188 | csharp/src/Google.Protobuf/Extension.cs \ |
| 189 | csharp/src/Google.Protobuf/ExtensionRegistry.cs \ |
| 190 | csharp/src/Google.Protobuf/ExtensionSet.cs \ |
| 191 | csharp/src/Google.Protobuf/ExtensionValue.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 192 | csharp/src/Google.Protobuf/FieldCodec.cs \ |
Benjamin Krämer | 80e530d | 2018-10-08 12:54:05 -0700 | [diff] [blame] | 193 | csharp/src/Google.Protobuf/FieldMaskTree.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 194 | csharp/src/Google.Protobuf/FrameworkPortability.cs \ |
Jon Skeet | f26e8c2 | 2017-05-04 08:51:46 +0100 | [diff] [blame] | 195 | csharp/src/Google.Protobuf/Google.Protobuf.csproj \ |
Jan Tattermusch | eac2a6a | 2020-04-22 11:18:16 +0200 | [diff] [blame] | 196 | csharp/src/Google.Protobuf/IBufferMessage.cs \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 197 | csharp/src/Google.Protobuf/ICustomDiagnosticMessage.cs \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 198 | csharp/src/Google.Protobuf/IDeepCloneable.cs \ |
Sydney Acksman | 9e89b6e | 2019-05-03 15:54:41 -0500 | [diff] [blame] | 199 | csharp/src/Google.Protobuf/IExtendableMessage.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 200 | csharp/src/Google.Protobuf/IMessage.cs \ |
Jon Skeet | 0fb39c4 | 2015-11-04 11:49:15 +0000 | [diff] [blame] | 201 | csharp/src/Google.Protobuf/InvalidJsonException.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 202 | csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \ |
| 203 | csharp/src/Google.Protobuf/JsonFormatter.cs \ |
Jon Skeet | fb24882 | 2015-09-04 12:41:14 +0100 | [diff] [blame] | 204 | csharp/src/Google.Protobuf/JsonParser.cs \ |
| 205 | csharp/src/Google.Protobuf/JsonToken.cs \ |
| 206 | csharp/src/Google.Protobuf/JsonTokenizer.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 207 | csharp/src/Google.Protobuf/LimitedInputStream.cs \ |
| 208 | csharp/src/Google.Protobuf/MessageExtensions.cs \ |
| 209 | csharp/src/Google.Protobuf/MessageParser.cs \ |
Sydney Acksman | 9e89b6e | 2019-05-03 15:54:41 -0500 | [diff] [blame] | 210 | csharp/src/Google.Protobuf/ObjectIntPair.cs \ |
Jan Tattermusch | eac2a6a | 2020-04-22 11:18:16 +0200 | [diff] [blame] | 211 | csharp/src/Google.Protobuf/ParseContext.cs \ |
| 212 | csharp/src/Google.Protobuf/ParserInternalState.cs \ |
| 213 | csharp/src/Google.Protobuf/ParsingPrimitives.cs \ |
| 214 | csharp/src/Google.Protobuf/ParsingPrimitivesMessages.cs \ |
| 215 | csharp/src/Google.Protobuf/ParsingPrimitivesWrappers.cs \ |
Jon Skeet | 7762f16 | 2016-02-04 06:51:54 +0000 | [diff] [blame] | 216 | csharp/src/Google.Protobuf/ProtoPreconditions.cs \ |
Jan Tattermusch | eac2a6a | 2020-04-22 11:18:16 +0200 | [diff] [blame] | 217 | csharp/src/Google.Protobuf/SegmentedBufferHelper.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 218 | csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \ |
Jon Skeet | 047575f | 2017-01-16 11:23:32 +0000 | [diff] [blame] | 219 | csharp/src/Google.Protobuf/Reflection/CustomOptions.cs \ |
Jon Skeet | 284bb45 | 2015-11-05 09:13:53 +0000 | [diff] [blame] | 220 | csharp/src/Google.Protobuf/Reflection/Descriptor.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 221 | csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \ |
Jon Skeet | 0b314d7 | 2018-09-19 09:21:27 +0100 | [diff] [blame] | 222 | csharp/src/Google.Protobuf/Reflection/DescriptorDeclaration.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 223 | csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 224 | csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \ |
| 225 | csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \ |
| 226 | csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \ |
| 227 | csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \ |
Sydney Acksman | 9e89b6e | 2019-05-03 15:54:41 -0500 | [diff] [blame] | 228 | csharp/src/Google.Protobuf/Reflection/ExtensionAccessor.cs \ |
| 229 | csharp/src/Google.Protobuf/Reflection/ExtensionCollection.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 230 | csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 231 | csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \ |
| 232 | csharp/src/Google.Protobuf/Reflection/FieldType.cs \ |
| 233 | csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \ |
Jon Skeet | a3ea9d1 | 2016-02-04 07:05:49 +0000 | [diff] [blame] | 234 | csharp/src/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 235 | csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \ |
| 236 | csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \ |
| 237 | csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \ |
| 238 | csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \ |
| 239 | csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \ |
| 240 | csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \ |
| 241 | csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \ |
Jon Skeet | 75626ed | 2016-04-08 12:19:10 +0100 | [diff] [blame] | 242 | csharp/src/Google.Protobuf/Reflection/OriginalNameAttribute.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 243 | csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 244 | csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \ |
| 245 | csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \ |
| 246 | csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \ |
| 247 | csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \ |
Feng Xiao | b7610f1 | 2015-12-22 14:36:04 -0800 | [diff] [blame] | 248 | csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 249 | csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \ |
Jon Skeet | e50461d | 2015-09-04 11:22:34 +0100 | [diff] [blame] | 250 | csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 251 | csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \ |
| 252 | csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 253 | csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 254 | csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \ |
| 255 | csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 256 | csharp/src/Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 257 | csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \ |
| 258 | csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 259 | csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 260 | csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 261 | csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 262 | csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \ |
Feng Xiao | b7610f1 | 2015-12-22 14:36:04 -0800 | [diff] [blame] | 263 | csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs \ |
Jon Skeet | 86cf61d | 2015-07-17 10:14:29 +0100 | [diff] [blame] | 264 | csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \ |
Feng Xiao | b7610f1 | 2015-12-22 14:36:04 -0800 | [diff] [blame] | 265 | csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs \ |
Jie Luo | bfd254e | 2017-12-13 13:48:58 -0800 | [diff] [blame] | 266 | csharp/src/Google.Protobuf/WireFormat.cs \ |
Jan Tattermusch | 2350e90 | 2020-06-09 18:06:45 +0200 | [diff] [blame] | 267 | csharp/src/Google.Protobuf/WritingPrimitivesMessages.cs \ |
| 268 | csharp/src/Google.Protobuf/WritingPrimitives.cs \ |
| 269 | csharp/src/Google.Protobuf/WriterInternalState.cs \ |
| 270 | csharp/src/Google.Protobuf/WriteContext.cs \ |
| 271 | csharp/src/Google.Protobuf/WriteBufferHelper.cs \ |
Jie Luo | bfd254e | 2017-12-13 13:48:58 -0800 | [diff] [blame] | 272 | csharp/src/Google.Protobuf/UnknownField.cs \ |
James Newton-King | 79f5bad | 2020-06-24 16:02:13 +1200 | [diff] [blame] | 273 | csharp/src/Google.Protobuf/UnknownFieldSet.cs \ |
| 274 | csharp/src/Google.Protobuf/UnsafeByteOperations.cs |
Bo Yang | 9907286 | 2015-05-25 17:06:18 -0700 | [diff] [blame] | 275 | |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 276 | java_EXTRA_DIST= \ |
| 277 | java/README.md \ |
Adam Cozzette | cf90053 | 2018-11-13 09:50:41 -0800 | [diff] [blame] | 278 | java/bom/pom.xml \ |
Yannic | f0cb9cd | 2020-02-13 22:04:14 +0100 | [diff] [blame] | 279 | java/core/BUILD \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 280 | java/core/generate-sources-build.xml \ |
| 281 | java/core/generate-test-sources-build.xml \ |
| 282 | java/core/pom.xml \ |
| 283 | java/core/src/main/java/com/google/protobuf/AbstractMessage.java \ |
| 284 | java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java \ |
| 285 | java/core/src/main/java/com/google/protobuf/AbstractParser.java \ |
| 286 | java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 287 | java/core/src/main/java/com/google/protobuf/AllocatedBuffer.java \ |
Adam Cozzette | 5d647e1 | 2017-12-01 10:59:52 -0800 | [diff] [blame] | 288 | java/core/src/main/java/com/google/protobuf/Android.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 289 | java/core/src/main/java/com/google/protobuf/ArrayDecoders.java \ |
| 290 | java/core/src/main/java/com/google/protobuf/BinaryReader.java \ |
| 291 | java/core/src/main/java/com/google/protobuf/BinaryWriter.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 292 | java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java \ |
| 293 | java/core/src/main/java/com/google/protobuf/BlockingService.java \ |
| 294 | java/core/src/main/java/com/google/protobuf/BooleanArrayList.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 295 | java/core/src/main/java/com/google/protobuf/BufferAllocator.java \ |
Jisi Liu | 3b3c8ab | 2016-03-30 11:39:59 -0700 | [diff] [blame] | 296 | java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java \ |
| 297 | java/core/src/main/java/com/google/protobuf/ByteOutput.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 298 | java/core/src/main/java/com/google/protobuf/ByteString.java \ |
| 299 | java/core/src/main/java/com/google/protobuf/CodedInputStream.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 300 | java/core/src/main/java/com/google/protobuf/CodedInputStreamReader.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 301 | java/core/src/main/java/com/google/protobuf/CodedOutputStream.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 302 | java/core/src/main/java/com/google/protobuf/CodedOutputStreamWriter.java \ |
| 303 | java/core/src/main/java/com/google/protobuf/DescriptorMessageInfoFactory.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 304 | java/core/src/main/java/com/google/protobuf/Descriptors.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 305 | java/core/src/main/java/com/google/protobuf/DiscardUnknownFieldsParser.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 306 | java/core/src/main/java/com/google/protobuf/DoubleArrayList.java \ |
| 307 | java/core/src/main/java/com/google/protobuf/DynamicMessage.java \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 308 | java/core/src/main/java/com/google/protobuf/ExperimentalApi.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 309 | java/core/src/main/java/com/google/protobuf/Extension.java \ |
| 310 | java/core/src/main/java/com/google/protobuf/ExtensionLite.java \ |
| 311 | java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java \ |
Adam Cozzette | d64a2d9 | 2016-06-29 15:23:27 -0700 | [diff] [blame] | 312 | java/core/src/main/java/com/google/protobuf/ExtensionRegistryFactory.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 313 | java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 314 | java/core/src/main/java/com/google/protobuf/ExtensionSchema.java \ |
| 315 | java/core/src/main/java/com/google/protobuf/ExtensionSchemaFull.java \ |
| 316 | java/core/src/main/java/com/google/protobuf/ExtensionSchemaLite.java \ |
| 317 | java/core/src/main/java/com/google/protobuf/ExtensionSchemas.java \ |
| 318 | java/core/src/main/java/com/google/protobuf/FieldInfo.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 319 | java/core/src/main/java/com/google/protobuf/FieldSet.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 320 | java/core/src/main/java/com/google/protobuf/FieldType.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 321 | java/core/src/main/java/com/google/protobuf/FloatArrayList.java \ |
| 322 | java/core/src/main/java/com/google/protobuf/GeneratedMessage.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 323 | java/core/src/main/java/com/google/protobuf/GeneratedMessageInfoFactory.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 324 | java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 325 | java/core/src/main/java/com/google/protobuf/GeneratedMessageV3.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 326 | java/core/src/main/java/com/google/protobuf/IntArrayList.java \ |
| 327 | java/core/src/main/java/com/google/protobuf/Internal.java \ |
| 328 | java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \ |
Adam Cozzette | 13fd045 | 2017-09-12 10:32:01 -0700 | [diff] [blame] | 329 | java/core/src/main/java/com/google/protobuf/IterableByteBufferInputStream.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 330 | java/core/src/main/java/com/google/protobuf/JavaType.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 331 | java/core/src/main/java/com/google/protobuf/LazyField.java \ |
| 332 | java/core/src/main/java/com/google/protobuf/LazyFieldLite.java \ |
| 333 | java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java \ |
| 334 | java/core/src/main/java/com/google/protobuf/LazyStringList.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 335 | java/core/src/main/java/com/google/protobuf/ListFieldSchema.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 336 | java/core/src/main/java/com/google/protobuf/LongArrayList.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 337 | java/core/src/main/java/com/google/protobuf/ManifestSchemaFactory.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 338 | java/core/src/main/java/com/google/protobuf/MapEntry.java \ |
| 339 | java/core/src/main/java/com/google/protobuf/MapEntryLite.java \ |
| 340 | java/core/src/main/java/com/google/protobuf/MapField.java \ |
| 341 | java/core/src/main/java/com/google/protobuf/MapFieldLite.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 342 | java/core/src/main/java/com/google/protobuf/MapFieldSchema.java \ |
| 343 | java/core/src/main/java/com/google/protobuf/MapFieldSchemaFull.java \ |
| 344 | java/core/src/main/java/com/google/protobuf/MapFieldSchemaLite.java \ |
| 345 | java/core/src/main/java/com/google/protobuf/MapFieldSchemas.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 346 | java/core/src/main/java/com/google/protobuf/Message.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 347 | java/core/src/main/java/com/google/protobuf/MessageInfo.java \ |
| 348 | java/core/src/main/java/com/google/protobuf/MessageInfoFactory.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 349 | java/core/src/main/java/com/google/protobuf/MessageLite.java \ |
| 350 | java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \ |
| 351 | java/core/src/main/java/com/google/protobuf/MessageLiteToString.java \ |
| 352 | java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java \ |
| 353 | java/core/src/main/java/com/google/protobuf/MessageReflection.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 354 | java/core/src/main/java/com/google/protobuf/MessageSchema.java \ |
| 355 | java/core/src/main/java/com/google/protobuf/MessageSetSchema.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 356 | java/core/src/main/java/com/google/protobuf/MutabilityOracle.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 357 | java/core/src/main/java/com/google/protobuf/NewInstanceSchema.java \ |
| 358 | java/core/src/main/java/com/google/protobuf/NewInstanceSchemaFull.java \ |
| 359 | java/core/src/main/java/com/google/protobuf/NewInstanceSchemaLite.java \ |
| 360 | java/core/src/main/java/com/google/protobuf/NewInstanceSchemas.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 361 | java/core/src/main/java/com/google/protobuf/NioByteString.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 362 | java/core/src/main/java/com/google/protobuf/OneofInfo.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 363 | java/core/src/main/java/com/google/protobuf/Parser.java \ |
Feng Xiao | d36c0c5 | 2017-03-29 14:32:48 -0700 | [diff] [blame] | 364 | java/core/src/main/java/com/google/protobuf/PrimitiveNonBoxingCollection.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 365 | java/core/src/main/java/com/google/protobuf/ProtoSyntax.java \ |
| 366 | java/core/src/main/java/com/google/protobuf/Protobuf.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 367 | java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 368 | java/core/src/main/java/com/google/protobuf/ProtobufLists.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 369 | java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \ |
| 370 | java/core/src/main/java/com/google/protobuf/ProtocolStringList.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 371 | java/core/src/main/java/com/google/protobuf/RawMessageInfo.java \ |
| 372 | java/core/src/main/java/com/google/protobuf/Reader.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 373 | java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 374 | java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 375 | java/core/src/main/java/com/google/protobuf/RopeByteString.java \ |
| 376 | java/core/src/main/java/com/google/protobuf/RpcCallback.java \ |
| 377 | java/core/src/main/java/com/google/protobuf/RpcChannel.java \ |
| 378 | java/core/src/main/java/com/google/protobuf/RpcController.java \ |
| 379 | java/core/src/main/java/com/google/protobuf/RpcUtil.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 380 | java/core/src/main/java/com/google/protobuf/Schema.java \ |
| 381 | java/core/src/main/java/com/google/protobuf/SchemaFactory.java \ |
| 382 | java/core/src/main/java/com/google/protobuf/SchemaUtil.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 383 | java/core/src/main/java/com/google/protobuf/Service.java \ |
| 384 | java/core/src/main/java/com/google/protobuf/ServiceException.java \ |
| 385 | java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 386 | java/core/src/main/java/com/google/protobuf/SingleFieldBuilderV3.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 387 | java/core/src/main/java/com/google/protobuf/SmallSortedMap.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 388 | java/core/src/main/java/com/google/protobuf/StructuralMessageInfo.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 389 | java/core/src/main/java/com/google/protobuf/TextFormat.java \ |
| 390 | java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java \ |
Jisi Liu | 3b3c8ab | 2016-03-30 11:39:59 -0700 | [diff] [blame] | 391 | java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java \ |
| 392 | java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java \ |
Paul Yang | 7bff839 | 2019-07-19 14:49:01 -0700 | [diff] [blame] | 393 | java/core/src/main/java/com/google/protobuf/TypeRegistry.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 394 | java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 395 | java/core/src/main/java/com/google/protobuf/UnknownFieldSchema.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 396 | java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java \ |
| 397 | java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 398 | java/core/src/main/java/com/google/protobuf/UnknownFieldSetLiteSchema.java \ |
| 399 | java/core/src/main/java/com/google/protobuf/UnknownFieldSetSchema.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 400 | java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \ |
Jisi Liu | 5221dcb | 2016-01-29 13:51:05 -0800 | [diff] [blame] | 401 | java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 402 | java/core/src/main/java/com/google/protobuf/UnsafeUtil.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 403 | java/core/src/main/java/com/google/protobuf/Utf8.java \ |
| 404 | java/core/src/main/java/com/google/protobuf/WireFormat.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 405 | java/core/src/main/java/com/google/protobuf/Writer.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 406 | java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 407 | java/core/src/test/java/com/google/protobuf/AbstractProto2LiteSchemaTest.java \ |
| 408 | java/core/src/test/java/com/google/protobuf/AbstractProto2SchemaTest.java \ |
| 409 | java/core/src/test/java/com/google/protobuf/AbstractProto3LiteSchemaTest.java \ |
| 410 | java/core/src/test/java/com/google/protobuf/AbstractProto3SchemaTest.java \ |
| 411 | java/core/src/test/java/com/google/protobuf/AbstractSchemaTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 412 | java/core/src/test/java/com/google/protobuf/AnyTest.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 413 | java/core/src/test/java/com/google/protobuf/ArrayDecodersTest.java \ |
| 414 | java/core/src/test/java/com/google/protobuf/BinaryProtocolTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 415 | java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java \ |
| 416 | java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java \ |
Jisi Liu | 3b3c8ab | 2016-03-30 11:39:59 -0700 | [diff] [blame] | 417 | java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 418 | java/core/src/test/java/com/google/protobuf/ByteStringTest.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 419 | java/core/src/test/java/com/google/protobuf/CachedFieldSizeTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 420 | java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 421 | java/core/src/test/java/com/google/protobuf/CodedAdapterTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 422 | java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java \ |
| 423 | java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \ |
Anuraag Agrawal | 3e944ae | 2017-10-31 15:12:11 +0900 | [diff] [blame] | 424 | java/core/src/test/java/com/google/protobuf/DecodeUtf8Test.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 425 | java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \ |
| 426 | java/core/src/test/java/com/google/protobuf/DescriptorsTest.java \ |
Jisi Liu | bf658c2 | 2017-07-19 14:32:22 -0700 | [diff] [blame] | 427 | java/core/src/test/java/com/google/protobuf/DiscardUnknownFieldsTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 428 | java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java \ |
| 429 | java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java \ |
Jisi Liu | 3b3c8ab | 2016-03-30 11:39:59 -0700 | [diff] [blame] | 430 | java/core/src/test/java/com/google/protobuf/EnumTest.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 431 | java/core/src/test/java/com/google/protobuf/ExperimentalMessageFactory.java \ |
| 432 | java/core/src/test/java/com/google/protobuf/ExperimentalSerializationUtil.java \ |
| 433 | java/core/src/test/java/com/google/protobuf/ExperimentalTestDataProvider.java \ |
Adam Cozzette | d64a2d9 | 2016-06-29 15:23:27 -0700 | [diff] [blame] | 434 | java/core/src/test/java/com/google/protobuf/ExtensionRegistryFactoryTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 435 | java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java \ |
| 436 | java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java \ |
| 437 | java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \ |
| 438 | java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java \ |
| 439 | java/core/src/test/java/com/google/protobuf/IntArrayListTest.java \ |
| 440 | java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java \ |
| 441 | java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \ |
| 442 | java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \ |
| 443 | java/core/src/test/java/com/google/protobuf/LazyFieldTest.java \ |
| 444 | java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \ |
| 445 | java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \ |
| 446 | java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \ |
| 447 | java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 448 | java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java \ |
| 449 | java/core/src/test/java/com/google/protobuf/LongArrayListTest.java \ |
| 450 | java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \ |
| 451 | java/core/src/test/java/com/google/protobuf/MapForProto2Test.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 452 | java/core/src/test/java/com/google/protobuf/MapLiteTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 453 | java/core/src/test/java/com/google/protobuf/MapTest.java \ |
| 454 | java/core/src/test/java/com/google/protobuf/MessageTest.java \ |
| 455 | java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java \ |
| 456 | java/core/src/test/java/com/google/protobuf/NioByteStringTest.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 457 | java/core/src/test/java/com/google/protobuf/PackedFieldTest.java \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 458 | java/core/src/test/java/com/google/protobuf/ParseExceptionsTest.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 459 | java/core/src/test/java/com/google/protobuf/ParserLiteTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 460 | java/core/src/test/java/com/google/protobuf/ParserTest.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 461 | java/core/src/test/java/com/google/protobuf/Proto2ExtensionLookupSchemaTest.java \ |
| 462 | java/core/src/test/java/com/google/protobuf/Proto2LiteSchemaTest.java \ |
| 463 | java/core/src/test/java/com/google/protobuf/Proto2MessageFactory.java \ |
| 464 | java/core/src/test/java/com/google/protobuf/Proto2MessageInfoFactory.java \ |
| 465 | java/core/src/test/java/com/google/protobuf/Proto2MessageLiteFactory.java \ |
| 466 | java/core/src/test/java/com/google/protobuf/Proto2SchemaTest.java \ |
| 467 | java/core/src/test/java/com/google/protobuf/Proto2UnknownEnumValueTest.java \ |
| 468 | java/core/src/test/java/com/google/protobuf/Proto3LiteSchemaTest.java \ |
| 469 | java/core/src/test/java/com/google/protobuf/Proto3MessageFactory.java \ |
| 470 | java/core/src/test/java/com/google/protobuf/Proto3MessageInfoFactory.java \ |
| 471 | java/core/src/test/java/com/google/protobuf/Proto3MessageLiteFactory.java \ |
| 472 | java/core/src/test/java/com/google/protobuf/Proto3MessageLiteInfoFactory.java \ |
| 473 | java/core/src/test/java/com/google/protobuf/Proto3SchemaTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 474 | java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 475 | java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderV3Test.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 476 | java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \ |
| 477 | java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java \ |
| 478 | java/core/src/test/java/com/google/protobuf/ServiceTest.java \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 479 | java/core/src/test/java/com/google/protobuf/SingleFieldBuilderV3Test.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 480 | java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java \ |
| 481 | java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java \ |
Jisi Liu | 66c1dac | 2017-07-19 14:38:57 -0700 | [diff] [blame] | 482 | java/core/src/test/java/com/google/protobuf/TestBadIdentifiersLite.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 483 | java/core/src/test/java/com/google/protobuf/TestSchemas.java \ |
| 484 | java/core/src/test/java/com/google/protobuf/TestSchemasLite.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 485 | java/core/src/test/java/com/google/protobuf/TestUtil.java \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 486 | java/core/src/test/java/com/google/protobuf/TestUtilLite.java \ |
Jisi Liu | 3b3c8ab | 2016-03-30 11:39:59 -0700 | [diff] [blame] | 487 | java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java \ |
| 488 | java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 489 | java/core/src/test/java/com/google/protobuf/TextFormatTest.java \ |
Paul Yang | 7bff839 | 2019-07-19 14:49:01 -0700 | [diff] [blame] | 490 | java/core/src/test/java/com/google/protobuf/TypeRegistryTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 491 | java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 492 | java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \ |
| 493 | java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 494 | java/core/src/test/java/com/google/protobuf/Utf8Test.java \ |
| 495 | java/core/src/test/java/com/google/protobuf/Utf8Utils.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 496 | java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 497 | java/core/src/test/java/com/google/protobuf/WireFormatLiteTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 498 | java/core/src/test/java/com/google/protobuf/WireFormatTest.java \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 499 | java/core/src/test/java/com/google/protobuf/WrappersLiteOfMethodTest.java \ |
| 500 | java/core/src/test/java/com/google/protobuf/WrappersOfMethodTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 501 | java/core/src/test/proto/com/google/protobuf/any_test.proto \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 502 | java/core/src/test/proto/com/google/protobuf/cached_field_size_test.proto \ |
Jisi Liu | dd69d5c | 2017-08-31 11:11:21 -0700 | [diff] [blame] | 503 | java/core/src/test/proto/com/google/protobuf/deprecated_file.proto \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 504 | java/core/src/test/proto/com/google/protobuf/field_presence_test.proto \ |
| 505 | java/core/src/test/proto/com/google/protobuf/lazy_fields_lite.proto \ |
| 506 | java/core/src/test/proto/com/google/protobuf/lite_equals_and_hash.proto \ |
| 507 | java/core/src/test/proto/com/google/protobuf/map_for_proto2_lite_test.proto \ |
| 508 | java/core/src/test/proto/com/google/protobuf/map_for_proto2_test.proto \ |
| 509 | java/core/src/test/proto/com/google/protobuf/map_initialization_order_test.proto \ |
Adam Cozzette | ec57f51 | 2018-03-19 15:38:34 -0700 | [diff] [blame] | 510 | java/core/src/test/proto/com/google/protobuf/map_lite_test.proto \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 511 | java/core/src/test/proto/com/google/protobuf/map_test.proto \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 512 | java/core/src/test/proto/com/google/protobuf/message_lite_extension_util_test.proto\ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 513 | java/core/src/test/proto/com/google/protobuf/multiple_files_test.proto \ |
| 514 | java/core/src/test/proto/com/google/protobuf/nested_builders_test.proto \ |
| 515 | java/core/src/test/proto/com/google/protobuf/nested_extension.proto \ |
| 516 | java/core/src/test/proto/com/google/protobuf/nested_extension_lite.proto \ |
| 517 | java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto \ |
| 518 | java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto \ |
| 519 | java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto \ |
| 520 | java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto \ |
| 521 | java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 522 | java/core/src/test/proto/com/google/protobuf/packed_field_test.proto \ |
| 523 | java/core/src/test/proto/com/google/protobuf/proto2_message.proto \ |
| 524 | java/core/src/test/proto/com/google/protobuf/proto2_message_lite.proto \ |
Hao Nguyen | d0f91c8 | 2019-03-06 12:39:12 -0800 | [diff] [blame] | 525 | java/core/src/test/proto/com/google/protobuf/proto2_unknown_enum_values.proto \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 526 | java/core/src/test/proto/com/google/protobuf/proto3_message.proto \ |
| 527 | java/core/src/test/proto/com/google/protobuf/proto3_message_lite.proto \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 528 | java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto \ |
| 529 | java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto \ |
| 530 | java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto \ |
| 531 | java/core/src/test/proto/com/google/protobuf/test_custom_options.proto \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 532 | java/core/src/test/proto/com/google/protobuf/wrappers_test.proto \ |
Derek Perez | bbd6999 | 2021-04-21 17:50:12 -0700 | [diff] [blame] | 533 | java/internal/BUILD \ |
| 534 | java/internal/testing.bzl \ |
Deanna Garcia | 9aaaf70 | 2021-03-31 17:23:02 +0000 | [diff] [blame] | 535 | java/kotlin/generate-sources-build.xml \ |
| 536 | java/kotlin/generate-test-sources-build.xml \ |
| 537 | java/kotlin/pom.xml \ |
Deanna Garcia | b0acba3 | 2021-03-31 16:54:01 +0000 | [diff] [blame] | 538 | java/kotlin/src/main/kotlin/com/google/protobuf/DslList.kt \ |
| 539 | java/kotlin/src/main/kotlin/com/google/protobuf/DslMap.kt \ |
| 540 | java/kotlin/src/main/kotlin/com/google/protobuf/DslProxy.kt \ |
| 541 | java/kotlin/src/main/kotlin/com/google/protobuf/ExtendableMessageExtensions.kt \ |
| 542 | java/kotlin/src/main/kotlin/com/google/protobuf/ExtendableMessageLiteExtensions.kt\ |
| 543 | java/kotlin/src/main/kotlin/com/google/protobuf/ExtensionList.kt \ |
| 544 | java/kotlin/src/main/kotlin/com/google/protobuf/OnlyForUseByGeneratedProtoCode.kt\ |
| 545 | java/kotlin/src/main/kotlin/com/google/protobuf/ProtoDslMarker.kt \ |
| 546 | java/kotlin/src/main/kotlin/com/google/protobuf/UnmodifiableCollections.kt \ |
| 547 | java/kotlin/src/test/kotlin/com/google/protobuf/DslListTest.kt \ |
| 548 | java/kotlin/src/test/kotlin/com/google/protobuf/DslMapTest.kt \ |
| 549 | java/kotlin/src/test/kotlin/com/google/protobuf/ExtendableMessageExtensionsTest.kt\ |
| 550 | java/kotlin/src/test/kotlin/com/google/protobuf/ExtensionListTest.kt \ |
| 551 | java/kotlin/src/test/kotlin/com/google/protobuf/Proto2Test.kt \ |
| 552 | java/kotlin/src/test/kotlin/com/google/protobuf/Proto3Test.kt \ |
| 553 | java/kotlin/src/test/proto/com/google/protobuf/evil_names_proto2.proto \ |
| 554 | java/kotlin/src/test/proto/com/google/protobuf/evil_names_proto3.proto \ |
| 555 | java/kotlin/src/test/proto/com/google/protobuf/example_extensible_message.proto \ |
| 556 | java/kotlin/src/test/proto/com/google/protobuf/multiple_files_proto3.proto \ |
Deanna Garcia | 9aaaf70 | 2021-03-31 17:23:02 +0000 | [diff] [blame] | 557 | java/kotlin-lite/generate-sources-build.xml \ |
| 558 | java/kotlin-lite/generate-test-sources-build.xml \ |
| 559 | java/kotlin-lite/lite.awk \ |
| 560 | java/kotlin-lite/pom.xml \ |
| 561 | java/kotlin-lite/process-lite-sources-build.xml \ |
Deanna Garcia | b0acba3 | 2021-03-31 16:54:01 +0000 | [diff] [blame] | 562 | java/kotlin-lite/src/test/kotlin/com/google/protobuf/ExtendableMessageLiteExtensionsTest.kt\ |
| 563 | java/kotlin-lite/src/test/kotlin/com/google/protobuf/Proto2LiteTest.kt \ |
Feng Xiao | a29e2bf | 2018-04-17 15:44:55 -0700 | [diff] [blame] | 564 | java/lite.md \ |
Yannic | f0cb9cd | 2020-02-13 22:04:14 +0100 | [diff] [blame] | 565 | java/lite/BUILD \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 566 | java/lite/generate-sources-build.xml \ |
| 567 | java/lite/generate-test-sources-build.xml \ |
| 568 | java/lite/lite.awk \ |
| 569 | java/lite/pom.xml \ |
| 570 | java/lite/process-lite-sources-build.xml \ |
| 571 | java/lite/src/test/java/com/google/protobuf/LiteTest.java \ |
| 572 | java/lite/src/test/java/com/google/protobuf/Proto2MessageLiteInfoFactory.java \ |
Derek Perez | bbd6999 | 2021-04-21 17:50:12 -0700 | [diff] [blame] | 573 | java/BUILD \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 574 | java/pom.xml \ |
Yannic | f0cb9cd | 2020-02-13 22:04:14 +0100 | [diff] [blame] | 575 | java/util/BUILD \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 576 | java/util/pom.xml \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 577 | java/util/src/main/java/com/google/protobuf/util/Durations.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 578 | java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java \ |
| 579 | java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java \ |
| 580 | java/util/src/main/java/com/google/protobuf/util/JsonFormat.java \ |
| 581 | java/util/src/main/java/com/google/protobuf/util/TimeUtil.java \ |
Hao Nguyen | 0a67788 | 2019-05-31 06:26:08 -0700 | [diff] [blame] | 582 | java/util/src/main/java/com/google/protobuf/util/Structs.java \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 583 | java/util/src/main/java/com/google/protobuf/util/Timestamps.java \ |
Hao Nguyen | 0a67788 | 2019-05-31 06:26:08 -0700 | [diff] [blame] | 584 | java/util/src/main/java/com/google/protobuf/util/Values.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 585 | java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java \ |
| 586 | java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java \ |
| 587 | java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java \ |
Yannic Bonenberger | 6b1d0f1 | 2020-07-20 18:50:56 +0200 | [diff] [blame] | 588 | java/util/src/test/java/com/google/protobuf/util/StructsTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 589 | java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java \ |
Hao Nguyen | 0a67788 | 2019-05-31 06:26:08 -0700 | [diff] [blame] | 590 | java/util/src/test/java/com/google/protobuf/util/ValuesTest.java \ |
Feng Xiao | ea95676 | 2016-01-14 14:29:51 -0800 | [diff] [blame] | 591 | java/util/src/test/proto/com/google/protobuf/util/json_test.proto |
Feng Xiao | 8f7dec8 | 2014-12-02 14:15:26 -0800 | [diff] [blame] | 592 | |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 593 | objectivec_EXTRA_DIST= \ |
Dave MacLachlan | ab48ecf | 2020-01-20 13:47:20 -0800 | [diff] [blame] | 594 | objectivec/.clang-format \ |
Yannic Bonenberger | 6b1d0f1 | 2020-07-20 18:50:56 +0200 | [diff] [blame] | 595 | objectivec/BUILD \ |
Thomas Van Lenten | 1dcc329 | 2015-05-21 17:14:52 -0400 | [diff] [blame] | 596 | objectivec/DevTools/check_version_stamps.sh \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 597 | objectivec/DevTools/compile_testing_protos.sh \ |
Bo Yang | 50a765b | 2015-05-25 12:48:03 -0700 | [diff] [blame] | 598 | objectivec/DevTools/full_mac_build.sh \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 599 | objectivec/DevTools/pddm.py \ |
| 600 | objectivec/DevTools/pddm_tests.py \ |
Thomas Van Lenten | 79a23c4 | 2016-03-17 10:04:21 -0400 | [diff] [blame] | 601 | objectivec/generate_well_known_types.sh \ |
TeBoring | eef79f3 | 2015-05-25 13:08:09 -0700 | [diff] [blame] | 602 | objectivec/google/protobuf/Any.pbobjc.h \ |
TeBoring | eef79f3 | 2015-05-25 13:08:09 -0700 | [diff] [blame] | 603 | objectivec/google/protobuf/Api.pbobjc.h \ |
TeBoring | eef79f3 | 2015-05-25 13:08:09 -0700 | [diff] [blame] | 604 | objectivec/google/protobuf/Duration.pbobjc.h \ |
TeBoring | eef79f3 | 2015-05-25 13:08:09 -0700 | [diff] [blame] | 605 | objectivec/google/protobuf/Empty.pbobjc.h \ |
TeBoring | eef79f3 | 2015-05-25 13:08:09 -0700 | [diff] [blame] | 606 | objectivec/google/protobuf/FieldMask.pbobjc.h \ |
TeBoring | eef79f3 | 2015-05-25 13:08:09 -0700 | [diff] [blame] | 607 | objectivec/google/protobuf/SourceContext.pbobjc.h \ |
TeBoring | eef79f3 | 2015-05-25 13:08:09 -0700 | [diff] [blame] | 608 | objectivec/google/protobuf/Struct.pbobjc.h \ |
TeBoring | eef79f3 | 2015-05-25 13:08:09 -0700 | [diff] [blame] | 609 | objectivec/google/protobuf/Timestamp.pbobjc.h \ |
TeBoring | eef79f3 | 2015-05-25 13:08:09 -0700 | [diff] [blame] | 610 | objectivec/google/protobuf/Type.pbobjc.h \ |
TeBoring | eef79f3 | 2015-05-25 13:08:09 -0700 | [diff] [blame] | 611 | objectivec/google/protobuf/Wrappers.pbobjc.h \ |
Thomas Van Lenten | 56c48ae | 2020-01-22 15:50:52 -0500 | [diff] [blame] | 612 | objectivec/GPBAny.pbobjc.h \ |
| 613 | objectivec/GPBAny.pbobjc.m \ |
| 614 | objectivec/GPBApi.pbobjc.h \ |
| 615 | objectivec/GPBApi.pbobjc.m \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 616 | objectivec/GPBArray.h \ |
| 617 | objectivec/GPBArray.m \ |
| 618 | objectivec/GPBArray_PackagePrivate.h \ |
| 619 | objectivec/GPBBootstrap.h \ |
| 620 | objectivec/GPBCodedInputStream.h \ |
| 621 | objectivec/GPBCodedInputStream.m \ |
| 622 | objectivec/GPBCodedInputStream_PackagePrivate.h \ |
| 623 | objectivec/GPBCodedOutputStream.h \ |
| 624 | objectivec/GPBCodedOutputStream.m \ |
Thomas Van Lenten | 1bf4b38 | 2016-03-08 09:29:49 -0500 | [diff] [blame] | 625 | objectivec/GPBCodedOutputStream_PackagePrivate.h \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 626 | objectivec/GPBDescriptor.h \ |
| 627 | objectivec/GPBDescriptor.m \ |
| 628 | objectivec/GPBDescriptor_PackagePrivate.h \ |
| 629 | objectivec/GPBDictionary.h \ |
| 630 | objectivec/GPBDictionary.m \ |
| 631 | objectivec/GPBDictionary_PackagePrivate.h \ |
Thomas Van Lenten | 56c48ae | 2020-01-22 15:50:52 -0500 | [diff] [blame] | 632 | objectivec/GPBDuration.pbobjc.h \ |
| 633 | objectivec/GPBDuration.pbobjc.m \ |
| 634 | objectivec/GPBEmpty.pbobjc.h \ |
| 635 | objectivec/GPBEmpty.pbobjc.m \ |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 636 | objectivec/GPBExtensionInternals.h \ |
| 637 | objectivec/GPBExtensionInternals.m \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 638 | objectivec/GPBExtensionRegistry.h \ |
| 639 | objectivec/GPBExtensionRegistry.m \ |
Thomas Van Lenten | 56c48ae | 2020-01-22 15:50:52 -0500 | [diff] [blame] | 640 | objectivec/GPBFieldMask.pbobjc.h \ |
| 641 | objectivec/GPBFieldMask.pbobjc.m \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 642 | objectivec/GPBMessage.h \ |
| 643 | objectivec/GPBMessage.m \ |
| 644 | objectivec/GPBMessage_PackagePrivate.h \ |
| 645 | objectivec/GPBProtocolBuffers.h \ |
| 646 | objectivec/GPBProtocolBuffers.m \ |
| 647 | objectivec/GPBProtocolBuffers_RuntimeSupport.h \ |
| 648 | objectivec/GPBRootObject.h \ |
| 649 | objectivec/GPBRootObject.m \ |
| 650 | objectivec/GPBRootObject_PackagePrivate.h \ |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 651 | objectivec/GPBRuntimeTypes.h \ |
Thomas Van Lenten | 56c48ae | 2020-01-22 15:50:52 -0500 | [diff] [blame] | 652 | objectivec/GPBSourceContext.pbobjc.h \ |
| 653 | objectivec/GPBSourceContext.pbobjc.m \ |
| 654 | objectivec/GPBStruct.pbobjc.h \ |
| 655 | objectivec/GPBStruct.pbobjc.m \ |
| 656 | objectivec/GPBTimestamp.pbobjc.h \ |
| 657 | objectivec/GPBTimestamp.pbobjc.m \ |
| 658 | objectivec/GPBType.pbobjc.h \ |
| 659 | objectivec/GPBType.pbobjc.m \ |
Thomas Van Lenten | d846b0b | 2015-06-08 16:24:57 -0400 | [diff] [blame] | 660 | objectivec/GPBUnknownField.h \ |
| 661 | objectivec/GPBUnknownField.m \ |
| 662 | objectivec/GPBUnknownField_PackagePrivate.h \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 663 | objectivec/GPBUnknownFieldSet.h \ |
| 664 | objectivec/GPBUnknownFieldSet.m \ |
| 665 | objectivec/GPBUnknownFieldSet_PackagePrivate.h \ |
| 666 | objectivec/GPBUtilities.h \ |
| 667 | objectivec/GPBUtilities.m \ |
| 668 | objectivec/GPBUtilities_PackagePrivate.h \ |
| 669 | objectivec/GPBWellKnownTypes.h \ |
| 670 | objectivec/GPBWellKnownTypes.m \ |
| 671 | objectivec/GPBWireFormat.h \ |
| 672 | objectivec/GPBWireFormat.m \ |
Thomas Van Lenten | 56c48ae | 2020-01-22 15:50:52 -0500 | [diff] [blame] | 673 | objectivec/GPBWrappers.pbobjc.h \ |
| 674 | objectivec/GPBWrappers.pbobjc.m \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 675 | objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \ |
| 676 | objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ |
Thomas Van Lenten | dce8229 | 2018-04-06 10:41:28 -0400 | [diff] [blame] | 677 | objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 678 | objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 679 | objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ |
| 680 | objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ |
| 681 | objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \ |
| 682 | objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ |
Thomas Van Lenten | dce8229 | 2018-04-06 10:41:28 -0400 | [diff] [blame] | 683 | objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 684 | objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ |
| 685 | objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ |
| 686 | objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ |
Thomas Van Lenten | bd00671 | 2019-01-07 16:42:22 -0500 | [diff] [blame] | 687 | objectivec/ProtocolBuffers_tvOS.xcodeproj/project.pbxproj \ |
| 688 | objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ |
| 689 | objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \ |
| 690 | objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ |
| 691 | objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ |
| 692 | objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ |
Bo Yang | 50a765b | 2015-05-25 12:48:03 -0700 | [diff] [blame] | 693 | objectivec/README.md \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 694 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.pbxproj \ |
| 695 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ |
| 696 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/OSXCocoaPodsTester.xcscheme \ |
| 697 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.h \ |
| 698 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.m \ |
| 699 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \ |
| 700 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Base.lproj/MainMenu.xib \ |
| 701 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Info.plist \ |
| 702 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/main.m \ |
| 703 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-framework \ |
| 704 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-static \ |
| 705 | objectivec/Tests/CocoaPods/README.md \ |
| 706 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-framework \ |
| 707 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-static \ |
| 708 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.pbxproj \ |
| 709 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ |
| 710 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/iOSCocoaPodsTester.xcscheme \ |
| 711 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.h \ |
| 712 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.m \ |
| 713 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \ |
| 714 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/LaunchScreen.storyboard \ |
| 715 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/Main.storyboard \ |
| 716 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Info.plist \ |
| 717 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.h \ |
| 718 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.m \ |
| 719 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/main.m \ |
| 720 | objectivec/Tests/CocoaPods/run_tests.sh \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 721 | objectivec/Tests/golden_message \ |
| 722 | objectivec/Tests/golden_packed_fields_message \ |
| 723 | objectivec/Tests/GPBARCUnittestProtos.m \ |
| 724 | objectivec/Tests/GPBArrayTests.m \ |
| 725 | objectivec/Tests/GPBCodedInputStreamTests.m \ |
| 726 | objectivec/Tests/GPBCodedOuputStreamTests.m \ |
Thomas Van Lenten | e998b8f | 2018-03-28 12:27:15 -0400 | [diff] [blame] | 727 | objectivec/Tests/GPBCompileTest01.m \ |
| 728 | objectivec/Tests/GPBCompileTest02.m \ |
| 729 | objectivec/Tests/GPBCompileTest03.m \ |
| 730 | objectivec/Tests/GPBCompileTest04.m \ |
| 731 | objectivec/Tests/GPBCompileTest05.m \ |
| 732 | objectivec/Tests/GPBCompileTest06.m \ |
| 733 | objectivec/Tests/GPBCompileTest07.m \ |
| 734 | objectivec/Tests/GPBCompileTest08.m \ |
| 735 | objectivec/Tests/GPBCompileTest09.m \ |
| 736 | objectivec/Tests/GPBCompileTest10.m \ |
| 737 | objectivec/Tests/GPBCompileTest11.m \ |
| 738 | objectivec/Tests/GPBCompileTest12.m \ |
| 739 | objectivec/Tests/GPBCompileTest13.m \ |
| 740 | objectivec/Tests/GPBCompileTest14.m \ |
| 741 | objectivec/Tests/GPBCompileTest15.m \ |
| 742 | objectivec/Tests/GPBCompileTest16.m \ |
| 743 | objectivec/Tests/GPBCompileTest17.m \ |
| 744 | objectivec/Tests/GPBCompileTest18.m \ |
| 745 | objectivec/Tests/GPBCompileTest19.m \ |
| 746 | objectivec/Tests/GPBCompileTest20.m \ |
| 747 | objectivec/Tests/GPBCompileTest21.m \ |
| 748 | objectivec/Tests/GPBCompileTest22.m \ |
| 749 | objectivec/Tests/GPBCompileTest23.m \ |
| 750 | objectivec/Tests/GPBCompileTest24.m \ |
| 751 | objectivec/Tests/GPBCompileTest25.m \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 752 | objectivec/Tests/GPBConcurrencyTests.m \ |
| 753 | objectivec/Tests/GPBDescriptorTests.m \ |
| 754 | objectivec/Tests/GPBDictionaryTests+Bool.m \ |
| 755 | objectivec/Tests/GPBDictionaryTests+Int32.m \ |
| 756 | objectivec/Tests/GPBDictionaryTests+Int64.m \ |
| 757 | objectivec/Tests/GPBDictionaryTests+String.m \ |
| 758 | objectivec/Tests/GPBDictionaryTests+UInt32.m \ |
| 759 | objectivec/Tests/GPBDictionaryTests+UInt64.m \ |
Thomas Van Lenten | 988ffe0 | 2017-01-04 15:03:42 -0500 | [diff] [blame] | 760 | objectivec/Tests/GPBDictionaryTests.m \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 761 | objectivec/Tests/GPBDictionaryTests.pddm \ |
Thomas Van Lenten | 49e4ba6 | 2017-05-17 13:38:51 -0400 | [diff] [blame] | 762 | objectivec/Tests/GPBExtensionRegistryTest.m \ |
Dave MacLachlan | 74956e1 | 2019-12-17 17:32:09 -0800 | [diff] [blame] | 763 | objectivec/Tests/GPBMessageTests+ClassNames.m \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 764 | objectivec/Tests/GPBMessageTests+Merge.m \ |
| 765 | objectivec/Tests/GPBMessageTests+Runtime.m \ |
| 766 | objectivec/Tests/GPBMessageTests+Serialization.m \ |
| 767 | objectivec/Tests/GPBMessageTests.m \ |
Thomas Van Lenten | ad2d5c9 | 2015-09-30 13:34:16 -0400 | [diff] [blame] | 768 | objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 769 | objectivec/Tests/GPBPerfTests.m \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 770 | objectivec/Tests/GPBSwiftTests.swift \ |
| 771 | objectivec/Tests/GPBTestUtilities.h \ |
| 772 | objectivec/Tests/GPBTestUtilities.m \ |
| 773 | objectivec/Tests/GPBUnittestProtos.m \ |
Thomas Van Lenten | 13a4124 | 2016-09-01 11:45:50 -0400 | [diff] [blame] | 774 | objectivec/Tests/GPBUnittestProtos2.m \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 775 | objectivec/Tests/GPBUnknownFieldSetTest.m \ |
| 776 | objectivec/Tests/GPBUtilitiesTests.m \ |
| 777 | objectivec/Tests/GPBWellKnownTypesTest.m \ |
| 778 | objectivec/Tests/GPBWireFormatTests.m \ |
Thomas Van Lenten | 92a879b | 2018-11-14 16:12:30 -0500 | [diff] [blame] | 779 | objectivec/Tests/text_format_extensions_unittest_data.txt \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 780 | objectivec/Tests/text_format_map_unittest_data.txt \ |
| 781 | objectivec/Tests/text_format_unittest_data.txt \ |
| 782 | objectivec/Tests/unittest_cycle.proto \ |
Thomas Van Lenten | dad775b | 2016-12-08 10:14:11 -0500 | [diff] [blame] | 783 | objectivec/Tests/unittest_deprecated.proto \ |
| 784 | objectivec/Tests/unittest_deprecated_file.proto \ |
Thomas Van Lenten | 13a4124 | 2016-09-01 11:45:50 -0400 | [diff] [blame] | 785 | objectivec/Tests/unittest_extension_chain_a.proto \ |
| 786 | objectivec/Tests/unittest_extension_chain_b.proto \ |
| 787 | objectivec/Tests/unittest_extension_chain_c.proto \ |
| 788 | objectivec/Tests/unittest_extension_chain_d.proto \ |
| 789 | objectivec/Tests/unittest_extension_chain_e.proto \ |
| 790 | objectivec/Tests/unittest_extension_chain_f.proto \ |
| 791 | objectivec/Tests/unittest_extension_chain_g.proto \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 792 | objectivec/Tests/unittest_objc.proto \ |
Dave MacLachlan | ef3a725 | 2018-11-21 15:17:21 -0800 | [diff] [blame] | 793 | objectivec/Tests/unittest_objc_options.proto \ |
Bo Yang | 1c81d0f | 2015-08-26 18:15:39 -0700 | [diff] [blame] | 794 | objectivec/Tests/unittest_objc_startup.proto \ |
Thomas Van Lenten | 30650d8 | 2015-05-01 08:57:16 -0400 | [diff] [blame] | 795 | objectivec/Tests/unittest_runtime_proto2.proto \ |
| 796 | objectivec/Tests/unittest_runtime_proto3.proto \ |
| 797 | objectivec/Tests/UnitTests-Bridging-Header.h \ |
Jorge Canizales | 46b0a65 | 2015-05-14 22:38:52 -0700 | [diff] [blame] | 798 | objectivec/Tests/UnitTests-Info.plist \ |
| 799 | Protobuf.podspec |
Jisi Liu | ff35de3 | 2015-02-21 14:58:02 -0800 | [diff] [blame] | 800 | |
Paul Yang | 46ae90d | 2016-12-08 11:16:49 -0800 | [diff] [blame] | 801 | php_EXTRA_DIST= \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 802 | composer.json \ |
| 803 | php/README.md \ |
| 804 | php/composer.json \ |
Joshua Haberman | ffb2b53 | 2020-07-09 11:06:24 -0700 | [diff] [blame] | 805 | php/ext/google/protobuf/arena.c \ |
| 806 | php/ext/google/protobuf/arena.h \ |
Paul Yang | 6b27c1f | 2017-03-17 11:08:06 -0700 | [diff] [blame] | 807 | php/ext/google/protobuf/array.c \ |
Joshua Haberman | ffb2b53 | 2020-07-09 11:06:24 -0700 | [diff] [blame] | 808 | php/ext/google/protobuf/array.h \ |
Paul Yang | 6b27c1f | 2017-03-17 11:08:06 -0700 | [diff] [blame] | 809 | php/ext/google/protobuf/config.m4 \ |
Joshua Haberman | ffb2b53 | 2020-07-09 11:06:24 -0700 | [diff] [blame] | 810 | php/ext/google/protobuf/convert.c \ |
| 811 | php/ext/google/protobuf/convert.h \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 812 | php/ext/google/protobuf/def.c \ |
Joshua Haberman | ffb2b53 | 2020-07-09 11:06:24 -0700 | [diff] [blame] | 813 | php/ext/google/protobuf/def.h \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 814 | php/ext/google/protobuf/map.c \ |
Joshua Haberman | ffb2b53 | 2020-07-09 11:06:24 -0700 | [diff] [blame] | 815 | php/ext/google/protobuf/map.h \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 816 | php/ext/google/protobuf/message.c \ |
Joshua Haberman | ffb2b53 | 2020-07-09 11:06:24 -0700 | [diff] [blame] | 817 | php/ext/google/protobuf/message.h \ |
| 818 | php/ext/google/protobuf/names.c \ |
| 819 | php/ext/google/protobuf/names.h \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 820 | php/ext/google/protobuf/package.xml \ |
Joshua Haberman | ffb2b53 | 2020-07-09 11:06:24 -0700 | [diff] [blame] | 821 | php/ext/google/protobuf/php-upb.c \ |
| 822 | php/ext/google/protobuf/php-upb.h \ |
Paul Yang | 6b27c1f | 2017-03-17 11:08:06 -0700 | [diff] [blame] | 823 | php/ext/google/protobuf/protobuf.c \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 824 | php/ext/google/protobuf/protobuf.h \ |
Joshua Haberman | a29f792 | 2020-10-29 10:57:04 -0700 | [diff] [blame] | 825 | php/ext/google/protobuf/wkt.inc \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 826 | php/generate_descriptor_protos.sh \ |
| 827 | php/phpunit.xml \ |
Joshua Haberman | f65bcca | 2020-11-02 09:44:46 -0800 | [diff] [blame] | 828 | php/prepare_c_extension.sh \ |
Paul Yang | 582743b | 2019-02-28 12:55:14 -0800 | [diff] [blame] | 829 | php/release.sh \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 830 | php/src/GPBMetadata/Google/Protobuf/Any.php \ |
| 831 | php/src/GPBMetadata/Google/Protobuf/Api.php \ |
| 832 | php/src/GPBMetadata/Google/Protobuf/Duration.php \ |
| 833 | php/src/GPBMetadata/Google/Protobuf/FieldMask.php \ |
| 834 | php/src/GPBMetadata/Google/Protobuf/GPBEmpty.php \ |
| 835 | php/src/GPBMetadata/Google/Protobuf/Internal/Descriptor.php \ |
| 836 | php/src/GPBMetadata/Google/Protobuf/SourceContext.php \ |
| 837 | php/src/GPBMetadata/Google/Protobuf/Struct.php \ |
| 838 | php/src/GPBMetadata/Google/Protobuf/Timestamp.php \ |
| 839 | php/src/GPBMetadata/Google/Protobuf/Type.php \ |
| 840 | php/src/GPBMetadata/Google/Protobuf/Wrappers.php \ |
Paul Yang | c7457ef | 2017-08-25 08:49:34 -0700 | [diff] [blame] | 841 | php/src/Google/Protobuf/Any.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 842 | php/src/Google/Protobuf/Api.php \ |
| 843 | php/src/Google/Protobuf/BoolValue.php \ |
| 844 | php/src/Google/Protobuf/BytesValue.php \ |
michaelbausor | 21b0e55 | 2017-08-04 16:35:22 -0700 | [diff] [blame] | 845 | php/src/Google/Protobuf/Descriptor.php \ |
| 846 | php/src/Google/Protobuf/DescriptorPool.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 847 | php/src/Google/Protobuf/DoubleValue.php \ |
Paul Yang | 7f8b91f | 2017-09-05 14:10:32 -0700 | [diff] [blame] | 848 | php/src/Google/Protobuf/Duration.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 849 | php/src/Google/Protobuf/Enum.php \ |
michaelbausor | 21b0e55 | 2017-08-04 16:35:22 -0700 | [diff] [blame] | 850 | php/src/Google/Protobuf/EnumDescriptor.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 851 | php/src/Google/Protobuf/EnumValue.php \ |
michaelbausor | 21b0e55 | 2017-08-04 16:35:22 -0700 | [diff] [blame] | 852 | php/src/Google/Protobuf/EnumValueDescriptor.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 853 | php/src/Google/Protobuf/Field.php \ |
michaelbausor | 21b0e55 | 2017-08-04 16:35:22 -0700 | [diff] [blame] | 854 | php/src/Google/Protobuf/FieldDescriptor.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 855 | php/src/Google/Protobuf/FieldMask.php \ |
Brent Shaffer | 6737954 | 2018-05-23 16:43:30 -0700 | [diff] [blame] | 856 | php/src/Google/Protobuf/Field/Cardinality.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 857 | php/src/Google/Protobuf/Field_Cardinality.php \ |
Brent Shaffer | 6737954 | 2018-05-23 16:43:30 -0700 | [diff] [blame] | 858 | php/src/Google/Protobuf/Field/Kind.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 859 | php/src/Google/Protobuf/Field_Kind.php \ |
| 860 | php/src/Google/Protobuf/FloatValue.php \ |
| 861 | php/src/Google/Protobuf/GPBEmpty.php \ |
| 862 | php/src/Google/Protobuf/Int32Value.php \ |
| 863 | php/src/Google/Protobuf/Int64Value.php \ |
Joshua Haberman | e0151ad | 2020-10-29 11:04:54 -0700 | [diff] [blame] | 864 | php/src/Google/Protobuf/Internal/AnyBase.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 865 | php/src/Google/Protobuf/Internal/CodedInputStream.php \ |
| 866 | php/src/Google/Protobuf/Internal/CodedOutputStream.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 867 | php/src/Google/Protobuf/Internal/Descriptor.php \ |
Paul Yang | 46ae90d | 2016-12-08 11:16:49 -0800 | [diff] [blame] | 868 | php/src/Google/Protobuf/Internal/DescriptorPool.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 869 | php/src/Google/Protobuf/Internal/DescriptorProto.php \ |
Brent Shaffer | 6737954 | 2018-05-23 16:43:30 -0700 | [diff] [blame] | 870 | php/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php \ |
| 871 | php/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 872 | php/src/Google/Protobuf/Internal/EnumBuilderContext.php \ |
Brent Shaffer | b9b34e9 | 2017-06-14 15:57:11 -0700 | [diff] [blame] | 873 | php/src/Google/Protobuf/Internal/EnumDescriptor.php \ |
Paul Yang | 46ae90d | 2016-12-08 11:16:49 -0800 | [diff] [blame] | 874 | php/src/Google/Protobuf/Internal/EnumDescriptorProto.php \ |
Brent Shaffer | 6737954 | 2018-05-23 16:43:30 -0700 | [diff] [blame] | 875 | php/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 876 | php/src/Google/Protobuf/Internal/EnumOptions.php \ |
| 877 | php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 878 | php/src/Google/Protobuf/Internal/EnumValueOptions.php \ |
Paul Yang | 2807436 | 2017-08-30 16:50:07 -0700 | [diff] [blame] | 879 | php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 880 | php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \ |
| 881 | php/src/Google/Protobuf/Internal/FieldDescriptor.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 882 | php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \ |
Brent Shaffer | 6737954 | 2018-05-23 16:43:30 -0700 | [diff] [blame] | 883 | php/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php \ |
| 884 | php/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 885 | php/src/Google/Protobuf/Internal/FieldOptions.php \ |
Brent Shaffer | 6737954 | 2018-05-23 16:43:30 -0700 | [diff] [blame] | 886 | php/src/Google/Protobuf/Internal/FieldOptions/CType.php \ |
| 887 | php/src/Google/Protobuf/Internal/FieldOptions/JSType.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 888 | php/src/Google/Protobuf/Internal/FileDescriptor.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 889 | php/src/Google/Protobuf/Internal/FileDescriptorProto.php \ |
| 890 | php/src/Google/Protobuf/Internal/FileDescriptorSet.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 891 | php/src/Google/Protobuf/Internal/FileOptions.php \ |
Brent Shaffer | 6737954 | 2018-05-23 16:43:30 -0700 | [diff] [blame] | 892 | php/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 893 | php/src/Google/Protobuf/Internal/GPBDecodeException.php \ |
| 894 | php/src/Google/Protobuf/Internal/GPBJsonWire.php \ |
| 895 | php/src/Google/Protobuf/Internal/GPBLabel.php \ |
| 896 | php/src/Google/Protobuf/Internal/GPBType.php \ |
| 897 | php/src/Google/Protobuf/Internal/GPBUtil.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 898 | php/src/Google/Protobuf/Internal/GPBWire.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 899 | php/src/Google/Protobuf/Internal/GPBWireType.php \ |
| 900 | php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php \ |
Brent Shaffer | 6737954 | 2018-05-23 16:43:30 -0700 | [diff] [blame] | 901 | php/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 902 | php/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php \ |
michaelbausor | 21b0e55 | 2017-08-04 16:35:22 -0700 | [diff] [blame] | 903 | php/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 904 | php/src/Google/Protobuf/Internal/MapEntry.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 905 | php/src/Google/Protobuf/Internal/MapField.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 906 | php/src/Google/Protobuf/Internal/MapFieldIter.php \ |
| 907 | php/src/Google/Protobuf/Internal/Message.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 908 | php/src/Google/Protobuf/Internal/MessageBuilderContext.php \ |
| 909 | php/src/Google/Protobuf/Internal/MessageOptions.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 910 | php/src/Google/Protobuf/Internal/MethodDescriptorProto.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 911 | php/src/Google/Protobuf/Internal/MethodOptions.php \ |
Brent Shaffer | 6737954 | 2018-05-23 16:43:30 -0700 | [diff] [blame] | 912 | php/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 913 | php/src/Google/Protobuf/Internal/OneofDescriptor.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 914 | php/src/Google/Protobuf/Internal/OneofDescriptorProto.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 915 | php/src/Google/Protobuf/Internal/OneofField.php \ |
| 916 | php/src/Google/Protobuf/Internal/OneofOptions.php \ |
| 917 | php/src/Google/Protobuf/Internal/RawInputStream.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 918 | php/src/Google/Protobuf/Internal/RepeatedField.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 919 | php/src/Google/Protobuf/Internal/RepeatedFieldIter.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 920 | php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php \ |
| 921 | php/src/Google/Protobuf/Internal/ServiceOptions.php \ |
Paul Yang | 46ae90d | 2016-12-08 11:16:49 -0800 | [diff] [blame] | 922 | php/src/Google/Protobuf/Internal/SourceCodeInfo.php \ |
Brent Shaffer | 6737954 | 2018-05-23 16:43:30 -0700 | [diff] [blame] | 923 | php/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php \ |
Joshua Haberman | e0151ad | 2020-10-29 11:04:54 -0700 | [diff] [blame] | 924 | php/src/Google/Protobuf/Internal/TimestampBase.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 925 | php/src/Google/Protobuf/Internal/UninterpretedOption.php \ |
Brent Shaffer | 6737954 | 2018-05-23 16:43:30 -0700 | [diff] [blame] | 926 | php/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php \ |
Feng Xiao | acd5b05 | 2018-08-09 21:21:01 -0700 | [diff] [blame] | 927 | php/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php \ |
| 928 | php/src/Google/Protobuf/Internal/DescriptorProto_ReservedRange.php \ |
| 929 | php/src/Google/Protobuf/Internal/EnumDescriptorProto_EnumReservedRange.php \ |
| 930 | php/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php \ |
| 931 | php/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php \ |
| 932 | php/src/Google/Protobuf/Internal/FieldOptions_CType.php \ |
| 933 | php/src/Google/Protobuf/Internal/FieldOptions_JSType.php \ |
| 934 | php/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.php \ |
| 935 | php/src/Google/Protobuf/Internal/GeneratedCodeInfo_Annotation.php \ |
| 936 | php/src/Google/Protobuf/Internal/MethodOptions_IdempotencyLevel.php \ |
| 937 | php/src/Google/Protobuf/Internal/SourceCodeInfo_Location.php \ |
| 938 | php/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 939 | php/src/Google/Protobuf/ListValue.php \ |
| 940 | php/src/Google/Protobuf/Method.php \ |
| 941 | php/src/Google/Protobuf/Mixin.php \ |
| 942 | php/src/Google/Protobuf/NullValue.php \ |
| 943 | php/src/Google/Protobuf/OneofDescriptor.php \ |
| 944 | php/src/Google/Protobuf/Option.php \ |
| 945 | php/src/Google/Protobuf/SourceContext.php \ |
| 946 | php/src/Google/Protobuf/StringValue.php \ |
| 947 | php/src/Google/Protobuf/Struct.php \ |
| 948 | php/src/Google/Protobuf/Syntax.php \ |
| 949 | php/src/Google/Protobuf/Timestamp.php \ |
| 950 | php/src/Google/Protobuf/Type.php \ |
| 951 | php/src/Google/Protobuf/UInt32Value.php \ |
| 952 | php/src/Google/Protobuf/UInt64Value.php \ |
| 953 | php/src/Google/Protobuf/Value.php \ |
| 954 | php/src/phpdoc.dist.xml \ |
Paul Yang | d4ca929 | 2020-08-11 19:30:46 -0700 | [diff] [blame] | 955 | php/tests/ArrayTest.php \ |
Paul Yang | 46ae90d | 2016-12-08 11:16:49 -0800 | [diff] [blame] | 956 | php/tests/autoload.php \ |
Paul Yang | ae55fd2 | 2017-09-22 14:08:01 -0700 | [diff] [blame] | 957 | php/tests/bootstrap_phpunit.php \ |
Paul Yang | 25abd7b | 2017-05-05 11:14:11 -0700 | [diff] [blame] | 958 | php/tests/compatibility_test.sh \ |
David Supplee | 93533f7 | 2019-03-12 21:30:06 -0700 | [diff] [blame] | 959 | php/tests/compile_extension.sh \ |
Paul Yang | d4ca929 | 2020-08-11 19:30:46 -0700 | [diff] [blame] | 960 | php/tests/DescriptorsTest.php \ |
| 961 | php/tests/EncodeDecodeTest.php \ |
Paul Yang | 46ae90d | 2016-12-08 11:16:49 -0800 | [diff] [blame] | 962 | php/tests/gdb_test.sh \ |
Joshua Haberman | f1ce866 | 2020-06-09 15:40:29 -0700 | [diff] [blame] | 963 | php/tests/generate_protos.sh \ |
Paul Yang | d4ca929 | 2020-08-11 19:30:46 -0700 | [diff] [blame] | 964 | php/tests/GeneratedClassTest.php \ |
| 965 | php/tests/GeneratedPhpdocTest.php \ |
| 966 | php/tests/GeneratedServiceTest.php \ |
| 967 | php/tests/MapFieldTest.php \ |
Paul Yang | 6b27c1f | 2017-03-17 11:08:06 -0700 | [diff] [blame] | 968 | php/tests/memory_leak_test.php \ |
Paul Yang | fe1790c | 2019-12-12 13:59:51 -0800 | [diff] [blame] | 969 | php/tests/multirequest.php \ |
| 970 | php/tests/multirequest.sh \ |
Paul Yang | d4ca929 | 2020-08-11 19:30:46 -0700 | [diff] [blame] | 971 | php/tests/PhpImplementationTest.php \ |
Brent Shaffer | 6737954 | 2018-05-23 16:43:30 -0700 | [diff] [blame] | 972 | php/tests/proto/empty/echo.proto \ |
Paul Yang | 77f64bb | 2017-10-05 21:03:57 -0700 | [diff] [blame] | 973 | php/tests/proto/test.proto \ |
Paul Yang | c15a326 | 2017-08-02 07:42:27 -0700 | [diff] [blame] | 974 | php/tests/proto/test_descriptors.proto \ |
Paul Yang | 6f32580 | 2017-06-05 00:10:18 -0700 | [diff] [blame] | 975 | php/tests/proto/test_empty_php_namespace.proto \ |
Paul Yang | 4523c9c | 2017-04-20 16:55:56 -0700 | [diff] [blame] | 976 | php/tests/proto/test_import_descriptor_proto.proto \ |
Paul Yang | 46ae90d | 2016-12-08 11:16:49 -0800 | [diff] [blame] | 977 | php/tests/proto/test_include.proto \ |
Paul Yang | 6b27c1f | 2017-03-17 11:08:06 -0700 | [diff] [blame] | 978 | php/tests/proto/test_no_namespace.proto \ |
Paul Yang | 6f32580 | 2017-06-05 00:10:18 -0700 | [diff] [blame] | 979 | php/tests/proto/test_php_namespace.proto \ |
| 980 | php/tests/proto/test_prefix.proto \ |
Bo Yang | e5d000c | 2017-09-08 15:11:49 -0700 | [diff] [blame] | 981 | php/tests/proto/test_reserved_enum_lower.proto \ |
| 982 | php/tests/proto/test_reserved_enum_upper.proto \ |
Bo Yang | f46a01d | 2017-09-12 15:04:34 -0700 | [diff] [blame] | 983 | php/tests/proto/test_reserved_enum_value_lower.proto \ |
| 984 | php/tests/proto/test_reserved_enum_value_upper.proto \ |
Bo Yang | e5d000c | 2017-09-08 15:11:49 -0700 | [diff] [blame] | 985 | php/tests/proto/test_reserved_message_lower.proto \ |
| 986 | php/tests/proto/test_reserved_message_upper.proto \ |
Matt A | 9e745f7 | 2017-07-18 10:45:18 -0400 | [diff] [blame] | 987 | php/tests/proto/test_service.proto \ |
| 988 | php/tests/proto/test_service_namespace.proto \ |
michaelbausor | 6a51c03 | 2018-10-07 16:56:41 -0700 | [diff] [blame] | 989 | php/tests/proto/test_wrapper_type_setters.proto \ |
Paul Yang | 6b27c1f | 2017-03-17 11:08:06 -0700 | [diff] [blame] | 990 | php/tests/test.sh \ |
| 991 | php/tests/test_base.php \ |
| 992 | php/tests/test_util.php \ |
Paul Yang | ecca6ea | 2017-06-30 12:14:09 -0700 | [diff] [blame] | 993 | php/tests/undefined_test.php \ |
Joshua Haberman | ad5a215 | 2020-07-17 13:49:23 -0700 | [diff] [blame] | 994 | php/tests/valgrind.supp \ |
Paul Yang | d4ca929 | 2020-08-11 19:30:46 -0700 | [diff] [blame] | 995 | php/tests/WellKnownTest.php \ |
| 996 | php/tests/WrapperTypeSettersTest.php |
Bo Yang | e0a6e52 | 2016-09-23 18:37:37 -0700 | [diff] [blame] | 997 | |
Feng Xiao | 8f7dec8 | 2014-12-02 14:15:26 -0800 | [diff] [blame] | 998 | python_EXTRA_DIST= \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 999 | python/MANIFEST.in \ |
Feng Xiao | 1c10aca | 2015-12-11 17:55:27 -0800 | [diff] [blame] | 1000 | python/google/__init__.py \ |
| 1001 | python/google/protobuf/__init__.py \ |
Thomas Hisch | 451e044 | 2018-04-09 21:43:10 +0200 | [diff] [blame] | 1002 | python/google/protobuf/compiler/__init__.py \ |
Feng Xiao | 1c10aca | 2015-12-11 17:55:27 -0800 | [diff] [blame] | 1003 | python/google/protobuf/descriptor.py \ |
| 1004 | python/google/protobuf/descriptor_database.py \ |
| 1005 | python/google/protobuf/descriptor_pool.py \ |
| 1006 | python/google/protobuf/internal/__init__.py \ |
| 1007 | python/google/protobuf/internal/_parameterized.py \ |
| 1008 | python/google/protobuf/internal/any_test.proto \ |
Feng Xiao | e841bac | 2015-12-11 17:09:20 -0800 | [diff] [blame] | 1009 | python/google/protobuf/internal/any_test.proto \ |
jieluo@google.com | bde4a32 | 2014-08-12 21:10:30 +0000 | [diff] [blame] | 1010 | python/google/protobuf/internal/api_implementation.cc \ |
| 1011 | python/google/protobuf/internal/api_implementation.py \ |
kenton@google.com | 26bd9ee | 2008-11-21 00:06:27 +0000 | [diff] [blame] | 1012 | python/google/protobuf/internal/containers.py \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1013 | python/google/protobuf/internal/decoder.py \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 1014 | python/google/protobuf/internal/descriptor_database_test.py \ |
| 1015 | python/google/protobuf/internal/descriptor_pool_test.py \ |
jieluo@google.com | bde4a32 | 2014-08-12 21:10:30 +0000 | [diff] [blame] | 1016 | python/google/protobuf/internal/descriptor_pool_test1.proto \ |
| 1017 | python/google/protobuf/internal/descriptor_pool_test2.proto \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1018 | python/google/protobuf/internal/descriptor_test.py \ |
| 1019 | python/google/protobuf/internal/encoder.py \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 1020 | python/google/protobuf/internal/enum_type_wrapper.py \ |
Yilun Chong | d8c2501 | 2019-02-22 18:13:33 +0800 | [diff] [blame] | 1021 | python/google/protobuf/internal/extension_dict.py \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 1022 | python/google/protobuf/internal/factory_test1.proto \ |
| 1023 | python/google/protobuf/internal/factory_test2.proto \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 1024 | python/google/protobuf/internal/file_options_test.proto \ |
jieluo@google.com | bde4a32 | 2014-08-12 21:10:30 +0000 | [diff] [blame] | 1025 | python/google/protobuf/internal/generator_test.py \ |
Feng Xiao | 1c10aca | 2015-12-11 17:55:27 -0800 | [diff] [blame] | 1026 | python/google/protobuf/internal/import_test_package/__init__.py \ |
| 1027 | python/google/protobuf/internal/import_test_package/inner.proto \ |
| 1028 | python/google/protobuf/internal/import_test_package/outer.proto \ |
Jisi Liu | 46e8ff6 | 2015-10-05 11:59:43 -0700 | [diff] [blame] | 1029 | python/google/protobuf/internal/json_format_test.py \ |
Hao Nguyen | ef1e8e7 | 2019-04-09 06:48:01 -0700 | [diff] [blame] | 1030 | python/google/protobuf/internal/keywords_test.py \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 1031 | python/google/protobuf/internal/message_factory_test.py \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1032 | python/google/protobuf/internal/message_listener.py \ |
Feng Xiao | a331298 | 2015-08-26 20:20:42 -0700 | [diff] [blame] | 1033 | python/google/protobuf/internal/message_set_extensions.proto \ |
kenton@google.com | 80b1d62 | 2009-07-29 01:13:20 +0000 | [diff] [blame] | 1034 | python/google/protobuf/internal/message_test.py \ |
jieluo@google.com | bde4a32 | 2014-08-12 21:10:30 +0000 | [diff] [blame] | 1035 | python/google/protobuf/internal/missing_enum_values.proto \ |
Feng Xiao | a331298 | 2015-08-26 20:20:42 -0700 | [diff] [blame] | 1036 | python/google/protobuf/internal/more_extensions.proto \ |
Feng Xiao | 1c10aca | 2015-12-11 17:55:27 -0800 | [diff] [blame] | 1037 | python/google/protobuf/internal/more_extensions_dynamic.proto \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1038 | python/google/protobuf/internal/more_messages.proto \ |
Adam Cozzette | 837c94b | 2018-03-14 13:01:55 -0700 | [diff] [blame] | 1039 | python/google/protobuf/internal/no_package.proto \ |
Feng Xiao | a331298 | 2015-08-26 20:20:42 -0700 | [diff] [blame] | 1040 | python/google/protobuf/internal/packed_field_test.proto \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 1041 | python/google/protobuf/internal/proto_builder_test.py \ |
liujisi@google.com | 33165fe | 2010-11-02 13:14:58 +0000 | [diff] [blame] | 1042 | python/google/protobuf/internal/python_message.py \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1043 | python/google/protobuf/internal/reflection_test.py \ |
| 1044 | python/google/protobuf/internal/service_reflection_test.py \ |
jieluo@google.com | 2d10b80 | 2014-08-13 23:17:39 +0000 | [diff] [blame] | 1045 | python/google/protobuf/internal/symbol_database_test.py \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 1046 | python/google/protobuf/internal/test_bad_identifiers.proto \ |
Joshua Haberman | b7742c5 | 2020-04-08 10:30:17 -0700 | [diff] [blame] | 1047 | python/google/protobuf/internal/test_proto3_optional.proto \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1048 | python/google/protobuf/internal/test_util.py \ |
Bo Yang | fe1aaad | 2016-09-20 23:34:05 +0000 | [diff] [blame] | 1049 | python/google/protobuf/internal/testing_refleaks.py \ |
jieluo@google.com | bde4a32 | 2014-08-12 21:10:30 +0000 | [diff] [blame] | 1050 | python/google/protobuf/internal/text_encoding_test.py \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1051 | python/google/protobuf/internal/text_format_test.py \ |
temporal | dd681ad | 2008-08-18 22:55:31 +0000 | [diff] [blame] | 1052 | python/google/protobuf/internal/type_checkers.py \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 1053 | python/google/protobuf/internal/unknown_fields_test.py \ |
Feng Xiao | e841bac | 2015-12-11 17:09:20 -0800 | [diff] [blame] | 1054 | python/google/protobuf/internal/well_known_types.py \ |
Feng Xiao | 1c10aca | 2015-12-11 17:55:27 -0800 | [diff] [blame] | 1055 | python/google/protobuf/internal/well_known_types.py \ |
| 1056 | python/google/protobuf/internal/well_known_types_test.py \ |
Feng Xiao | e841bac | 2015-12-11 17:09:20 -0800 | [diff] [blame] | 1057 | python/google/protobuf/internal/well_known_types_test.py \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1058 | python/google/protobuf/internal/wire_format.py \ |
| 1059 | python/google/protobuf/internal/wire_format_test.py \ |
Jisi Liu | 46e8ff6 | 2015-10-05 11:59:43 -0700 | [diff] [blame] | 1060 | python/google/protobuf/json_format.py \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1061 | python/google/protobuf/message.py \ |
xiaofeng@google.com | caa66db | 2012-12-04 18:44:24 +0000 | [diff] [blame] | 1062 | python/google/protobuf/message_factory.py \ |
Thomas Colthurst | 7c65142 | 2018-05-29 18:26:11 -0400 | [diff] [blame] | 1063 | python/google/protobuf/proto_api.h \ |
Feng Xiao | 6ef984a | 2014-11-10 17:34:54 -0800 | [diff] [blame] | 1064 | python/google/protobuf/proto_builder.py \ |
Feng Xiao | 1c10aca | 2015-12-11 17:55:27 -0800 | [diff] [blame] | 1065 | python/google/protobuf/pyext/README \ |
| 1066 | python/google/protobuf/pyext/__init__.py \ |
| 1067 | python/google/protobuf/pyext/cpp_message.py \ |
| 1068 | python/google/protobuf/pyext/descriptor.cc \ |
| 1069 | python/google/protobuf/pyext/descriptor.h \ |
| 1070 | python/google/protobuf/pyext/descriptor_containers.cc \ |
| 1071 | python/google/protobuf/pyext/descriptor_containers.h \ |
| 1072 | python/google/protobuf/pyext/descriptor_database.cc \ |
| 1073 | python/google/protobuf/pyext/descriptor_database.h \ |
| 1074 | python/google/protobuf/pyext/descriptor_pool.cc \ |
| 1075 | python/google/protobuf/pyext/descriptor_pool.h \ |
| 1076 | python/google/protobuf/pyext/extension_dict.cc \ |
| 1077 | python/google/protobuf/pyext/extension_dict.h \ |
| 1078 | python/google/protobuf/pyext/map_container.cc \ |
| 1079 | python/google/protobuf/pyext/map_container.h \ |
| 1080 | python/google/protobuf/pyext/message.cc \ |
| 1081 | python/google/protobuf/pyext/message.h \ |
Feng Xiao | acd5b05 | 2018-08-09 21:21:01 -0700 | [diff] [blame] | 1082 | python/google/protobuf/pyext/field.cc \ |
| 1083 | python/google/protobuf/pyext/field.h \ |
| 1084 | python/google/protobuf/pyext/unknown_fields.cc \ |
| 1085 | python/google/protobuf/pyext/unknown_fields.h \ |
Bo Yang | fe1aaad | 2016-09-20 23:34:05 +0000 | [diff] [blame] | 1086 | python/google/protobuf/pyext/message_factory.cc \ |
| 1087 | python/google/protobuf/pyext/message_factory.h \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 1088 | python/google/protobuf/pyext/message_module.cc \ |
Feng Xiao | 1c10aca | 2015-12-11 17:55:27 -0800 | [diff] [blame] | 1089 | python/google/protobuf/pyext/proto2_api_test.proto \ |
| 1090 | python/google/protobuf/pyext/python.proto \ |
Feng Xiao | 1c10aca | 2015-12-11 17:55:27 -0800 | [diff] [blame] | 1091 | python/google/protobuf/pyext/repeated_composite_container.cc \ |
| 1092 | python/google/protobuf/pyext/repeated_composite_container.h \ |
| 1093 | python/google/protobuf/pyext/repeated_scalar_container.cc \ |
| 1094 | python/google/protobuf/pyext/repeated_scalar_container.h \ |
Feng Xiao | 599613e | 2016-11-18 15:36:28 -0800 | [diff] [blame] | 1095 | python/google/protobuf/pyext/safe_numerics.h \ |
Feng Xiao | 1c10aca | 2015-12-11 17:55:27 -0800 | [diff] [blame] | 1096 | python/google/protobuf/pyext/scoped_pyobject_ptr.h \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1097 | python/google/protobuf/reflection.py \ |
| 1098 | python/google/protobuf/service.py \ |
| 1099 | python/google/protobuf/service_reflection.py \ |
jieluo@google.com | bde4a32 | 2014-08-12 21:10:30 +0000 | [diff] [blame] | 1100 | python/google/protobuf/symbol_database.py \ |
| 1101 | python/google/protobuf/text_encoding.py \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1102 | python/google/protobuf/text_format.py \ |
Thomas Hisch | 451e044 | 2018-04-09 21:43:10 +0200 | [diff] [blame] | 1103 | python/google/protobuf/util/__init__.py \ |
Jisi Liu | 66c1dac | 2017-07-19 14:38:57 -0700 | [diff] [blame] | 1104 | python/release.sh \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1105 | python/mox.py \ |
Jisi Liu | e139117 | 2016-07-29 14:40:05 -0700 | [diff] [blame] | 1106 | python/setup.cfg \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 1107 | python/setup.py \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1108 | python/stubout.py \ |
Feng Xiao | 99e1868 | 2015-08-26 20:19:05 -0700 | [diff] [blame] | 1109 | python/tox.ini \ |
jesse | 0481bf3 | 2015-03-17 12:14:55 -0700 | [diff] [blame] | 1110 | python/README.md |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1111 | |
Chris Fallin | 973f425 | 2014-11-18 14:19:58 -0800 | [diff] [blame] | 1112 | ruby_EXTRA_DIST= \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 1113 | ruby/Gemfile \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 1114 | ruby/.gitignore \ |
Feng Xiao | e7d562a | 2014-12-12 17:41:34 -0800 | [diff] [blame] | 1115 | ruby/README.md \ |
| 1116 | ruby/Rakefile \ |
Feng Xiao | 9118ad6 | 2017-02-23 17:53:06 -0800 | [diff] [blame] | 1117 | ruby/compatibility_tests/v3.0.0/tests/test_import.proto \ |
| 1118 | ruby/compatibility_tests/v3.0.0/tests/stress.rb \ |
| 1119 | ruby/compatibility_tests/v3.0.0/tests/repeated_field_test.rb \ |
| 1120 | ruby/compatibility_tests/v3.0.0/tests/generated_code_test.rb \ |
| 1121 | ruby/compatibility_tests/v3.0.0/tests/generated_code.proto \ |
| 1122 | ruby/compatibility_tests/v3.0.0/tests/basic.rb \ |
| 1123 | ruby/compatibility_tests/v3.0.0/test.sh \ |
| 1124 | ruby/compatibility_tests/v3.0.0/Rakefile \ |
| 1125 | ruby/compatibility_tests/v3.0.0/README.md \ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 1126 | ruby/ext/google/protobuf_c/convert.c \ |
| 1127 | ruby/ext/google/protobuf_c/convert.h \ |
Feng Xiao | e7d562a | 2014-12-12 17:41:34 -0800 | [diff] [blame] | 1128 | ruby/ext/google/protobuf_c/defs.c \ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 1129 | ruby/ext/google/protobuf_c/defs.h \ |
Feng Xiao | e7d562a | 2014-12-12 17:41:34 -0800 | [diff] [blame] | 1130 | ruby/ext/google/protobuf_c/extconf.rb \ |
Chris Fallin | b0670dd | 2015-01-14 16:45:47 -0800 | [diff] [blame] | 1131 | ruby/ext/google/protobuf_c/map.c \ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 1132 | ruby/ext/google/protobuf_c/map.h \ |
Feng Xiao | e7d562a | 2014-12-12 17:41:34 -0800 | [diff] [blame] | 1133 | ruby/ext/google/protobuf_c/message.c \ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 1134 | ruby/ext/google/protobuf_c/message.h \ |
Feng Xiao | e7d562a | 2014-12-12 17:41:34 -0800 | [diff] [blame] | 1135 | ruby/ext/google/protobuf_c/protobuf.c \ |
| 1136 | ruby/ext/google/protobuf_c/protobuf.h \ |
| 1137 | ruby/ext/google/protobuf_c/repeated_field.c \ |
Joshua Haberman | 9abf6e2 | 2021-01-13 12:16:25 -0800 | [diff] [blame] | 1138 | ruby/ext/google/protobuf_c/repeated_field.h \ |
| 1139 | ruby/ext/google/protobuf_c/ruby-upb.c \ |
| 1140 | ruby/ext/google/protobuf_c/ruby-upb.h \ |
Adam Cozzette | 9fa4031 | 2017-03-08 11:25:48 -0800 | [diff] [blame] | 1141 | ruby/ext/google/protobuf_c/wrap_memcpy.c \ |
Feng Xiao | e7d562a | 2014-12-12 17:41:34 -0800 | [diff] [blame] | 1142 | ruby/google-protobuf.gemspec \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 1143 | ruby/lib/google/protobuf/message_exts.rb \ |
| 1144 | ruby/lib/google/protobuf/repeated_field.rb \ |
Josh Haberman | 3cec2ea | 2016-08-01 14:31:31 -0700 | [diff] [blame] | 1145 | ruby/lib/google/protobuf/well_known_types.rb \ |
Feng Xiao | e7d562a | 2014-12-12 17:41:34 -0800 | [diff] [blame] | 1146 | ruby/lib/google/protobuf.rb \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 1147 | ruby/pom.xml \ |
| 1148 | ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \ |
| 1149 | ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \ |
| 1150 | ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \ |
Rob Widmer | 351a34f | 2020-12-01 10:52:15 -0500 | [diff] [blame] | 1151 | ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 1152 | ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \ |
| 1153 | ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 1154 | ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \ |
Rob Widmer | 351a34f | 2020-12-01 10:52:15 -0500 | [diff] [blame] | 1155 | ruby/src/main/java/com/google/protobuf/jruby/RubyFileBuilderContext.java \ |
| 1156 | ruby/src/main/java/com/google/protobuf/jruby/RubyFileDescriptor.java \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 1157 | ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 1158 | ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \ |
Rob Widmer | 351a34f | 2020-12-01 10:52:15 -0500 | [diff] [blame] | 1159 | ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 1160 | ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \ |
| 1161 | ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \ |
| 1162 | ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \ |
| 1163 | ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \ |
| 1164 | ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \ |
| 1165 | ruby/src/main/java/com/google/protobuf/jruby/Utils.java \ |
| 1166 | ruby/src/main/java/google/ProtobufJavaService.java \ |
| 1167 | ruby/src/main/sentinel.proto \ |
Paul Yang | 011f670 | 2018-10-04 10:29:21 -0700 | [diff] [blame] | 1168 | ruby/tests/basic_proto2.rb \ |
| 1169 | ruby/tests/basic_test_proto2.proto \ |
| 1170 | ruby/tests/basic_test.proto \ |
Feng Xiao | e7d562a | 2014-12-12 17:41:34 -0800 | [diff] [blame] | 1171 | ruby/tests/basic.rb \ |
Paul Yang | 011f670 | 2018-10-04 10:29:21 -0700 | [diff] [blame] | 1172 | ruby/tests/common_tests.rb \ |
Paul Yang | 0e7b589 | 2017-12-07 14:18:38 -0800 | [diff] [blame] | 1173 | ruby/tests/encode_decode_test.rb \ |
Paul Yang | cd5f49d | 2017-10-03 17:28:49 -0700 | [diff] [blame] | 1174 | ruby/tests/gc_test.rb \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 1175 | ruby/tests/repeated_field_test.rb \ |
Chris Fallin | b0670dd | 2015-01-14 16:45:47 -0800 | [diff] [blame] | 1176 | ruby/tests/stress.rb \ |
Paul Yang | 011f670 | 2018-10-04 10:29:21 -0700 | [diff] [blame] | 1177 | ruby/tests/generated_code_proto2_test.rb \ |
| 1178 | ruby/tests/generated_code_proto2.proto \ |
Chris Fallin | b0670dd | 2015-01-14 16:45:47 -0800 | [diff] [blame] | 1179 | ruby/tests/generated_code.proto \ |
Rob Widmer | 48234f5 | 2021-01-13 11:13:44 -0500 | [diff] [blame] | 1180 | ruby/tests/multi_level_nesting_test.proto \ |
| 1181 | ruby/tests/multi_level_nesting_test.rb \ |
Paul Yang | 011f670 | 2018-10-04 10:29:21 -0700 | [diff] [blame] | 1182 | ruby/tests/test_import_proto2.proto \ |
Josh Haberman | 97e2026 | 2016-07-25 14:07:09 -0700 | [diff] [blame] | 1183 | ruby/tests/test_import.proto \ |
Paul Yang | 011f670 | 2018-10-04 10:29:21 -0700 | [diff] [blame] | 1184 | ruby/tests/test_ruby_package_proto2.proto \ |
Bo Yang | 090fe39 | 2018-05-22 09:53:03 -0700 | [diff] [blame] | 1185 | ruby/tests/test_ruby_package.proto \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 1186 | ruby/tests/generated_code_test.rb \ |
Josh Haberman | e3094a8 | 2016-07-27 17:31:16 -0700 | [diff] [blame] | 1187 | ruby/tests/well_known_types_test.rb \ |
Joe Bolinger | 64eb9b6 | 2019-02-06 07:57:13 -0800 | [diff] [blame] | 1188 | ruby/tests/type_errors.rb \ |
Bo Yang | 51de7a7 | 2015-05-25 22:21:05 -0700 | [diff] [blame] | 1189 | ruby/travis-test.sh |
Chris Fallin | 973f425 | 2014-11-18 14:19:58 -0800 | [diff] [blame] | 1190 | |
Adam Cozzette | 10ea251 | 2017-02-28 14:20:56 -0800 | [diff] [blame] | 1191 | js_EXTRA_DIST= \ |
| 1192 | js/README.md \ |
| 1193 | js/binary/arith.js \ |
| 1194 | js/binary/arith_test.js \ |
| 1195 | js/binary/constants.js \ |
| 1196 | js/binary/decoder.js \ |
| 1197 | js/binary/decoder_test.js \ |
| 1198 | js/binary/encoder.js \ |
| 1199 | js/binary/message_test.js \ |
| 1200 | js/binary/proto_test.js \ |
| 1201 | js/binary/reader.js \ |
| 1202 | js/binary/reader_test.js \ |
| 1203 | js/binary/utils.js \ |
| 1204 | js/binary/utils_test.js \ |
| 1205 | js/binary/writer.js \ |
| 1206 | js/binary/writer_test.js \ |
| 1207 | js/commonjs/export.js \ |
| 1208 | js/commonjs/export_asserts.js \ |
| 1209 | js/commonjs/export_testdeps.js \ |
| 1210 | js/commonjs/import_test.js \ |
| 1211 | js/commonjs/jasmine.json \ |
| 1212 | js/commonjs/rewrite_tests_for_commonjs.js \ |
Peter Marton | 3c4e368 | 2018-03-01 16:05:19 -0800 | [diff] [blame] | 1213 | js/commonjs/strict_test.js \ |
Adam Cozzette | 10ea251 | 2017-02-28 14:20:56 -0800 | [diff] [blame] | 1214 | js/commonjs/test6/test6.proto \ |
| 1215 | js/commonjs/test7/test7.proto \ |
| 1216 | js/compatibility_tests/v3.0.0/binary/arith_test.js \ |
| 1217 | js/compatibility_tests/v3.0.0/binary/decoder_test.js \ |
| 1218 | js/compatibility_tests/v3.0.0/binary/proto_test.js \ |
| 1219 | js/compatibility_tests/v3.0.0/binary/reader_test.js \ |
| 1220 | js/compatibility_tests/v3.0.0/binary/utils_test.js \ |
| 1221 | js/compatibility_tests/v3.0.0/binary/writer_test.js \ |
| 1222 | js/compatibility_tests/v3.0.0/commonjs/export_asserts.js \ |
| 1223 | js/compatibility_tests/v3.0.0/commonjs/export_testdeps.js \ |
| 1224 | js/compatibility_tests/v3.0.0/commonjs/import_test.js \ |
| 1225 | js/compatibility_tests/v3.0.0/commonjs/jasmine.json \ |
| 1226 | js/compatibility_tests/v3.0.0/commonjs/rewrite_tests_for_commonjs.js \ |
| 1227 | js/compatibility_tests/v3.0.0/commonjs/test6/test6.proto \ |
| 1228 | js/compatibility_tests/v3.0.0/commonjs/test7/test7.proto \ |
| 1229 | js/compatibility_tests/v3.0.0/data.proto \ |
| 1230 | js/compatibility_tests/v3.0.0/debug_test.js \ |
| 1231 | js/compatibility_tests/v3.0.0/jasmine1.json \ |
| 1232 | js/compatibility_tests/v3.0.0/jasmine2.json \ |
| 1233 | js/compatibility_tests/v3.0.0/jasmine3.json \ |
| 1234 | js/compatibility_tests/v3.0.0/message_test.js \ |
| 1235 | js/compatibility_tests/v3.0.0/proto3_test.js \ |
| 1236 | js/compatibility_tests/v3.0.0/proto3_test.proto \ |
| 1237 | js/compatibility_tests/v3.0.0/test2.proto \ |
| 1238 | js/compatibility_tests/v3.0.0/test3.proto \ |
| 1239 | js/compatibility_tests/v3.0.0/test4.proto \ |
| 1240 | js/compatibility_tests/v3.0.0/test5.proto \ |
| 1241 | js/compatibility_tests/v3.0.0/testbinary.proto \ |
| 1242 | js/compatibility_tests/v3.0.0/testempty.proto \ |
| 1243 | js/compatibility_tests/v3.0.0/test.proto \ |
| 1244 | js/compatibility_tests/v3.0.0/test.sh \ |
Jisi Liu | bf658c2 | 2017-07-19 14:32:22 -0700 | [diff] [blame] | 1245 | js/compatibility_tests/v3.1.0/testempty.proto \ |
| 1246 | js/compatibility_tests/v3.1.0/testbinary.proto \ |
| 1247 | js/compatibility_tests/v3.1.0/test5.proto \ |
| 1248 | js/compatibility_tests/v3.1.0/test4.proto \ |
| 1249 | js/compatibility_tests/v3.1.0/test3.proto \ |
| 1250 | js/compatibility_tests/v3.1.0/test2.proto \ |
| 1251 | js/compatibility_tests/v3.1.0/test.proto \ |
| 1252 | js/compatibility_tests/v3.1.0/proto3_test.proto \ |
| 1253 | js/compatibility_tests/v3.1.0/proto3_test.js \ |
| 1254 | js/compatibility_tests/v3.1.0/message_test.js \ |
| 1255 | js/compatibility_tests/v3.1.0/maps_test.js \ |
| 1256 | js/compatibility_tests/v3.1.0/debug_test.js \ |
| 1257 | js/compatibility_tests/v3.1.0/data.proto \ |
| 1258 | js/compatibility_tests/v3.1.0/commonjs/test7/test7.proto \ |
| 1259 | js/compatibility_tests/v3.1.0/commonjs/test6/test6.proto \ |
| 1260 | js/compatibility_tests/v3.1.0/binary/writer_test.js \ |
| 1261 | js/compatibility_tests/v3.1.0/binary/utils_test.js \ |
| 1262 | js/compatibility_tests/v3.1.0/binary/reader_test.js \ |
| 1263 | js/compatibility_tests/v3.1.0/binary/proto_test.js \ |
| 1264 | js/compatibility_tests/v3.1.0/binary/decoder_test.js \ |
| 1265 | js/compatibility_tests/v3.1.0/binary/arith_test.js \ |
Adam Cozzette | 10ea251 | 2017-02-28 14:20:56 -0800 | [diff] [blame] | 1266 | js/data.proto \ |
| 1267 | js/debug.js \ |
| 1268 | js/debug_test.js \ |
Adam Cozzette | fa9ebaf | 2020-05-08 16:56:43 -0700 | [diff] [blame] | 1269 | js/experimental/runtime/kernel/message_set.js \ |
| 1270 | js/experimental/runtime/kernel/message_set_test.js \ |
| 1271 | js/experimental/runtime/kernel/tag.js \ |
| 1272 | js/experimental/runtime/kernel/tag_test.js \ |
Adam Cozzette | 10ea251 | 2017-02-28 14:20:56 -0800 | [diff] [blame] | 1273 | js/gulpfile.js \ |
| 1274 | js/jasmine.json \ |
| 1275 | js/map.js \ |
| 1276 | js/maps_test.js \ |
| 1277 | js/message.js \ |
| 1278 | js/message_test.js \ |
| 1279 | js/node_loader.js \ |
| 1280 | js/package.json \ |
| 1281 | js/proto3_test.js \ |
| 1282 | js/proto3_test.proto \ |
| 1283 | js/test.proto \ |
| 1284 | js/test2.proto \ |
| 1285 | js/test3.proto \ |
| 1286 | js/test4.proto \ |
| 1287 | js/test5.proto \ |
| 1288 | js/test8.proto \ |
Peter Marton | 3c4e368 | 2018-03-01 16:05:19 -0800 | [diff] [blame] | 1289 | js/test9.proto \ |
Peter Marton | 13f94b4 | 2018-03-26 16:07:45 -0700 | [diff] [blame] | 1290 | js/test10.proto \ |
Adam Cozzette | fbd69fa | 2018-11-08 08:41:12 -0800 | [diff] [blame] | 1291 | js/test11.proto \ |
| 1292 | js/test12.proto \ |
| 1293 | js/test13.proto \ |
| 1294 | js/test14.proto \ |
| 1295 | js/test15.proto \ |
Adam Cozzette | 10ea251 | 2017-02-28 14:20:56 -0800 | [diff] [blame] | 1296 | js/test_bootstrap.js \ |
| 1297 | js/testbinary.proto \ |
Rafi Kamal | 7e0a081 | 2020-02-07 17:14:49 -0800 | [diff] [blame] | 1298 | js/testempty.proto \ |
David L. Jones | 73f3a72 | 2020-02-27 11:26:39 -0800 | [diff] [blame] | 1299 | js/testlargenumbers.proto \ |
Rafi Kamal | 7e0a081 | 2020-02-07 17:14:49 -0800 | [diff] [blame] | 1300 | js/experimental/runtime/testing/jasmine_protobuf.js \ |
| 1301 | js/experimental/runtime/testing/ensure_custom_equality_test.js \ |
| 1302 | js/experimental/runtime/testing/binary/test_message.js \ |
| 1303 | js/experimental/runtime/kernel/writer_test.js \ |
| 1304 | js/experimental/runtime/kernel/writer.js \ |
| 1305 | js/experimental/runtime/kernel/wire_type.js \ |
| 1306 | js/experimental/runtime/kernel/uint8arrays_test.js \ |
| 1307 | js/experimental/runtime/kernel/uint8arrays.js \ |
| 1308 | js/experimental/runtime/kernel/uint32_test_pairs.js \ |
| 1309 | js/experimental/runtime/kernel/typed_arrays_test.js \ |
| 1310 | js/experimental/runtime/kernel/typed_arrays.js \ |
| 1311 | js/experimental/runtime/kernel/textencoding_test.js \ |
| 1312 | js/experimental/runtime/kernel/textencoding.js \ |
Rafi Kamal | 7e0a081 | 2020-02-07 17:14:49 -0800 | [diff] [blame] | 1313 | js/experimental/runtime/kernel/storage.js \ |
| 1314 | js/experimental/runtime/kernel/sint64_test_pairs.js \ |
| 1315 | js/experimental/runtime/kernel/sint32_test_pairs.js \ |
| 1316 | js/experimental/runtime/kernel/sfixed64_test_pairs.js \ |
| 1317 | js/experimental/runtime/kernel/sfixed32_test_pairs.js \ |
| 1318 | js/experimental/runtime/kernel/reader_test.js \ |
| 1319 | js/experimental/runtime/kernel/reader.js \ |
| 1320 | js/experimental/runtime/kernel/packed_uint32_test_pairs.js \ |
| 1321 | js/experimental/runtime/kernel/packed_sint64_test_pairs.js \ |
| 1322 | js/experimental/runtime/kernel/packed_sint32_test_pairs.js \ |
| 1323 | js/experimental/runtime/kernel/packed_sfixed64_test_pairs.js \ |
| 1324 | js/experimental/runtime/kernel/packed_sfixed32_test_pairs.js \ |
| 1325 | js/experimental/runtime/kernel/packed_int64_test_pairs.js \ |
| 1326 | js/experimental/runtime/kernel/packed_int32_test_pairs.js \ |
| 1327 | js/experimental/runtime/kernel/packed_float_test_pairs.js \ |
| 1328 | js/experimental/runtime/kernel/packed_fixed32_test_pairs.js \ |
| 1329 | js/experimental/runtime/kernel/packed_double_test_pairs.js \ |
| 1330 | js/experimental/runtime/kernel/packed_bool_test_pairs.js \ |
Rafi Kamal | 5312855 | 2020-03-17 12:16:12 -0700 | [diff] [blame] | 1331 | js/experimental/runtime/kernel/kernel_test.js \ |
| 1332 | js/experimental/runtime/kernel/kernel_repeated_test.js \ |
| 1333 | js/experimental/runtime/kernel/kernel_compatibility_test.js \ |
| 1334 | js/experimental/runtime/kernel/kernel.js \ |
Rafi Kamal | 7e0a081 | 2020-02-07 17:14:49 -0800 | [diff] [blame] | 1335 | js/experimental/runtime/kernel/internal_message.js \ |
| 1336 | js/experimental/runtime/kernel/int64_test_pairs.js \ |
| 1337 | js/experimental/runtime/kernel/int32_test_pairs.js \ |
| 1338 | js/experimental/runtime/kernel/indexer_test.js \ |
| 1339 | js/experimental/runtime/kernel/indexer.js \ |
| 1340 | js/experimental/runtime/kernel/float_test_pairs.js \ |
| 1341 | js/experimental/runtime/kernel/fixed32_test_pairs.js \ |
| 1342 | js/experimental/runtime/kernel/field.js \ |
| 1343 | js/experimental/runtime/kernel/double_test_pairs.js \ |
| 1344 | js/experimental/runtime/kernel/conformance/wire_format.js \ |
| 1345 | js/experimental/runtime/kernel/conformance/test_all_types_proto3.js \ |
| 1346 | js/experimental/runtime/kernel/conformance/test_all_types_proto2.js \ |
| 1347 | js/experimental/runtime/kernel/conformance/conformance_testee_runner_node.js \ |
| 1348 | js/experimental/runtime/kernel/conformance/conformance_testee.js \ |
| 1349 | js/experimental/runtime/kernel/conformance/conformance_response.js \ |
| 1350 | js/experimental/runtime/kernel/conformance/conformance_request.js \ |
| 1351 | js/experimental/runtime/kernel/buffer_decoder_test.js \ |
| 1352 | js/experimental/runtime/kernel/buffer_decoder_helper.js \ |
| 1353 | js/experimental/runtime/kernel/buffer_decoder.js \ |
| 1354 | js/experimental/runtime/kernel/bool_test_pairs.js \ |
Rafi Kamal | 5312855 | 2020-03-17 12:16:12 -0700 | [diff] [blame] | 1355 | js/experimental/runtime/kernel/binary_storage_test.js \ |
| 1356 | js/experimental/runtime/kernel/binary_storage.js \ |
Rafi Kamal | 7e0a081 | 2020-02-07 17:14:49 -0800 | [diff] [blame] | 1357 | js/experimental/runtime/internal/checks_test.js \ |
| 1358 | js/experimental/runtime/internal/checks.js \ |
| 1359 | js/experimental/runtime/int64_test.js \ |
| 1360 | js/experimental/runtime/int64.js \ |
| 1361 | js/experimental/runtime/bytestring_test.js \ |
| 1362 | js/experimental/runtime/bytestring_internal.js \ |
| 1363 | js/experimental/runtime/bytestring.js \ |
| 1364 | js/experimental/benchmarks/code_size/kernel/popular_types.js \ |
| 1365 | js/experimental/benchmarks/code_size/kernel/all_types.js \ |
| 1366 | js/experimental/benchmarks/code_size/code_size_base.js \ |
| 1367 | js/experimental/benchmarks/code_size/apps_jspb/popular_types_proto3.js \ |
| 1368 | js/experimental/benchmarks/code_size/apps_jspb/popular_types_proto2.js \ |
| 1369 | js/experimental/benchmarks/code_size/apps_jspb/all_types_proto3.js \ |
| 1370 | js/experimental/benchmarks/code_size/apps_jspb/all_types_proto2.js |
Feng Xiao | b7610f1 | 2015-12-22 14:36:04 -0800 | [diff] [blame] | 1371 | |
Feng Xiao | d5a0024 | 2018-03-26 12:59:28 -0700 | [diff] [blame] | 1372 | all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(php_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) $(js_EXTRA_DIST) |
Feng Xiao | 8f7dec8 | 2014-12-02 14:15:26 -0800 | [diff] [blame] | 1373 | |
Bo Yang | ff7bdad | 2015-08-23 10:45:14 -0700 | [diff] [blame] | 1374 | EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \ |
| 1375 | autogen.sh \ |
| 1376 | generate_descriptor_proto.sh \ |
| 1377 | README.md \ |
Bo Yang | ff7bdad | 2015-08-23 10:45:14 -0700 | [diff] [blame] | 1378 | LICENSE \ |
| 1379 | CONTRIBUTORS.txt \ |
| 1380 | CHANGES.txt \ |
| 1381 | update_file_lists.sh \ |
Jisi Liu | 4008100 | 2015-08-26 17:48:08 -0700 | [diff] [blame] | 1382 | BUILD \ |
Jisi Liu | 4008100 | 2015-08-26 17:48:08 -0700 | [diff] [blame] | 1383 | WORKSPACE \ |
Bo Yang | ff7bdad | 2015-08-23 10:45:14 -0700 | [diff] [blame] | 1384 | cmake/CMakeLists.txt \ |
| 1385 | cmake/README.md \ |
Yannic | f0cb9cd | 2020-02-13 22:04:14 +0100 | [diff] [blame] | 1386 | cmake/conformance.cmake \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 1387 | cmake/examples.cmake \ |
Bo Yang | ff7bdad | 2015-08-23 10:45:14 -0700 | [diff] [blame] | 1388 | cmake/extract_includes.bat.in \ |
| 1389 | cmake/install.cmake \ |
| 1390 | cmake/libprotobuf.cmake \ |
| 1391 | cmake/libprotobuf-lite.cmake \ |
| 1392 | cmake/libprotoc.cmake \ |
| 1393 | cmake/protobuf-config-version.cmake.in \ |
| 1394 | cmake/protobuf-config.cmake.in \ |
Jisi Liu | d8c6193 | 2017-08-24 14:11:37 -0700 | [diff] [blame] | 1395 | cmake/protobuf-lite.pc.cmake \ |
Bo Yang | ff7bdad | 2015-08-23 10:45:14 -0700 | [diff] [blame] | 1396 | cmake/protobuf-module.cmake.in \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 1397 | cmake/protobuf-options.cmake \ |
Jisi Liu | d8c6193 | 2017-08-24 14:11:37 -0700 | [diff] [blame] | 1398 | cmake/protobuf.pc.cmake \ |
Bo Yang | ff7bdad | 2015-08-23 10:45:14 -0700 | [diff] [blame] | 1399 | cmake/protoc.cmake \ |
| 1400 | cmake/tests.cmake \ |
Jozef Izso | 8233d46 | 2018-04-28 10:53:54 +0200 | [diff] [blame] | 1401 | cmake/version.rc.in \ |
Adam Cozzette | 9e381c0 | 2019-02-12 14:13:32 -0800 | [diff] [blame] | 1402 | compiler_config_setting.bzl \ |
Yannic | f0cb9cd | 2020-02-13 22:04:14 +0100 | [diff] [blame] | 1403 | build_files_updated_unittest.sh \ |
| 1404 | cc_proto_blacklist_test.bzl \ |
Bo Yang | ff7bdad | 2015-08-23 10:45:14 -0700 | [diff] [blame] | 1405 | editors/README.txt \ |
| 1406 | editors/proto.vim \ |
| 1407 | editors/protobuf-mode.el \ |
Bo Yang | ff7bdad | 2015-08-23 10:45:14 -0700 | [diff] [blame] | 1408 | examples/AddPerson.java \ |
Feng Xiao | 49b88af | 2017-09-11 12:48:53 -0700 | [diff] [blame] | 1409 | examples/BUILD \ |
Feng Xiao | 60cb094 | 2016-07-19 16:15:42 -0700 | [diff] [blame] | 1410 | examples/CMakeLists.txt \ |
Bo Yang | ff7bdad | 2015-08-23 10:45:14 -0700 | [diff] [blame] | 1411 | examples/ListPeople.java \ |
Feng Xiao | 49b88af | 2017-09-11 12:48:53 -0700 | [diff] [blame] | 1412 | examples/Makefile \ |
| 1413 | examples/README.md \ |
| 1414 | examples/WORKSPACE \ |
| 1415 | examples/add_person.cc \ |
Adam Cozzette | fbd69fa | 2018-11-08 08:41:12 -0800 | [diff] [blame] | 1416 | examples/add_person.dart \ |
Feng Xiao | 49b88af | 2017-09-11 12:48:53 -0700 | [diff] [blame] | 1417 | examples/add_person.go \ |
Bo Yang | ff7bdad | 2015-08-23 10:45:14 -0700 | [diff] [blame] | 1418 | examples/add_person.py \ |
Feng Xiao | 49b88af | 2017-09-11 12:48:53 -0700 | [diff] [blame] | 1419 | examples/add_person_test.go \ |
| 1420 | examples/addressbook.proto \ |
| 1421 | examples/list_people.cc \ |
Adam Cozzette | fbd69fa | 2018-11-08 08:41:12 -0800 | [diff] [blame] | 1422 | examples/list_people.dart \ |
Feng Xiao | 49b88af | 2017-09-11 12:48:53 -0700 | [diff] [blame] | 1423 | examples/list_people.go \ |
Feng Xiao | b7610f1 | 2015-12-22 14:36:04 -0800 | [diff] [blame] | 1424 | examples/list_people.py \ |
| 1425 | examples/list_people_test.go \ |
Adam Cozzette | fbd69fa | 2018-11-08 08:41:12 -0800 | [diff] [blame] | 1426 | examples/pubspec.yaml \ |
Feng Xiao | b7610f1 | 2015-12-22 14:36:04 -0800 | [diff] [blame] | 1427 | protobuf.bzl \ |
Adam Cozzette | 21773ef | 2019-06-18 10:07:18 -0700 | [diff] [blame] | 1428 | protobuf_deps.bzl \ |
Adam Liddell | 8199a01 | 2019-07-21 21:02:48 +0000 | [diff] [blame] | 1429 | third_party/six.BUILD \ |
Hao Nguyen | 87f83cc | 2019-05-13 16:38:07 -0700 | [diff] [blame] | 1430 | third_party/zlib.BUILD \ |
Joshua Haberman | f65bcca | 2020-11-02 09:44:46 -0800 | [diff] [blame] | 1431 | third_party/wyhash/LICENSE \ |
| 1432 | third_party/wyhash/wyhash.h \ |
Feng Xiao | b7610f1 | 2015-12-22 14:36:04 -0800 | [diff] [blame] | 1433 | util/python/BUILD |
Feng Xiao | 8f7dec8 | 2014-12-02 14:15:26 -0800 | [diff] [blame] | 1434 | |
Paul Yang | 176bac6 | 2017-06-28 15:22:19 -0700 | [diff] [blame] | 1435 | |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1436 | # Deletes all the files generated by autogen.sh. |
| 1437 | MAINTAINERCLEANFILES = \ |
| 1438 | aclocal.m4 \ |
Thomas Van Lenten | a20d0b6 | 2015-12-10 15:34:34 -0500 | [diff] [blame] | 1439 | ar-lib \ |
temporal | 40ee551 | 2008-07-10 02:12:20 +0000 | [diff] [blame] | 1440 | config.guess \ |
| 1441 | config.sub \ |
| 1442 | configure \ |
| 1443 | depcomp \ |
| 1444 | install-sh \ |
| 1445 | ltmain.sh \ |
| 1446 | Makefile.in \ |
| 1447 | missing \ |
| 1448 | mkinstalldirs \ |
| 1449 | config.h.in \ |
kenton@google.com | 39671e5 | 2009-07-31 21:46:11 +0000 | [diff] [blame] | 1450 | stamp.h.in \ |
| 1451 | m4/ltsugar.m4 \ |
| 1452 | m4/libtool.m4 \ |
| 1453 | m4/ltversion.m4 \ |
| 1454 | m4/lt~obsolete.m4 \ |
| 1455 | m4/ltoptions.m4 |