Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1 | ## Process this file with automake to produce Makefile.in |
| 2 | |
| 3 | ACLOCAL_AMFLAGS = -I m4 |
| 4 | |
| 5 | AUTOMAKE_OPTIONS = foreign |
| 6 | |
| 7 | # Build . before src so that our all-local and clean-local hooks kicks in at |
| 8 | # the right time. |
| 9 | SUBDIRS = . src |
| 10 | |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 11 | # Always include third_party directories in distributions. |
| 12 | DIST_SUBDIRS = src conformance benchmarks third_party/googletest |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 13 | |
| 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, |
| 16 | # which takes a lot of time and is generally not useful to us. Also, we don't |
| 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. |
| 19 | check-local: |
| 20 | @echo "Making lib/libgmock.a lib/libgmock_main.a in gmock" |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [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 |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 23 | |
| 24 | # We would like to clean gmock when "make clean" is invoked. But we have to |
| 25 | # be careful because clean-local is also invoked during "make distclean", but |
| 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 |
| 28 | # cd to the directory again and "make clean" it will fail. So, check that the |
| 29 | # Makefile exists before recursing. |
| 30 | clean-local: |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [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; \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 34 | fi; \ |
| 35 | if test -e conformance/Makefile; then \ |
| 36 | echo "Making clean in conformance"; \ |
| 37 | cd conformance && $(MAKE) $(AM_MAKEFLAGS) clean; \ |
| 38 | fi; \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -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; \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 43 | if test -e objectivec/DevTools; then \ |
| 44 | echo "Cleaning any ObjC pyc files"; \ |
| 45 | rm -f objectivec/DevTools/*.pyc; \ |
| 46 | fi |
| 47 | |
| 48 | pkgconfigdir = $(libdir)/pkgconfig |
| 49 | pkgconfig_DATA = protobuf.pc protobuf-lite.pc |
| 50 | |
| 51 | csharp_EXTRA_DIST= \ |
| 52 | csharp/.gitignore \ |
| 53 | csharp/CHANGES.txt \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 54 | csharp/Google.Protobuf.Tools.nuspec \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 55 | csharp/README.md \ |
| 56 | csharp/build_packages.bat \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 57 | csharp/build_tools.sh \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 58 | csharp/buildall.sh \ |
| 59 | csharp/generate_protos.sh \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 60 | csharp/global.json \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 61 | csharp/keys/Google.Protobuf.public.snk \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 62 | csharp/keys/Google.Protobuf.snk \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 63 | csharp/keys/README.md \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 64 | csharp/protos/README.md \ |
| 65 | csharp/protos/map_unittest_proto3.proto \ |
| 66 | csharp/protos/unittest_custom_options_proto3.proto \ |
| 67 | csharp/protos/unittest_import_public_proto3.proto \ |
| 68 | csharp/protos/unittest_import_proto3.proto \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 69 | csharp/protos/unittest_issues.proto \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 70 | csharp/protos/unittest_proto3.proto \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 71 | csharp/src/AddressBook/AddPerson.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 72 | csharp/src/AddressBook/Addressbook.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 73 | csharp/src/AddressBook/AddressBook.csproj \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 74 | csharp/src/AddressBook/ListPeople.cs \ |
| 75 | csharp/src/AddressBook/Program.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 76 | csharp/src/AddressBook/SampleUsage.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 77 | csharp/src/Google.Protobuf.Conformance/Conformance.cs \ |
| 78 | csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj \ |
| 79 | csharp/src/Google.Protobuf.Conformance/Program.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 80 | csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \ |
| 81 | csharp/src/Google.Protobuf.JsonDump/Program.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 82 | csharp/src/Google.Protobuf.Test/ByteStringTest.cs \ |
| 83 | csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \ |
| 84 | csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \ |
| 85 | csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \ |
| 86 | csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 87 | csharp/src/Google.Protobuf.Test/Collections/ProtobufEqualityComparersTest.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 88 | csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \ |
| 89 | csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 90 | csharp/src/Google.Protobuf.Test/Compatibility/StreamExtensionsTest.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 91 | csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs \ |
| 92 | csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \ |
| 93 | csharp/src/Google.Protobuf.Test/EqualityTester.cs \ |
| 94 | csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \ |
| 95 | csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \ |
| 96 | csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \ |
| 97 | csharp/src/Google.Protobuf.Test/IssuesTest.cs \ |
| 98 | csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \ |
| 99 | csharp/src/Google.Protobuf.Test/JsonParserTest.cs \ |
| 100 | csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 101 | csharp/src/Google.Protobuf.Test/Reflection/CustomOptionsTest.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 102 | csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \ |
| 103 | csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs \ |
| 104 | csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs \ |
| 105 | csharp/src/Google.Protobuf.Test/SampleEnum.cs \ |
| 106 | csharp/src/Google.Protobuf.Test/SampleMessages.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 107 | csharp/src/Google.Protobuf.Test/SampleNaNs.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 108 | csharp/src/Google.Protobuf.Test/TestCornerCases.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 109 | csharp/src/Google.Protobuf.Test/TestProtos/ForeignMessagePartial.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 110 | csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 111 | csharp/src/Google.Protobuf.Test/TestProtos/TestMessagesProto3.cs \ |
| 112 | csharp/src/Google.Protobuf.Test/TestProtos/UnittestCustomOptionsProto3.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 113 | csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs \ |
| 114 | csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs \ |
| 115 | csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs \ |
| 116 | csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs \ |
| 117 | csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs \ |
| 118 | csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \ |
| 119 | csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 120 | csharp/src/Google.Protobuf.Test/WellKnownTypes/FieldMaskTest.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 121 | csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \ |
| 122 | csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 123 | csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 124 | csharp/src/Google.Protobuf.sln \ |
| 125 | csharp/src/Google.Protobuf/ByteArray.cs \ |
| 126 | csharp/src/Google.Protobuf/ByteString.cs \ |
| 127 | csharp/src/Google.Protobuf/CodedInputStream.cs \ |
| 128 | csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \ |
| 129 | csharp/src/Google.Protobuf/CodedOutputStream.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 130 | csharp/src/Google.Protobuf/Collections/Lists.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 131 | csharp/src/Google.Protobuf/Collections/MapField.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 132 | csharp/src/Google.Protobuf/Collections/ProtobufEqualityComparers.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 133 | csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \ |
| 134 | csharp/src/Google.Protobuf/Collections/RepeatedField.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 135 | csharp/src/Google.Protobuf/Compatibility/MethodInfoExtensions.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 136 | csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 137 | csharp/src/Google.Protobuf/Compatibility/StreamExtensions.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 138 | csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \ |
| 139 | csharp/src/Google.Protobuf/FieldCodec.cs \ |
| 140 | csharp/src/Google.Protobuf/FrameworkPortability.cs \ |
| 141 | csharp/src/Google.Protobuf/Google.Protobuf.csproj \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 142 | csharp/src/Google.Protobuf/ICustomDiagnosticMessage.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 143 | csharp/src/Google.Protobuf/IDeepCloneable.cs \ |
| 144 | csharp/src/Google.Protobuf/IMessage.cs \ |
| 145 | csharp/src/Google.Protobuf/InvalidJsonException.cs \ |
| 146 | csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \ |
| 147 | csharp/src/Google.Protobuf/JsonFormatter.cs \ |
| 148 | csharp/src/Google.Protobuf/JsonParser.cs \ |
| 149 | csharp/src/Google.Protobuf/JsonToken.cs \ |
| 150 | csharp/src/Google.Protobuf/JsonTokenizer.cs \ |
| 151 | csharp/src/Google.Protobuf/LimitedInputStream.cs \ |
| 152 | csharp/src/Google.Protobuf/MessageExtensions.cs \ |
| 153 | csharp/src/Google.Protobuf/MessageParser.cs \ |
| 154 | csharp/src/Google.Protobuf/ProtoPreconditions.cs \ |
| 155 | csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 156 | csharp/src/Google.Protobuf/Reflection/CustomOptions.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 157 | csharp/src/Google.Protobuf/Reflection/Descriptor.cs \ |
| 158 | csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \ |
| 159 | csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \ |
| 160 | csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \ |
| 161 | csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \ |
| 162 | csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \ |
| 163 | csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \ |
| 164 | csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \ |
| 165 | csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \ |
| 166 | csharp/src/Google.Protobuf/Reflection/FieldType.cs \ |
| 167 | csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \ |
| 168 | csharp/src/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs \ |
| 169 | csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \ |
| 170 | csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \ |
| 171 | csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \ |
| 172 | csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \ |
| 173 | csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \ |
| 174 | csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \ |
| 175 | csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 176 | csharp/src/Google.Protobuf/Reflection/OriginalNameAttribute.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 177 | csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \ |
| 178 | csharp/src/Google.Protobuf/Reflection/PartialClasses.cs \ |
| 179 | csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \ |
| 180 | csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \ |
| 181 | csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \ |
| 182 | csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \ |
| 183 | csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs \ |
| 184 | csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \ |
| 185 | csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \ |
| 186 | csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \ |
| 187 | csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \ |
| 188 | csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \ |
| 189 | csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \ |
| 190 | csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 191 | csharp/src/Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 192 | csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \ |
| 193 | csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \ |
| 194 | csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \ |
| 195 | csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \ |
| 196 | csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \ |
| 197 | csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \ |
| 198 | csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs \ |
| 199 | csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \ |
| 200 | csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs \ |
| 201 | csharp/src/Google.Protobuf/WireFormat.cs \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 202 | csharp/src/Google.Protobuf/UnknownField.cs \ |
| 203 | csharp/src/Google.Protobuf/UnknownFieldSet.cs |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 204 | |
| 205 | java_EXTRA_DIST= \ |
| 206 | java/README.md \ |
| 207 | java/core/generate-sources-build.xml \ |
| 208 | java/core/generate-test-sources-build.xml \ |
| 209 | java/core/pom.xml \ |
| 210 | java/core/src/main/java/com/google/protobuf/AbstractMessage.java \ |
| 211 | java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java \ |
| 212 | java/core/src/main/java/com/google/protobuf/AbstractParser.java \ |
| 213 | java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 214 | java/core/src/main/java/com/google/protobuf/Android.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 215 | java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java \ |
| 216 | java/core/src/main/java/com/google/protobuf/BlockingService.java \ |
| 217 | java/core/src/main/java/com/google/protobuf/BooleanArrayList.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 218 | java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java \ |
| 219 | java/core/src/main/java/com/google/protobuf/ByteOutput.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 220 | java/core/src/main/java/com/google/protobuf/ByteString.java \ |
| 221 | java/core/src/main/java/com/google/protobuf/CodedInputStream.java \ |
| 222 | java/core/src/main/java/com/google/protobuf/CodedOutputStream.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 223 | java/core/src/main/java/com/google/protobuf/DiscardUnknownFieldsParser.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 224 | java/core/src/main/java/com/google/protobuf/Descriptors.java \ |
| 225 | java/core/src/main/java/com/google/protobuf/DoubleArrayList.java \ |
| 226 | java/core/src/main/java/com/google/protobuf/DynamicMessage.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 227 | java/core/src/main/java/com/google/protobuf/ExperimentalApi.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 228 | java/core/src/main/java/com/google/protobuf/Extension.java \ |
| 229 | java/core/src/main/java/com/google/protobuf/ExtensionLite.java \ |
| 230 | java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 231 | java/core/src/main/java/com/google/protobuf/ExtensionRegistryFactory.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 232 | java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \ |
| 233 | java/core/src/main/java/com/google/protobuf/FieldSet.java \ |
| 234 | java/core/src/main/java/com/google/protobuf/FloatArrayList.java \ |
| 235 | java/core/src/main/java/com/google/protobuf/GeneratedMessage.java \ |
| 236 | java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 237 | java/core/src/main/java/com/google/protobuf/GeneratedMessageV3.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 238 | java/core/src/main/java/com/google/protobuf/IntArrayList.java \ |
| 239 | java/core/src/main/java/com/google/protobuf/Internal.java \ |
| 240 | java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 241 | java/core/src/main/java/com/google/protobuf/IterableByteBufferInputStream.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 242 | java/core/src/main/java/com/google/protobuf/LazyField.java \ |
| 243 | java/core/src/main/java/com/google/protobuf/LazyFieldLite.java \ |
| 244 | java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java \ |
| 245 | java/core/src/main/java/com/google/protobuf/LazyStringList.java \ |
| 246 | java/core/src/main/java/com/google/protobuf/LongArrayList.java \ |
| 247 | java/core/src/main/java/com/google/protobuf/MapEntry.java \ |
| 248 | java/core/src/main/java/com/google/protobuf/MapEntryLite.java \ |
| 249 | java/core/src/main/java/com/google/protobuf/MapField.java \ |
| 250 | java/core/src/main/java/com/google/protobuf/MapFieldLite.java \ |
| 251 | java/core/src/main/java/com/google/protobuf/Message.java \ |
| 252 | java/core/src/main/java/com/google/protobuf/MessageLite.java \ |
| 253 | java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \ |
| 254 | java/core/src/main/java/com/google/protobuf/MessageLiteToString.java \ |
| 255 | java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java \ |
| 256 | java/core/src/main/java/com/google/protobuf/MessageReflection.java \ |
| 257 | java/core/src/main/java/com/google/protobuf/MutabilityOracle.java \ |
| 258 | java/core/src/main/java/com/google/protobuf/NioByteString.java \ |
| 259 | java/core/src/main/java/com/google/protobuf/Parser.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 260 | java/core/src/main/java/com/google/protobuf/PrimitiveNonBoxingCollection.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 261 | java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java \ |
| 262 | java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \ |
| 263 | java/core/src/main/java/com/google/protobuf/ProtocolStringList.java \ |
| 264 | java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 265 | java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 266 | java/core/src/main/java/com/google/protobuf/RopeByteString.java \ |
| 267 | java/core/src/main/java/com/google/protobuf/RpcCallback.java \ |
| 268 | java/core/src/main/java/com/google/protobuf/RpcChannel.java \ |
| 269 | java/core/src/main/java/com/google/protobuf/RpcController.java \ |
| 270 | java/core/src/main/java/com/google/protobuf/RpcUtil.java \ |
| 271 | java/core/src/main/java/com/google/protobuf/Service.java \ |
| 272 | java/core/src/main/java/com/google/protobuf/ServiceException.java \ |
| 273 | java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 274 | java/core/src/main/java/com/google/protobuf/SingleFieldBuilderV3.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 275 | java/core/src/main/java/com/google/protobuf/SmallSortedMap.java \ |
| 276 | java/core/src/main/java/com/google/protobuf/TextFormat.java \ |
| 277 | java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 278 | java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java \ |
| 279 | java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 280 | java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java \ |
| 281 | java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java \ |
| 282 | java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \ |
| 283 | java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \ |
| 284 | java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 285 | java/core/src/main/java/com/google/protobuf/UnsafeUtil.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 286 | java/core/src/main/java/com/google/protobuf/Utf8.java \ |
| 287 | java/core/src/main/java/com/google/protobuf/WireFormat.java \ |
| 288 | java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java \ |
| 289 | java/core/src/test/java/com/google/protobuf/AnyTest.java \ |
| 290 | java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java \ |
| 291 | java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 292 | java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 293 | java/core/src/test/java/com/google/protobuf/ByteStringTest.java \ |
| 294 | java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java \ |
| 295 | java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java \ |
| 296 | java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 297 | java/core/src/test/java/com/google/protobuf/DecodeUtf8Test.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 298 | java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \ |
| 299 | java/core/src/test/java/com/google/protobuf/DescriptorsTest.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 300 | java/core/src/test/java/com/google/protobuf/DiscardUnknownFieldsTest.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 301 | java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java \ |
| 302 | java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 303 | java/core/src/test/java/com/google/protobuf/EnumTest.java \ |
| 304 | java/core/src/test/java/com/google/protobuf/ExtensionRegistryFactoryTest.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 305 | java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java \ |
| 306 | java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java \ |
| 307 | java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \ |
| 308 | java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java \ |
| 309 | java/core/src/test/java/com/google/protobuf/IntArrayListTest.java \ |
| 310 | java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java \ |
| 311 | java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \ |
| 312 | java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \ |
| 313 | java/core/src/test/java/com/google/protobuf/LazyFieldTest.java \ |
| 314 | java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \ |
| 315 | java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \ |
| 316 | java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \ |
| 317 | java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \ |
| 318 | java/core/src/test/java/com/google/protobuf/LiteTest.java \ |
| 319 | java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java \ |
| 320 | java/core/src/test/java/com/google/protobuf/LongArrayListTest.java \ |
| 321 | java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \ |
| 322 | java/core/src/test/java/com/google/protobuf/MapForProto2Test.java \ |
| 323 | java/core/src/test/java/com/google/protobuf/MapTest.java \ |
| 324 | java/core/src/test/java/com/google/protobuf/MessageTest.java \ |
| 325 | java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java \ |
| 326 | java/core/src/test/java/com/google/protobuf/NioByteStringTest.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 327 | java/core/src/test/java/com/google/protobuf/ParseExceptionsTest.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 328 | java/core/src/test/java/com/google/protobuf/ParserTest.java \ |
| 329 | java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 330 | java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderV3Test.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 331 | java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \ |
| 332 | java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java \ |
| 333 | java/core/src/test/java/com/google/protobuf/ServiceTest.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 334 | java/core/src/test/java/com/google/protobuf/SingleFieldBuilderV3Test.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 335 | java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java \ |
| 336 | java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 337 | java/core/src/test/java/com/google/protobuf/TestBadIdentifiersLite.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 338 | java/core/src/test/java/com/google/protobuf/TestUtil.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 339 | java/core/src/test/java/com/google/protobuf/TestUtilLite.java \ |
| 340 | java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java \ |
| 341 | java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 342 | java/core/src/test/java/com/google/protobuf/TextFormatTest.java \ |
| 343 | java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \ |
| 344 | java/core/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \ |
| 345 | java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \ |
| 346 | java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \ |
| 347 | java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java \ |
| 348 | java/core/src/test/java/com/google/protobuf/WireFormatTest.java \ |
| 349 | java/core/src/test/proto/com/google/protobuf/any_test.proto \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 350 | java/core/src/test/proto/com/google/protobuf/deprecated_file.proto \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 351 | java/core/src/test/proto/com/google/protobuf/field_presence_test.proto \ |
| 352 | java/core/src/test/proto/com/google/protobuf/lazy_fields_lite.proto \ |
| 353 | java/core/src/test/proto/com/google/protobuf/lite_equals_and_hash.proto \ |
| 354 | java/core/src/test/proto/com/google/protobuf/map_for_proto2_lite_test.proto \ |
| 355 | java/core/src/test/proto/com/google/protobuf/map_for_proto2_test.proto \ |
| 356 | java/core/src/test/proto/com/google/protobuf/map_initialization_order_test.proto \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 357 | java/core/src/test/proto/com/google/protobuf/map_lite_test.proto \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 358 | java/core/src/test/proto/com/google/protobuf/map_test.proto \ |
| 359 | java/core/src/test/proto/com/google/protobuf/multiple_files_test.proto \ |
| 360 | java/core/src/test/proto/com/google/protobuf/nested_builders_test.proto \ |
| 361 | java/core/src/test/proto/com/google/protobuf/nested_extension.proto \ |
| 362 | java/core/src/test/proto/com/google/protobuf/nested_extension_lite.proto \ |
| 363 | java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto \ |
| 364 | java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto \ |
| 365 | java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto \ |
| 366 | java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto \ |
| 367 | java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto \ |
| 368 | java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto \ |
| 369 | java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto \ |
| 370 | java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto \ |
| 371 | java/core/src/test/proto/com/google/protobuf/test_custom_options.proto \ |
| 372 | java/core/src/test/proto/com/google/protobuf/test_extra_interfaces.proto \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 373 | java/lite.md \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 374 | java/pom.xml \ |
| 375 | java/util/pom.xml \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 376 | java/util/src/main/java/com/google/protobuf/util/Durations.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 377 | java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java \ |
| 378 | java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java \ |
| 379 | java/util/src/main/java/com/google/protobuf/util/JsonFormat.java \ |
| 380 | java/util/src/main/java/com/google/protobuf/util/TimeUtil.java \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 381 | java/util/src/main/java/com/google/protobuf/util/Timestamps.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 382 | java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java \ |
| 383 | java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java \ |
| 384 | java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java \ |
| 385 | java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java \ |
| 386 | java/util/src/test/proto/com/google/protobuf/util/json_test.proto |
| 387 | |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 388 | objectivec_EXTRA_DIST= \ |
| 389 | objectivec/DevTools/check_version_stamps.sh \ |
| 390 | objectivec/DevTools/compile_testing_protos.sh \ |
| 391 | objectivec/DevTools/full_mac_build.sh \ |
| 392 | objectivec/DevTools/pddm.py \ |
| 393 | objectivec/DevTools/pddm_tests.py \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 394 | objectivec/generate_well_known_types.sh \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 395 | objectivec/google/protobuf/Any.pbobjc.h \ |
| 396 | objectivec/google/protobuf/Any.pbobjc.m \ |
| 397 | objectivec/google/protobuf/Api.pbobjc.h \ |
| 398 | objectivec/google/protobuf/Api.pbobjc.m \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 399 | objectivec/google/protobuf/Duration.pbobjc.h \ |
| 400 | objectivec/google/protobuf/Duration.pbobjc.m \ |
| 401 | objectivec/google/protobuf/Empty.pbobjc.h \ |
| 402 | objectivec/google/protobuf/Empty.pbobjc.m \ |
| 403 | objectivec/google/protobuf/FieldMask.pbobjc.h \ |
| 404 | objectivec/google/protobuf/FieldMask.pbobjc.m \ |
| 405 | objectivec/google/protobuf/SourceContext.pbobjc.h \ |
| 406 | objectivec/google/protobuf/SourceContext.pbobjc.m \ |
| 407 | objectivec/google/protobuf/Struct.pbobjc.h \ |
| 408 | objectivec/google/protobuf/Struct.pbobjc.m \ |
| 409 | objectivec/google/protobuf/Timestamp.pbobjc.h \ |
| 410 | objectivec/google/protobuf/Timestamp.pbobjc.m \ |
| 411 | objectivec/google/protobuf/Type.pbobjc.h \ |
| 412 | objectivec/google/protobuf/Type.pbobjc.m \ |
| 413 | objectivec/google/protobuf/Wrappers.pbobjc.h \ |
| 414 | objectivec/google/protobuf/Wrappers.pbobjc.m \ |
| 415 | objectivec/GPBArray.h \ |
| 416 | objectivec/GPBArray.m \ |
| 417 | objectivec/GPBArray_PackagePrivate.h \ |
| 418 | objectivec/GPBBootstrap.h \ |
| 419 | objectivec/GPBCodedInputStream.h \ |
| 420 | objectivec/GPBCodedInputStream.m \ |
| 421 | objectivec/GPBCodedInputStream_PackagePrivate.h \ |
| 422 | objectivec/GPBCodedOutputStream.h \ |
| 423 | objectivec/GPBCodedOutputStream.m \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 424 | objectivec/GPBCodedOutputStream_PackagePrivate.h \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 425 | objectivec/GPBDescriptor.h \ |
| 426 | objectivec/GPBDescriptor.m \ |
| 427 | objectivec/GPBDescriptor_PackagePrivate.h \ |
| 428 | objectivec/GPBDictionary.h \ |
| 429 | objectivec/GPBDictionary.m \ |
| 430 | objectivec/GPBDictionary_PackagePrivate.h \ |
| 431 | objectivec/GPBExtensionInternals.h \ |
| 432 | objectivec/GPBExtensionInternals.m \ |
| 433 | objectivec/GPBExtensionRegistry.h \ |
| 434 | objectivec/GPBExtensionRegistry.m \ |
| 435 | objectivec/GPBMessage.h \ |
| 436 | objectivec/GPBMessage.m \ |
| 437 | objectivec/GPBMessage_PackagePrivate.h \ |
| 438 | objectivec/GPBProtocolBuffers.h \ |
| 439 | objectivec/GPBProtocolBuffers.m \ |
| 440 | objectivec/GPBProtocolBuffers_RuntimeSupport.h \ |
| 441 | objectivec/GPBRootObject.h \ |
| 442 | objectivec/GPBRootObject.m \ |
| 443 | objectivec/GPBRootObject_PackagePrivate.h \ |
| 444 | objectivec/GPBRuntimeTypes.h \ |
| 445 | objectivec/GPBUnknownField.h \ |
| 446 | objectivec/GPBUnknownField.m \ |
| 447 | objectivec/GPBUnknownField_PackagePrivate.h \ |
| 448 | objectivec/GPBUnknownFieldSet.h \ |
| 449 | objectivec/GPBUnknownFieldSet.m \ |
| 450 | objectivec/GPBUnknownFieldSet_PackagePrivate.h \ |
| 451 | objectivec/GPBUtilities.h \ |
| 452 | objectivec/GPBUtilities.m \ |
| 453 | objectivec/GPBUtilities_PackagePrivate.h \ |
| 454 | objectivec/GPBWellKnownTypes.h \ |
| 455 | objectivec/GPBWellKnownTypes.m \ |
| 456 | objectivec/GPBWireFormat.h \ |
| 457 | objectivec/GPBWireFormat.m \ |
| 458 | objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \ |
| 459 | objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 460 | objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 461 | objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 462 | objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ |
| 463 | objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ |
| 464 | objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \ |
| 465 | objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 466 | objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 467 | objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ |
| 468 | objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ |
| 469 | objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ |
| 470 | objectivec/README.md \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 471 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.pbxproj \ |
| 472 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ |
| 473 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/OSXCocoaPodsTester.xcscheme \ |
| 474 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.h \ |
| 475 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.m \ |
| 476 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \ |
| 477 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Base.lproj/MainMenu.xib \ |
| 478 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Info.plist \ |
| 479 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/main.m \ |
| 480 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-framework \ |
| 481 | objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-static \ |
| 482 | objectivec/Tests/CocoaPods/README.md \ |
| 483 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-framework \ |
| 484 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-static \ |
| 485 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.pbxproj \ |
| 486 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ |
| 487 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/iOSCocoaPodsTester.xcscheme \ |
| 488 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.h \ |
| 489 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.m \ |
| 490 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \ |
| 491 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/LaunchScreen.storyboard \ |
| 492 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/Main.storyboard \ |
| 493 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Info.plist \ |
| 494 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.h \ |
| 495 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.m \ |
| 496 | objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/main.m \ |
| 497 | objectivec/Tests/CocoaPods/run_tests.sh \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 498 | objectivec/Tests/golden_message \ |
| 499 | objectivec/Tests/golden_packed_fields_message \ |
| 500 | objectivec/Tests/GPBARCUnittestProtos.m \ |
| 501 | objectivec/Tests/GPBArrayTests.m \ |
| 502 | objectivec/Tests/GPBCodedInputStreamTests.m \ |
| 503 | objectivec/Tests/GPBCodedOuputStreamTests.m \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 504 | objectivec/Tests/GPBCompileTest01.m \ |
| 505 | objectivec/Tests/GPBCompileTest02.m \ |
| 506 | objectivec/Tests/GPBCompileTest03.m \ |
| 507 | objectivec/Tests/GPBCompileTest04.m \ |
| 508 | objectivec/Tests/GPBCompileTest05.m \ |
| 509 | objectivec/Tests/GPBCompileTest06.m \ |
| 510 | objectivec/Tests/GPBCompileTest07.m \ |
| 511 | objectivec/Tests/GPBCompileTest08.m \ |
| 512 | objectivec/Tests/GPBCompileTest09.m \ |
| 513 | objectivec/Tests/GPBCompileTest10.m \ |
| 514 | objectivec/Tests/GPBCompileTest11.m \ |
| 515 | objectivec/Tests/GPBCompileTest12.m \ |
| 516 | objectivec/Tests/GPBCompileTest13.m \ |
| 517 | objectivec/Tests/GPBCompileTest14.m \ |
| 518 | objectivec/Tests/GPBCompileTest15.m \ |
| 519 | objectivec/Tests/GPBCompileTest16.m \ |
| 520 | objectivec/Tests/GPBCompileTest17.m \ |
| 521 | objectivec/Tests/GPBCompileTest18.m \ |
| 522 | objectivec/Tests/GPBCompileTest19.m \ |
| 523 | objectivec/Tests/GPBCompileTest20.m \ |
| 524 | objectivec/Tests/GPBCompileTest21.m \ |
| 525 | objectivec/Tests/GPBCompileTest22.m \ |
| 526 | objectivec/Tests/GPBCompileTest23.m \ |
| 527 | objectivec/Tests/GPBCompileTest24.m \ |
| 528 | objectivec/Tests/GPBCompileTest25.m \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 529 | objectivec/Tests/GPBConcurrencyTests.m \ |
| 530 | objectivec/Tests/GPBDescriptorTests.m \ |
| 531 | objectivec/Tests/GPBDictionaryTests+Bool.m \ |
| 532 | objectivec/Tests/GPBDictionaryTests+Int32.m \ |
| 533 | objectivec/Tests/GPBDictionaryTests+Int64.m \ |
| 534 | objectivec/Tests/GPBDictionaryTests+String.m \ |
| 535 | objectivec/Tests/GPBDictionaryTests+UInt32.m \ |
| 536 | objectivec/Tests/GPBDictionaryTests+UInt64.m \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 537 | objectivec/Tests/GPBDictionaryTests.m \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 538 | objectivec/Tests/GPBDictionaryTests.pddm \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 539 | objectivec/Tests/GPBExtensionRegistryTest.m \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 540 | objectivec/Tests/GPBMessageTests+Merge.m \ |
| 541 | objectivec/Tests/GPBMessageTests+Runtime.m \ |
| 542 | objectivec/Tests/GPBMessageTests+Serialization.m \ |
| 543 | objectivec/Tests/GPBMessageTests.m \ |
| 544 | objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \ |
| 545 | objectivec/Tests/GPBPerfTests.m \ |
| 546 | objectivec/Tests/GPBSwiftTests.swift \ |
| 547 | objectivec/Tests/GPBTestUtilities.h \ |
| 548 | objectivec/Tests/GPBTestUtilities.m \ |
| 549 | objectivec/Tests/GPBUnittestProtos.m \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 550 | objectivec/Tests/GPBUnittestProtos2.m \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 551 | objectivec/Tests/GPBUnknownFieldSetTest.m \ |
| 552 | objectivec/Tests/GPBUtilitiesTests.m \ |
| 553 | objectivec/Tests/GPBWellKnownTypesTest.m \ |
| 554 | objectivec/Tests/GPBWireFormatTests.m \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 555 | objectivec/Tests/text_format_map_unittest_data.txt \ |
| 556 | objectivec/Tests/text_format_unittest_data.txt \ |
| 557 | objectivec/Tests/unittest_cycle.proto \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 558 | objectivec/Tests/unittest_deprecated.proto \ |
| 559 | objectivec/Tests/unittest_deprecated_file.proto \ |
| 560 | objectivec/Tests/unittest_extension_chain_a.proto \ |
| 561 | objectivec/Tests/unittest_extension_chain_b.proto \ |
| 562 | objectivec/Tests/unittest_extension_chain_c.proto \ |
| 563 | objectivec/Tests/unittest_extension_chain_d.proto \ |
| 564 | objectivec/Tests/unittest_extension_chain_e.proto \ |
| 565 | objectivec/Tests/unittest_extension_chain_f.proto \ |
| 566 | objectivec/Tests/unittest_extension_chain_g.proto \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 567 | objectivec/Tests/unittest_objc.proto \ |
| 568 | objectivec/Tests/unittest_objc_startup.proto \ |
| 569 | objectivec/Tests/unittest_runtime_proto2.proto \ |
| 570 | objectivec/Tests/unittest_runtime_proto3.proto \ |
| 571 | objectivec/Tests/UnitTests-Bridging-Header.h \ |
| 572 | objectivec/Tests/UnitTests-Info.plist \ |
| 573 | Protobuf.podspec |
| 574 | |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 575 | php_EXTRA_DIST= \ |
| 576 | composer.json \ |
| 577 | php/README.md \ |
| 578 | php/composer.json \ |
| 579 | php/ext/google/protobuf/array.c \ |
| 580 | php/ext/google/protobuf/config.m4 \ |
| 581 | php/ext/google/protobuf/def.c \ |
| 582 | php/ext/google/protobuf/encode_decode.c \ |
| 583 | php/ext/google/protobuf/map.c \ |
| 584 | php/ext/google/protobuf/message.c \ |
| 585 | php/ext/google/protobuf/package.xml \ |
| 586 | php/ext/google/protobuf/protobuf.c \ |
| 587 | php/ext/google/protobuf/protobuf.h \ |
| 588 | php/ext/google/protobuf/storage.c \ |
| 589 | php/ext/google/protobuf/type_check.c \ |
| 590 | php/ext/google/protobuf/upb.c \ |
| 591 | php/ext/google/protobuf/upb.h \ |
| 592 | php/ext/google/protobuf/utf8.c \ |
| 593 | php/ext/google/protobuf/utf8.h \ |
| 594 | php/generate_descriptor_protos.sh \ |
| 595 | php/phpunit.xml \ |
| 596 | php/src/GPBMetadata/Google/Protobuf/Any.php \ |
| 597 | php/src/GPBMetadata/Google/Protobuf/Api.php \ |
| 598 | php/src/GPBMetadata/Google/Protobuf/Duration.php \ |
| 599 | php/src/GPBMetadata/Google/Protobuf/FieldMask.php \ |
| 600 | php/src/GPBMetadata/Google/Protobuf/GPBEmpty.php \ |
| 601 | php/src/GPBMetadata/Google/Protobuf/Internal/Descriptor.php \ |
| 602 | php/src/GPBMetadata/Google/Protobuf/SourceContext.php \ |
| 603 | php/src/GPBMetadata/Google/Protobuf/Struct.php \ |
| 604 | php/src/GPBMetadata/Google/Protobuf/Timestamp.php \ |
| 605 | php/src/GPBMetadata/Google/Protobuf/Type.php \ |
| 606 | php/src/GPBMetadata/Google/Protobuf/Wrappers.php \ |
| 607 | php/src/Google/Protobuf/Any.php \ |
| 608 | php/src/Google/Protobuf/Api.php \ |
| 609 | php/src/Google/Protobuf/BoolValue.php \ |
| 610 | php/src/Google/Protobuf/BytesValue.php \ |
| 611 | php/src/Google/Protobuf/Descriptor.php \ |
| 612 | php/src/Google/Protobuf/DescriptorPool.php \ |
| 613 | php/src/Google/Protobuf/DoubleValue.php \ |
| 614 | php/src/Google/Protobuf/Duration.php \ |
| 615 | php/src/Google/Protobuf/Enum.php \ |
| 616 | php/src/Google/Protobuf/EnumDescriptor.php \ |
| 617 | php/src/Google/Protobuf/EnumValue.php \ |
| 618 | php/src/Google/Protobuf/EnumValueDescriptor.php \ |
| 619 | php/src/Google/Protobuf/Field.php \ |
| 620 | php/src/Google/Protobuf/FieldDescriptor.php \ |
| 621 | php/src/Google/Protobuf/FieldMask.php \ |
| 622 | php/src/Google/Protobuf/Field/Cardinality.php \ |
| 623 | php/src/Google/Protobuf/Field_Cardinality.php \ |
| 624 | php/src/Google/Protobuf/Field/Kind.php \ |
| 625 | php/src/Google/Protobuf/Field_Kind.php \ |
| 626 | php/src/Google/Protobuf/FloatValue.php \ |
| 627 | php/src/Google/Protobuf/GPBEmpty.php \ |
| 628 | php/src/Google/Protobuf/Int32Value.php \ |
| 629 | php/src/Google/Protobuf/Int64Value.php \ |
| 630 | php/src/Google/Protobuf/Internal/CodedInputStream.php \ |
| 631 | php/src/Google/Protobuf/Internal/CodedOutputStream.php \ |
| 632 | php/src/Google/Protobuf/Internal/Descriptor.php \ |
| 633 | php/src/Google/Protobuf/Internal/DescriptorPool.php \ |
| 634 | php/src/Google/Protobuf/Internal/DescriptorProto.php \ |
| 635 | php/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php \ |
| 636 | php/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php \ |
| 637 | php/src/Google/Protobuf/Internal/EnumBuilderContext.php \ |
| 638 | php/src/Google/Protobuf/Internal/EnumDescriptor.php \ |
| 639 | php/src/Google/Protobuf/Internal/EnumDescriptorProto.php \ |
| 640 | php/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php \ |
| 641 | php/src/Google/Protobuf/Internal/EnumOptions.php \ |
| 642 | php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php \ |
| 643 | php/src/Google/Protobuf/Internal/EnumValueOptions.php \ |
| 644 | php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php \ |
| 645 | php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \ |
| 646 | php/src/Google/Protobuf/Internal/FieldDescriptor.php \ |
| 647 | php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \ |
| 648 | php/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php \ |
| 649 | php/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php \ |
| 650 | php/src/Google/Protobuf/Internal/FieldOptions.php \ |
| 651 | php/src/Google/Protobuf/Internal/FieldOptions/CType.php \ |
| 652 | php/src/Google/Protobuf/Internal/FieldOptions/JSType.php \ |
| 653 | php/src/Google/Protobuf/Internal/FileDescriptor.php \ |
| 654 | php/src/Google/Protobuf/Internal/FileDescriptorProto.php \ |
| 655 | php/src/Google/Protobuf/Internal/FileDescriptorSet.php \ |
| 656 | php/src/Google/Protobuf/Internal/FileOptions.php \ |
| 657 | php/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php \ |
| 658 | php/src/Google/Protobuf/Internal/GPBDecodeException.php \ |
| 659 | php/src/Google/Protobuf/Internal/GPBJsonWire.php \ |
| 660 | php/src/Google/Protobuf/Internal/GPBLabel.php \ |
| 661 | php/src/Google/Protobuf/Internal/GPBType.php \ |
| 662 | php/src/Google/Protobuf/Internal/GPBUtil.php \ |
| 663 | php/src/Google/Protobuf/Internal/GPBWire.php \ |
| 664 | php/src/Google/Protobuf/Internal/GPBWireType.php \ |
| 665 | php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php \ |
| 666 | php/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php \ |
| 667 | php/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php \ |
| 668 | php/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php \ |
| 669 | php/src/Google/Protobuf/Internal/MapEntry.php \ |
| 670 | php/src/Google/Protobuf/Internal/MapField.php \ |
| 671 | php/src/Google/Protobuf/Internal/MapFieldIter.php \ |
| 672 | php/src/Google/Protobuf/Internal/Message.php \ |
| 673 | php/src/Google/Protobuf/Internal/MessageBuilderContext.php \ |
| 674 | php/src/Google/Protobuf/Internal/MessageOptions.php \ |
| 675 | php/src/Google/Protobuf/Internal/MethodDescriptorProto.php \ |
| 676 | php/src/Google/Protobuf/Internal/MethodOptions.php \ |
| 677 | php/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php \ |
| 678 | php/src/Google/Protobuf/Internal/OneofDescriptor.php \ |
| 679 | php/src/Google/Protobuf/Internal/OneofDescriptorProto.php \ |
| 680 | php/src/Google/Protobuf/Internal/OneofField.php \ |
| 681 | php/src/Google/Protobuf/Internal/OneofOptions.php \ |
| 682 | php/src/Google/Protobuf/Internal/RawInputStream.php \ |
| 683 | php/src/Google/Protobuf/Internal/RepeatedField.php \ |
| 684 | php/src/Google/Protobuf/Internal/RepeatedFieldIter.php \ |
| 685 | php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php \ |
| 686 | php/src/Google/Protobuf/Internal/ServiceOptions.php \ |
| 687 | php/src/Google/Protobuf/Internal/SourceCodeInfo.php \ |
| 688 | php/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php \ |
| 689 | php/src/Google/Protobuf/Internal/UninterpretedOption.php \ |
| 690 | php/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php \ |
| 691 | php/src/Google/Protobuf/ListValue.php \ |
| 692 | php/src/Google/Protobuf/Method.php \ |
| 693 | php/src/Google/Protobuf/Mixin.php \ |
| 694 | php/src/Google/Protobuf/NullValue.php \ |
| 695 | php/src/Google/Protobuf/OneofDescriptor.php \ |
| 696 | php/src/Google/Protobuf/Option.php \ |
| 697 | php/src/Google/Protobuf/SourceContext.php \ |
| 698 | php/src/Google/Protobuf/StringValue.php \ |
| 699 | php/src/Google/Protobuf/Struct.php \ |
| 700 | php/src/Google/Protobuf/Syntax.php \ |
| 701 | php/src/Google/Protobuf/Timestamp.php \ |
| 702 | php/src/Google/Protobuf/Type.php \ |
| 703 | php/src/Google/Protobuf/UInt32Value.php \ |
| 704 | php/src/Google/Protobuf/UInt64Value.php \ |
| 705 | php/src/Google/Protobuf/Value.php \ |
| 706 | php/src/phpdoc.dist.xml \ |
| 707 | php/tests/array_test.php \ |
| 708 | php/tests/autoload.php \ |
| 709 | php/tests/bootstrap_phpunit.php \ |
| 710 | php/tests/compatibility_test.sh \ |
| 711 | php/tests/descriptors_test.php \ |
| 712 | php/tests/encode_decode_test.php \ |
| 713 | php/tests/gdb_test.sh \ |
| 714 | php/tests/generated_class_test.php \ |
| 715 | php/tests/generated_phpdoc_test.php \ |
| 716 | php/tests/generated_service_test.php \ |
| 717 | php/tests/map_field_test.php \ |
| 718 | php/tests/memory_leak_test.php \ |
| 719 | php/tests/php_implementation_test.php \ |
| 720 | php/tests/proto/empty/echo.proto \ |
| 721 | php/tests/proto/test.proto \ |
| 722 | php/tests/proto/test_descriptors.proto \ |
| 723 | php/tests/proto/test_empty_php_namespace.proto \ |
| 724 | php/tests/proto/test_import_descriptor_proto.proto \ |
| 725 | php/tests/proto/test_include.proto \ |
| 726 | php/tests/proto/test_no_namespace.proto \ |
| 727 | php/tests/proto/test_php_namespace.proto \ |
| 728 | php/tests/proto/test_prefix.proto \ |
| 729 | php/tests/proto/test_reserved_enum_lower.proto \ |
| 730 | php/tests/proto/test_reserved_enum_upper.proto \ |
| 731 | php/tests/proto/test_reserved_enum_value_lower.proto \ |
| 732 | php/tests/proto/test_reserved_enum_value_upper.proto \ |
| 733 | php/tests/proto/test_reserved_message_lower.proto \ |
| 734 | php/tests/proto/test_reserved_message_upper.proto \ |
| 735 | php/tests/proto/test_service.proto \ |
| 736 | php/tests/proto/test_service_namespace.proto \ |
| 737 | php/tests/test.sh \ |
| 738 | php/tests/test_base.php \ |
| 739 | php/tests/test_util.php \ |
| 740 | php/tests/undefined_test.php \ |
| 741 | php/tests/well_known_test.php |
| 742 | |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 743 | python_EXTRA_DIST= \ |
| 744 | python/MANIFEST.in \ |
| 745 | python/google/__init__.py \ |
| 746 | python/google/protobuf/__init__.py \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 747 | python/google/protobuf/compiler/__init__.py \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 748 | python/google/protobuf/descriptor.py \ |
| 749 | python/google/protobuf/descriptor_database.py \ |
| 750 | python/google/protobuf/descriptor_pool.py \ |
| 751 | python/google/protobuf/internal/__init__.py \ |
| 752 | python/google/protobuf/internal/_parameterized.py \ |
| 753 | python/google/protobuf/internal/any_test.proto \ |
| 754 | python/google/protobuf/internal/any_test.proto \ |
| 755 | python/google/protobuf/internal/api_implementation.cc \ |
| 756 | python/google/protobuf/internal/api_implementation.py \ |
| 757 | python/google/protobuf/internal/containers.py \ |
| 758 | python/google/protobuf/internal/decoder.py \ |
| 759 | python/google/protobuf/internal/descriptor_database_test.py \ |
| 760 | python/google/protobuf/internal/descriptor_pool_test.py \ |
| 761 | python/google/protobuf/internal/descriptor_pool_test1.proto \ |
| 762 | python/google/protobuf/internal/descriptor_pool_test2.proto \ |
| 763 | python/google/protobuf/internal/descriptor_test.py \ |
| 764 | python/google/protobuf/internal/encoder.py \ |
| 765 | python/google/protobuf/internal/enum_type_wrapper.py \ |
| 766 | python/google/protobuf/internal/factory_test1.proto \ |
| 767 | python/google/protobuf/internal/factory_test2.proto \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 768 | python/google/protobuf/internal/file_options_test.proto \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 769 | python/google/protobuf/internal/generator_test.py \ |
| 770 | python/google/protobuf/internal/import_test_package/__init__.py \ |
| 771 | python/google/protobuf/internal/import_test_package/inner.proto \ |
| 772 | python/google/protobuf/internal/import_test_package/outer.proto \ |
| 773 | python/google/protobuf/internal/json_format_test.py \ |
| 774 | python/google/protobuf/internal/message_factory_test.py \ |
| 775 | python/google/protobuf/internal/message_listener.py \ |
| 776 | python/google/protobuf/internal/message_set_extensions.proto \ |
| 777 | python/google/protobuf/internal/message_test.py \ |
| 778 | python/google/protobuf/internal/missing_enum_values.proto \ |
| 779 | python/google/protobuf/internal/more_extensions.proto \ |
| 780 | python/google/protobuf/internal/more_extensions_dynamic.proto \ |
| 781 | python/google/protobuf/internal/more_messages.proto \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 782 | python/google/protobuf/internal/no_package.proto \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 783 | python/google/protobuf/internal/packed_field_test.proto \ |
| 784 | python/google/protobuf/internal/proto_builder_test.py \ |
| 785 | python/google/protobuf/internal/python_message.py \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 786 | python/google/protobuf/internal/python_protobuf.cc \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 787 | python/google/protobuf/internal/reflection_test.py \ |
| 788 | python/google/protobuf/internal/service_reflection_test.py \ |
| 789 | python/google/protobuf/internal/symbol_database_test.py \ |
| 790 | python/google/protobuf/internal/test_bad_identifiers.proto \ |
| 791 | python/google/protobuf/internal/test_util.py \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 792 | python/google/protobuf/internal/testing_refleaks.py \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 793 | python/google/protobuf/internal/text_encoding_test.py \ |
| 794 | python/google/protobuf/internal/text_format_test.py \ |
| 795 | python/google/protobuf/internal/type_checkers.py \ |
| 796 | python/google/protobuf/internal/unknown_fields_test.py \ |
| 797 | python/google/protobuf/internal/well_known_types.py \ |
| 798 | python/google/protobuf/internal/well_known_types.py \ |
| 799 | python/google/protobuf/internal/well_known_types_test.py \ |
| 800 | python/google/protobuf/internal/well_known_types_test.py \ |
| 801 | python/google/protobuf/internal/wire_format.py \ |
| 802 | python/google/protobuf/internal/wire_format_test.py \ |
| 803 | python/google/protobuf/json_format.py \ |
| 804 | python/google/protobuf/message.py \ |
| 805 | python/google/protobuf/message_factory.py \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 806 | python/google/protobuf/python_protobuf.h \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 807 | python/google/protobuf/proto_builder.py \ |
| 808 | python/google/protobuf/pyext/README \ |
| 809 | python/google/protobuf/pyext/__init__.py \ |
| 810 | python/google/protobuf/pyext/cpp_message.py \ |
| 811 | python/google/protobuf/pyext/descriptor.cc \ |
| 812 | python/google/protobuf/pyext/descriptor.h \ |
| 813 | python/google/protobuf/pyext/descriptor_containers.cc \ |
| 814 | python/google/protobuf/pyext/descriptor_containers.h \ |
| 815 | python/google/protobuf/pyext/descriptor_database.cc \ |
| 816 | python/google/protobuf/pyext/descriptor_database.h \ |
| 817 | python/google/protobuf/pyext/descriptor_pool.cc \ |
| 818 | python/google/protobuf/pyext/descriptor_pool.h \ |
| 819 | python/google/protobuf/pyext/extension_dict.cc \ |
| 820 | python/google/protobuf/pyext/extension_dict.h \ |
| 821 | python/google/protobuf/pyext/map_container.cc \ |
| 822 | python/google/protobuf/pyext/map_container.h \ |
| 823 | python/google/protobuf/pyext/message.cc \ |
| 824 | python/google/protobuf/pyext/message.h \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 825 | python/google/protobuf/pyext/message_factory.cc \ |
| 826 | python/google/protobuf/pyext/message_factory.h \ |
| 827 | python/google/protobuf/pyext/message_module.cc \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 828 | python/google/protobuf/pyext/proto2_api_test.proto \ |
| 829 | python/google/protobuf/pyext/python.proto \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 830 | python/google/protobuf/pyext/repeated_composite_container.cc \ |
| 831 | python/google/protobuf/pyext/repeated_composite_container.h \ |
| 832 | python/google/protobuf/pyext/repeated_scalar_container.cc \ |
| 833 | python/google/protobuf/pyext/repeated_scalar_container.h \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 834 | python/google/protobuf/pyext/safe_numerics.h \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 835 | python/google/protobuf/pyext/scoped_pyobject_ptr.h \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 836 | python/google/protobuf/pyext/thread_unsafe_shared_ptr.h \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 837 | python/google/protobuf/reflection.py \ |
| 838 | python/google/protobuf/service.py \ |
| 839 | python/google/protobuf/service_reflection.py \ |
| 840 | python/google/protobuf/symbol_database.py \ |
| 841 | python/google/protobuf/text_encoding.py \ |
| 842 | python/google/protobuf/text_format.py \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 843 | python/google/protobuf/util/__init__.py \ |
| 844 | python/release.sh \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 845 | python/mox.py \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 846 | python/setup.cfg \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 847 | python/setup.py \ |
| 848 | python/stubout.py \ |
| 849 | python/tox.ini \ |
| 850 | python/README.md |
| 851 | |
| 852 | ruby_EXTRA_DIST= \ |
| 853 | ruby/Gemfile \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 854 | ruby/.gitignore \ |
| 855 | ruby/README.md \ |
| 856 | ruby/Rakefile \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 857 | ruby/compatibility_tests/v3.0.0/tests/test_import.proto \ |
| 858 | ruby/compatibility_tests/v3.0.0/tests/stress.rb \ |
| 859 | ruby/compatibility_tests/v3.0.0/tests/repeated_field_test.rb \ |
| 860 | ruby/compatibility_tests/v3.0.0/tests/generated_code_test.rb \ |
| 861 | ruby/compatibility_tests/v3.0.0/tests/generated_code.proto \ |
| 862 | ruby/compatibility_tests/v3.0.0/tests/basic.rb \ |
| 863 | ruby/compatibility_tests/v3.0.0/test.sh \ |
| 864 | ruby/compatibility_tests/v3.0.0/Rakefile \ |
| 865 | ruby/compatibility_tests/v3.0.0/README.md \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 866 | ruby/ext/google/protobuf_c/defs.c \ |
| 867 | ruby/ext/google/protobuf_c/encode_decode.c \ |
| 868 | ruby/ext/google/protobuf_c/extconf.rb \ |
| 869 | ruby/ext/google/protobuf_c/map.c \ |
| 870 | ruby/ext/google/protobuf_c/message.c \ |
| 871 | ruby/ext/google/protobuf_c/protobuf.c \ |
| 872 | ruby/ext/google/protobuf_c/protobuf.h \ |
| 873 | ruby/ext/google/protobuf_c/repeated_field.c \ |
| 874 | ruby/ext/google/protobuf_c/storage.c \ |
| 875 | ruby/ext/google/protobuf_c/upb.c \ |
| 876 | ruby/ext/google/protobuf_c/upb.h \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 877 | ruby/ext/google/protobuf_c/wrap_memcpy.c \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 878 | ruby/google-protobuf.gemspec \ |
| 879 | ruby/lib/google/protobuf/message_exts.rb \ |
| 880 | ruby/lib/google/protobuf/repeated_field.rb \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 881 | ruby/lib/google/protobuf/well_known_types.rb \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 882 | ruby/lib/google/protobuf.rb \ |
| 883 | ruby/pom.xml \ |
| 884 | ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \ |
| 885 | ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \ |
| 886 | ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \ |
| 887 | ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \ |
| 888 | ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \ |
| 889 | ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \ |
| 890 | ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \ |
| 891 | ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \ |
| 892 | ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \ |
| 893 | ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \ |
| 894 | ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \ |
| 895 | ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \ |
| 896 | ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \ |
| 897 | ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \ |
| 898 | ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \ |
| 899 | ruby/src/main/java/com/google/protobuf/jruby/Utils.java \ |
| 900 | ruby/src/main/java/google/ProtobufJavaService.java \ |
| 901 | ruby/src/main/sentinel.proto \ |
| 902 | ruby/tests/basic.rb \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 903 | ruby/tests/encode_decode_test.rb \ |
| 904 | ruby/tests/gc_test.rb \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 905 | ruby/tests/repeated_field_test.rb \ |
| 906 | ruby/tests/stress.rb \ |
| 907 | ruby/tests/generated_code.proto \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 908 | ruby/tests/test_import.proto \ |
| 909 | ruby/tests/test_ruby_package.proto \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 910 | ruby/tests/generated_code_test.rb \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 911 | ruby/tests/well_known_types_test.rb \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 912 | ruby/travis-test.sh |
| 913 | |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 914 | js_EXTRA_DIST= \ |
| 915 | js/README.md \ |
| 916 | js/binary/arith.js \ |
| 917 | js/binary/arith_test.js \ |
| 918 | js/binary/constants.js \ |
| 919 | js/binary/decoder.js \ |
| 920 | js/binary/decoder_test.js \ |
| 921 | js/binary/encoder.js \ |
| 922 | js/binary/message_test.js \ |
| 923 | js/binary/proto_test.js \ |
| 924 | js/binary/reader.js \ |
| 925 | js/binary/reader_test.js \ |
| 926 | js/binary/utils.js \ |
| 927 | js/binary/utils_test.js \ |
| 928 | js/binary/writer.js \ |
| 929 | js/binary/writer_test.js \ |
| 930 | js/commonjs/export.js \ |
| 931 | js/commonjs/export_asserts.js \ |
| 932 | js/commonjs/export_testdeps.js \ |
| 933 | js/commonjs/import_test.js \ |
| 934 | js/commonjs/jasmine.json \ |
| 935 | js/commonjs/rewrite_tests_for_commonjs.js \ |
| 936 | js/commonjs/test6/test6.proto \ |
| 937 | js/commonjs/test7/test7.proto \ |
| 938 | js/compatibility_tests/v3.0.0/binary/arith_test.js \ |
| 939 | js/compatibility_tests/v3.0.0/binary/decoder_test.js \ |
| 940 | js/compatibility_tests/v3.0.0/binary/proto_test.js \ |
| 941 | js/compatibility_tests/v3.0.0/binary/reader_test.js \ |
| 942 | js/compatibility_tests/v3.0.0/binary/utils_test.js \ |
| 943 | js/compatibility_tests/v3.0.0/binary/writer_test.js \ |
| 944 | js/compatibility_tests/v3.0.0/commonjs/export_asserts.js \ |
| 945 | js/compatibility_tests/v3.0.0/commonjs/export_testdeps.js \ |
| 946 | js/compatibility_tests/v3.0.0/commonjs/import_test.js \ |
| 947 | js/compatibility_tests/v3.0.0/commonjs/jasmine.json \ |
| 948 | js/compatibility_tests/v3.0.0/commonjs/rewrite_tests_for_commonjs.js \ |
| 949 | js/compatibility_tests/v3.0.0/commonjs/test6/test6.proto \ |
| 950 | js/compatibility_tests/v3.0.0/commonjs/test7/test7.proto \ |
| 951 | js/compatibility_tests/v3.0.0/data.proto \ |
| 952 | js/compatibility_tests/v3.0.0/debug_test.js \ |
| 953 | js/compatibility_tests/v3.0.0/jasmine1.json \ |
| 954 | js/compatibility_tests/v3.0.0/jasmine2.json \ |
| 955 | js/compatibility_tests/v3.0.0/jasmine3.json \ |
| 956 | js/compatibility_tests/v3.0.0/message_test.js \ |
| 957 | js/compatibility_tests/v3.0.0/proto3_test.js \ |
| 958 | js/compatibility_tests/v3.0.0/proto3_test.proto \ |
| 959 | js/compatibility_tests/v3.0.0/test2.proto \ |
| 960 | js/compatibility_tests/v3.0.0/test3.proto \ |
| 961 | js/compatibility_tests/v3.0.0/test4.proto \ |
| 962 | js/compatibility_tests/v3.0.0/test5.proto \ |
| 963 | js/compatibility_tests/v3.0.0/testbinary.proto \ |
| 964 | js/compatibility_tests/v3.0.0/testempty.proto \ |
| 965 | js/compatibility_tests/v3.0.0/test.proto \ |
| 966 | js/compatibility_tests/v3.0.0/test.sh \ |
| 967 | js/compatibility_tests/v3.1.0/testempty.proto \ |
| 968 | js/compatibility_tests/v3.1.0/testbinary.proto \ |
| 969 | js/compatibility_tests/v3.1.0/test5.proto \ |
| 970 | js/compatibility_tests/v3.1.0/test4.proto \ |
| 971 | js/compatibility_tests/v3.1.0/test3.proto \ |
| 972 | js/compatibility_tests/v3.1.0/test2.proto \ |
| 973 | js/compatibility_tests/v3.1.0/test.proto \ |
| 974 | js/compatibility_tests/v3.1.0/proto3_test.proto \ |
| 975 | js/compatibility_tests/v3.1.0/proto3_test.js \ |
| 976 | js/compatibility_tests/v3.1.0/message_test.js \ |
| 977 | js/compatibility_tests/v3.1.0/maps_test.js \ |
| 978 | js/compatibility_tests/v3.1.0/debug_test.js \ |
| 979 | js/compatibility_tests/v3.1.0/data.proto \ |
| 980 | js/compatibility_tests/v3.1.0/commonjs/test7/test7.proto \ |
| 981 | js/compatibility_tests/v3.1.0/commonjs/test6/test6.proto \ |
| 982 | js/compatibility_tests/v3.1.0/binary/writer_test.js \ |
| 983 | js/compatibility_tests/v3.1.0/binary/utils_test.js \ |
| 984 | js/compatibility_tests/v3.1.0/binary/reader_test.js \ |
| 985 | js/compatibility_tests/v3.1.0/binary/proto_test.js \ |
| 986 | js/compatibility_tests/v3.1.0/binary/decoder_test.js \ |
| 987 | js/compatibility_tests/v3.1.0/binary/arith_test.js \ |
| 988 | js/data.proto \ |
| 989 | js/debug.js \ |
| 990 | js/debug_test.js \ |
| 991 | js/gulpfile.js \ |
| 992 | js/jasmine.json \ |
| 993 | js/map.js \ |
| 994 | js/maps_test.js \ |
| 995 | js/message.js \ |
| 996 | js/message_test.js \ |
| 997 | js/node_loader.js \ |
| 998 | js/package.json \ |
| 999 | js/proto3_test.js \ |
| 1000 | js/proto3_test.proto \ |
| 1001 | js/test.proto \ |
| 1002 | js/test2.proto \ |
| 1003 | js/test3.proto \ |
| 1004 | js/test4.proto \ |
| 1005 | js/test5.proto \ |
| 1006 | js/test8.proto \ |
| 1007 | js/test_bootstrap.js \ |
| 1008 | js/testbinary.proto \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1009 | js/testempty.proto |
| 1010 | |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 1011 | all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(php_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) $(js_EXTRA_DIST) |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1012 | |
| 1013 | EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \ |
| 1014 | autogen.sh \ |
| 1015 | generate_descriptor_proto.sh \ |
| 1016 | README.md \ |
| 1017 | LICENSE \ |
| 1018 | CONTRIBUTORS.txt \ |
| 1019 | CHANGES.txt \ |
| 1020 | update_file_lists.sh \ |
| 1021 | BUILD \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1022 | WORKSPACE \ |
| 1023 | cmake/CMakeLists.txt \ |
| 1024 | cmake/README.md \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 1025 | cmake/examples.cmake \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1026 | cmake/extract_includes.bat.in \ |
| 1027 | cmake/install.cmake \ |
| 1028 | cmake/libprotobuf.cmake \ |
| 1029 | cmake/libprotobuf-lite.cmake \ |
| 1030 | cmake/libprotoc.cmake \ |
| 1031 | cmake/protobuf-config-version.cmake.in \ |
| 1032 | cmake/protobuf-config.cmake.in \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 1033 | cmake/protobuf-lite.pc.cmake \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1034 | cmake/protobuf-module.cmake.in \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 1035 | cmake/protobuf-options.cmake \ |
| 1036 | cmake/protobuf.pc.cmake \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1037 | cmake/protoc.cmake \ |
| 1038 | cmake/tests.cmake \ |
| 1039 | editors/README.txt \ |
| 1040 | editors/proto.vim \ |
| 1041 | editors/protobuf-mode.el \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 1042 | examples/AddPerson.java \ |
| 1043 | examples/BUILD \ |
| 1044 | examples/CMakeLists.txt \ |
| 1045 | examples/ListPeople.java \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1046 | examples/Makefile \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 1047 | examples/README.md \ |
| 1048 | examples/WORKSPACE \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1049 | examples/add_person.cc \ |
| 1050 | examples/add_person.go \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 1051 | examples/add_person.py \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1052 | examples/add_person_test.go \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 1053 | examples/addressbook.proto \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1054 | examples/list_people.cc \ |
| 1055 | examples/list_people.go \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1056 | examples/list_people.py \ |
| 1057 | examples/list_people_test.go \ |
| 1058 | protobuf.bzl \ |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 1059 | python/release/wheel/build_wheel_manylinux.sh \ |
| 1060 | python/release/wheel/Dockerfile \ |
| 1061 | python/release/wheel/protobuf_optimized_pip.sh \ |
| 1062 | python/release/wheel/README.md \ |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1063 | six.BUILD \ |
| 1064 | util/python/BUILD |
| 1065 | |
Austin Schuh | 40c1652 | 2018-10-28 20:27:54 -0700 | [diff] [blame] | 1066 | |
Brian Silverman | 9c614bc | 2016-02-15 20:20:02 -0500 | [diff] [blame] | 1067 | # Deletes all the files generated by autogen.sh. |
| 1068 | MAINTAINERCLEANFILES = \ |
| 1069 | aclocal.m4 \ |
| 1070 | ar-lib \ |
| 1071 | config.guess \ |
| 1072 | config.sub \ |
| 1073 | configure \ |
| 1074 | depcomp \ |
| 1075 | install-sh \ |
| 1076 | ltmain.sh \ |
| 1077 | Makefile.in \ |
| 1078 | missing \ |
| 1079 | mkinstalldirs \ |
| 1080 | config.h.in \ |
| 1081 | stamp.h.in \ |
| 1082 | m4/ltsugar.m4 \ |
| 1083 | m4/libtool.m4 \ |
| 1084 | m4/ltversion.m4 \ |
| 1085 | m4/lt~obsolete.m4 \ |
| 1086 | m4/ltoptions.m4 |