1## Process this file with automake to produce Makefile.in 2 3ACLOCAL_AMFLAGS = -I m4 4 5AUTOMAKE_OPTIONS = foreign 6 7# Build . before src so that our all-local and clean-local hooks kicks in at 8# the right time. 9SUBDIRS = . src 10 11# Always include third_party directories in distributions. 12# 13# Note that distribution artifacts will be produced by Bazel in the future. 14# See pkg/BUILD.bazel for overall definitions. 15DIST_SUBDIRS = src conformance benchmarks third_party/googletest 16 17# Build gmock before we build protobuf tests. We don't add gmock to SUBDIRS 18# because then "make check" would also build and run all of gmock's own tests, 19# which takes a lot of time and is generally not useful to us. Also, we don't 20# want "make install" to recurse into gmock since we don't want to overwrite 21# the installed version of gmock if there is one. 22check-local: 23 @echo "Making lib/libgmock.a lib/libgmock_main.a in gmock" 24 @cd third_party/googletest/googletest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la 25 @cd third_party/googletest/googlemock && $(MAKE) $(AM_MAKEFLAGS) lib/libgmock.la lib/libgmock_main.la 26 27# We would like to clean gmock when "make clean" is invoked. But we have to 28# be careful because clean-local is also invoked during "make distclean", but 29# "make distclean" already recurses into gmock because it's listed among the 30# DIST_SUBDIRS. distclean will delete gmock/Makefile, so if we then try to 31# cd to the directory again and "make clean" it will fail. So, check that the 32# Makefile exists before recursing. 33clean-local: 34 @if test -e third_party/googletest/Makefile; then \ 35 echo "Making clean in googletest"; \ 36 cd third_party/googletest && $(MAKE) $(AM_MAKEFLAGS) clean; \ 37 fi; \ 38 if test -e conformance/Makefile; then \ 39 echo "Making clean in conformance"; \ 40 cd conformance && $(MAKE) $(AM_MAKEFLAGS) clean; \ 41 fi; \ 42 if test -e benchmarks/Makefile; then \ 43 echo "Making clean in benchmarks"; \ 44 cd benchmarks && $(MAKE) $(AM_MAKEFLAGS) clean; \ 45 fi; \ 46 if test -e objectivec/DevTools; then \ 47 echo "Cleaning any ObjC pyc files"; \ 48 rm -f objectivec/DevTools/*.pyc; \ 49 fi 50 51pkgconfigdir = $(libdir)/pkgconfig 52pkgconfig_DATA = protobuf.pc protobuf-lite.pc 53 54# Note: please keep this in sync with the dist_files rule in csharp/BUILD.bazel. 55csharp_EXTRA_DIST= \ 56 global.json \ 57 csharp/.editorconfig \ 58 csharp/.gitignore \ 59 csharp/CHANGES.txt \ 60 csharp/Google.Protobuf.Tools.targets \ 61 csharp/Google.Protobuf.Tools.nuspec \ 62 csharp/NuGet.Config \ 63 csharp/README.md \ 64 csharp/build_packages.bat \ 65 csharp/build_tools.sh \ 66 csharp/buildall.bat \ 67 csharp/buildall.sh \ 68 csharp/generate_protos.sh \ 69 csharp/install_dotnet_sdk.ps1 \ 70 csharp/keys/Google.Protobuf.public.snk \ 71 csharp/keys/Google.Protobuf.snk \ 72 csharp/keys/README.md \ 73 csharp/protos/README.md \ 74 csharp/protos/map_unittest_proto3.proto \ 75 csharp/protos/old_extensions1.proto \ 76 csharp/protos/old_extensions2.proto \ 77 csharp/protos/unittest_issue6936_a.proto \ 78 csharp/protos/unittest_issue6936_b.proto \ 79 csharp/protos/unittest_issue6936_c.proto \ 80 csharp/protos/unittest_custom_options_proto3.proto \ 81 csharp/protos/unittest_import_public_proto3.proto \ 82 csharp/protos/unittest_import_public.proto \ 83 csharp/protos/unittest_import_proto3.proto \ 84 csharp/protos/unittest_import.proto \ 85 csharp/protos/unittest_issues.proto \ 86 csharp/protos/unittest_proto3.proto \ 87 csharp/protos/unittest_selfreferential_options.proto \ 88 csharp/protos/unittest.proto \ 89 csharp/src/AddressBook/AddPerson.cs \ 90 csharp/src/AddressBook/Addressbook.cs \ 91 csharp/src/AddressBook/AddressBook.csproj \ 92 csharp/src/AddressBook/ListPeople.cs \ 93 csharp/src/AddressBook/Program.cs \ 94 csharp/src/AddressBook/SampleUsage.cs \ 95 csharp/src/Google.Protobuf.Benchmarks/BenchmarkDatasetConfig.cs \ 96 csharp/src/Google.Protobuf.Benchmarks/BenchmarkMessage1Proto3.cs \ 97 csharp/src/Google.Protobuf.Benchmarks/Benchmarks.cs \ 98 csharp/src/Google.Protobuf.Benchmarks/ByteStringBenchmark.cs \ 99 csharp/src/Google.Protobuf.Benchmarks/Google.Protobuf.Benchmarks.csproj \ 100 csharp/src/Google.Protobuf.Benchmarks/GoogleMessageBenchmark.cs \ 101 csharp/src/Google.Protobuf.Benchmarks/ParseMessagesBenchmark.cs \ 102 csharp/src/Google.Protobuf.Benchmarks/ParseRawPrimitivesBenchmark.cs \ 103 csharp/src/Google.Protobuf.Benchmarks/Program.cs \ 104 csharp/src/Google.Protobuf.Benchmarks/wrapper_benchmark_messages.proto \ 105 csharp/src/Google.Protobuf.Benchmarks/WrapperBenchmarkMessages.cs \ 106 csharp/src/Google.Protobuf.Benchmarks/WriteMessagesBenchmark.cs \ 107 csharp/src/Google.Protobuf.Benchmarks/WriteRawPrimitivesBenchmark.cs \ 108 csharp/src/Google.Protobuf.Conformance/Conformance.cs \ 109 csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj \ 110 csharp/src/Google.Protobuf.Conformance/Program.cs \ 111 csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \ 112 csharp/src/Google.Protobuf.JsonDump/Program.cs \ 113 csharp/src/Google.Protobuf.Test/Buffers/ArrayBufferWriter.cs \ 114 csharp/src/Google.Protobuf.Test/ByteStringTest.cs \ 115 csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \ 116 csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \ 117 csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \ 118 csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \ 119 csharp/src/Google.Protobuf.Test/Collections/ProtobufEqualityComparersTest.cs \ 120 csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \ 121 csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \ 122 csharp/src/Google.Protobuf.Test/Compatibility/StreamExtensionsTest.cs \ 123 csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs \ 124 csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \ 125 csharp/src/Google.Protobuf.Test/EqualityTester.cs \ 126 csharp/src/Google.Protobuf.Test/ExtensionSetTest.cs \ 127 csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \ 128 csharp/src/Google.Protobuf.Test/FieldMaskTreeTest.cs \ 129 csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \ 130 csharp/src/Google.Protobuf.Test/GeneratedMessageTest.Proto2.cs \ 131 csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \ 132 csharp/src/Google.Protobuf.Test/IssuesTest.cs \ 133 csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \ 134 csharp/src/Google.Protobuf.Test/JsonParserTest.cs \ 135 csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs \ 136 csharp/src/Google.Protobuf.Test/LegacyGeneratedCodeTest.cs \ 137 csharp/src/Google.Protobuf.Test/MessageParsingHelpers.cs \ 138 csharp/src/Google.Protobuf.Test/Proto3OptionalTest.cs \ 139 csharp/src/Google.Protobuf.Test/ReadOnlySequenceFactory.cs \ 140 csharp/src/Google.Protobuf.Test/RefStructCompatibilityTest.cs \ 141 csharp/src/Google.Protobuf.Test/Reflection/CustomOptionsTest.cs \ 142 csharp/src/Google.Protobuf.Test/Reflection/DescriptorDeclarationTest.cs \ 143 csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \ 144 csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs \ 145 csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs \ 146 csharp/src/Google.Protobuf.Test/SampleEnum.cs \ 147 csharp/src/Google.Protobuf.Test/SampleMessages.cs \ 148 csharp/src/Google.Protobuf.Test/SampleNaNs.cs \ 149 csharp/src/Google.Protobuf.Test/TestCornerCases.cs \ 150 csharp/src/Google.Protobuf.Test.TestProtos/Google.Protobuf.Test.TestProtos.csproj \ 151 csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936A.cs \ 152 csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936B.cs \ 153 csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssue6936C.cs \ 154 csharp/src/Google.Protobuf.Test.TestProtos/ForeignMessagePartial.cs \ 155 csharp/src/Google.Protobuf.Test.TestProtos/MapUnittestProto3.cs \ 156 csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions1.cs \ 157 csharp/src/Google.Protobuf.Test.TestProtos/OldExtensions2.cs \ 158 csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto2.cs \ 159 csharp/src/Google.Protobuf.Test.TestProtos/TestMessagesProto3.cs \ 160 csharp/src/Google.Protobuf.Test.TestProtos/UnittestCustomOptionsProto3.cs \ 161 csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportProto3.cs \ 162 csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublicProto3.cs \ 163 csharp/src/Google.Protobuf.Test.TestProtos/UnittestImportPublic.cs \ 164 csharp/src/Google.Protobuf.Test.TestProtos/UnittestImport.cs \ 165 csharp/src/Google.Protobuf.Test.TestProtos/UnittestIssues.cs \ 166 csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3.cs \ 167 csharp/src/Google.Protobuf.Test.TestProtos/UnittestProto3Optional.cs \ 168 csharp/src/Google.Protobuf.Test.TestProtos/UnittestSelfreferentialOptions.cs \ 169 csharp/src/Google.Protobuf.Test.TestProtos/UnittestWellKnownTypes.cs \ 170 csharp/src/Google.Protobuf.Test.TestProtos/Unittest.cs \ 171 csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \ 172 csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \ 173 csharp/src/Google.Protobuf.Test/WellKnownTypes/FieldMaskTest.cs \ 174 csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \ 175 csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \ 176 csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs \ 177 csharp/src/Google.Protobuf.Test/testprotos.pb \ 178 csharp/src/Google.Protobuf.sln \ 179 csharp/src/Google.Protobuf/ByteArray.cs \ 180 csharp/src/Google.Protobuf/ByteString.cs \ 181 csharp/src/Google.Protobuf/ByteStringAsync.cs \ 182 csharp/src/Google.Protobuf/CodedInputStream.cs \ 183 csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \ 184 csharp/src/Google.Protobuf/CodedOutputStream.cs \ 185 csharp/src/Google.Protobuf/Collections/Lists.cs \ 186 csharp/src/Google.Protobuf/Collections/MapField.cs \ 187 csharp/src/Google.Protobuf/Collections/ProtobufEqualityComparers.cs \ 188 csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \ 189 csharp/src/Google.Protobuf/Collections/RepeatedField.cs \ 190 csharp/src/Google.Protobuf/Compatibility/DynamicallyAccessedMembersAttribute.cs \ 191 csharp/src/Google.Protobuf/Compatibility/DynamicallyAccessedMemberTypes.cs \ 192 csharp/src/Google.Protobuf/Compatibility/MethodInfoExtensions.cs \ 193 csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \ 194 csharp/src/Google.Protobuf/Compatibility/RequiresUnreferencedCodeAttribute.cs \ 195 csharp/src/Google.Protobuf/Compatibility/StreamExtensions.cs \ 196 csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \ 197 csharp/src/Google.Protobuf/Compatibility/UnconditionalSuppressMessageAttribute.cs \ 198 csharp/src/Google.Protobuf/Extension.cs \ 199 csharp/src/Google.Protobuf/ExtensionRegistry.cs \ 200 csharp/src/Google.Protobuf/ExtensionSet.cs \ 201 csharp/src/Google.Protobuf/ExtensionValue.cs \ 202 csharp/src/Google.Protobuf/FieldCodec.cs \ 203 csharp/src/Google.Protobuf/FieldMaskTree.cs \ 204 csharp/src/Google.Protobuf/FrameworkPortability.cs \ 205 csharp/src/Google.Protobuf/Google.Protobuf.csproj \ 206 csharp/src/Google.Protobuf/IBufferMessage.cs \ 207 csharp/src/Google.Protobuf/ICustomDiagnosticMessage.cs \ 208 csharp/src/Google.Protobuf/IDeepCloneable.cs \ 209 csharp/src/Google.Protobuf/IExtendableMessage.cs \ 210 csharp/src/Google.Protobuf/IMessage.cs \ 211 csharp/src/Google.Protobuf/InvalidJsonException.cs \ 212 csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \ 213 csharp/src/Google.Protobuf/JsonFormatter.cs \ 214 csharp/src/Google.Protobuf/JsonParser.cs \ 215 csharp/src/Google.Protobuf/JsonToken.cs \ 216 csharp/src/Google.Protobuf/JsonTokenizer.cs \ 217 csharp/src/Google.Protobuf/LimitedInputStream.cs \ 218 csharp/src/Google.Protobuf/MessageExtensions.cs \ 219 csharp/src/Google.Protobuf/MessageParser.cs \ 220 csharp/src/Google.Protobuf/ObjectIntPair.cs \ 221 csharp/src/Google.Protobuf/ParseContext.cs \ 222 csharp/src/Google.Protobuf/ParserInternalState.cs \ 223 csharp/src/Google.Protobuf/ParsingPrimitives.cs \ 224 csharp/src/Google.Protobuf/ParsingPrimitivesMessages.cs \ 225 csharp/src/Google.Protobuf/ParsingPrimitivesWrappers.cs \ 226 csharp/src/Google.Protobuf/ProtoPreconditions.cs \ 227 csharp/src/Google.Protobuf/SegmentedBufferHelper.cs \ 228 csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \ 229 csharp/src/Google.Protobuf/Reflection/CustomOptions.cs \ 230 csharp/src/Google.Protobuf/Reflection/Descriptor.cs \ 231 csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \ 232 csharp/src/Google.Protobuf/Reflection/DescriptorDeclaration.cs \ 233 csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \ 234 csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \ 235 csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \ 236 csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \ 237 csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \ 238 csharp/src/Google.Protobuf/Reflection/ExtensionAccessor.cs \ 239 csharp/src/Google.Protobuf/Reflection/ExtensionCollection.cs \ 240 csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \ 241 csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \ 242 csharp/src/Google.Protobuf/Reflection/FieldType.cs \ 243 csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \ 244 csharp/src/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs \ 245 csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \ 246 csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \ 247 csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \ 248 csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \ 249 csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \ 250 csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \ 251 csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \ 252 csharp/src/Google.Protobuf/Reflection/OriginalNameAttribute.cs \ 253 csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \ 254 csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \ 255 csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \ 256 csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \ 257 csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \ 258 csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs \ 259 csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \ 260 csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \ 261 csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \ 262 csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \ 263 csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \ 264 csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \ 265 csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \ 266 csharp/src/Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs \ 267 csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \ 268 csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \ 269 csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \ 270 csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \ 271 csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \ 272 csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \ 273 csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs \ 274 csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \ 275 csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs \ 276 csharp/src/Google.Protobuf/WireFormat.cs \ 277 csharp/src/Google.Protobuf/WritingPrimitivesMessages.cs \ 278 csharp/src/Google.Protobuf/WritingPrimitives.cs \ 279 csharp/src/Google.Protobuf/WriterInternalState.cs \ 280 csharp/src/Google.Protobuf/WriteContext.cs \ 281 csharp/src/Google.Protobuf/WriteBufferHelper.cs \ 282 csharp/src/Google.Protobuf/UnknownField.cs \ 283 csharp/src/Google.Protobuf/UnknownFieldSet.cs \ 284 csharp/src/Google.Protobuf/UnsafeByteOperations.cs 285 286# Note: please keep this in sync with the dist_files rules under java/.../BUILD.bazel. 287java_EXTRA_DIST= \ 288 java/README.md \ 289 java/bom/pom.xml \ 290 java/core/BUILD.bazel \ 291 java/core/generate-sources-build.xml \ 292 java/core/generate-test-sources-build.xml \ 293 java/core/pom.xml \ 294 java/core/pom_template.xml \ 295 java/core/src/main/java/com/google/protobuf/AbstractMessage.java \ 296 java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java \ 297 java/core/src/main/java/com/google/protobuf/AbstractParser.java \ 298 java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java \ 299 java/core/src/main/java/com/google/protobuf/AllocatedBuffer.java \ 300 java/core/src/main/java/com/google/protobuf/Android.java \ 301 java/core/src/main/java/com/google/protobuf/ArrayDecoders.java \ 302 java/core/src/main/java/com/google/protobuf/BinaryReader.java \ 303 java/core/src/main/java/com/google/protobuf/BinaryWriter.java \ 304 java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java \ 305 java/core/src/main/java/com/google/protobuf/BlockingService.java \ 306 java/core/src/main/java/com/google/protobuf/BooleanArrayList.java \ 307 java/core/src/main/java/com/google/protobuf/BufferAllocator.java \ 308 java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java \ 309 java/core/src/main/java/com/google/protobuf/ByteOutput.java \ 310 java/core/src/main/java/com/google/protobuf/ByteString.java \ 311 java/core/src/main/java/com/google/protobuf/CanIgnoreReturnValue.java \ 312 java/core/src/main/java/com/google/protobuf/CheckReturnValue.java \ 313 java/core/src/main/java/com/google/protobuf/CodedInputStream.java \ 314 java/core/src/main/java/com/google/protobuf/CodedInputStreamReader.java \ 315 java/core/src/main/java/com/google/protobuf/CodedOutputStream.java \ 316 java/core/src/main/java/com/google/protobuf/CodedOutputStreamWriter.java \ 317 java/core/src/main/java/com/google/protobuf/CompileTimeConstant.java \ 318 java/core/src/main/java/com/google/protobuf/DescriptorMessageInfoFactory.java \ 319 java/core/src/main/java/com/google/protobuf/Descriptors.java \ 320 java/core/src/main/java/com/google/protobuf/DiscardUnknownFieldsParser.java \ 321 java/core/src/main/java/com/google/protobuf/DoubleArrayList.java \ 322 java/core/src/main/java/com/google/protobuf/DynamicMessage.java \ 323 java/core/src/main/java/com/google/protobuf/ExperimentalApi.java \ 324 java/core/src/main/java/com/google/protobuf/Extension.java \ 325 java/core/src/main/java/com/google/protobuf/ExtensionLite.java \ 326 java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java \ 327 java/core/src/main/java/com/google/protobuf/ExtensionRegistryFactory.java \ 328 java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \ 329 java/core/src/main/java/com/google/protobuf/ExtensionSchema.java \ 330 java/core/src/main/java/com/google/protobuf/ExtensionSchemaFull.java \ 331 java/core/src/main/java/com/google/protobuf/ExtensionSchemaLite.java \ 332 java/core/src/main/java/com/google/protobuf/ExtensionSchemas.java \ 333 java/core/src/main/java/com/google/protobuf/FieldInfo.java \ 334 java/core/src/main/java/com/google/protobuf/FieldSet.java \ 335 java/core/src/main/java/com/google/protobuf/FieldType.java \ 336 java/core/src/main/java/com/google/protobuf/FloatArrayList.java \ 337 java/core/src/main/java/com/google/protobuf/GeneratedMessage.java \ 338 java/core/src/main/java/com/google/protobuf/GeneratedMessageInfoFactory.java \ 339 java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java \ 340 java/core/src/main/java/com/google/protobuf/GeneratedMessageV3.java \ 341 java/core/src/main/java/com/google/protobuf/InlineMe.java \ 342 java/core/src/main/java/com/google/protobuf/IntArrayList.java \ 343 java/core/src/main/java/com/google/protobuf/Internal.java \ 344 java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \ 345 java/core/src/main/java/com/google/protobuf/IterableByteBufferInputStream.java \ 346 java/core/src/main/java/com/google/protobuf/JavaType.java \ 347 java/core/src/main/java/com/google/protobuf/LazyField.java \ 348 java/core/src/main/java/com/google/protobuf/LazyFieldLite.java \ 349 java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java \ 350 java/core/src/main/java/com/google/protobuf/LazyStringList.java \ 351 java/core/src/main/java/com/google/protobuf/ListFieldSchema.java \ 352 java/core/src/main/java/com/google/protobuf/LongArrayList.java \ 353 java/core/src/main/java/com/google/protobuf/ManifestSchemaFactory.java \ 354 java/core/src/main/java/com/google/protobuf/MapEntry.java \ 355 java/core/src/main/java/com/google/protobuf/MapEntryLite.java \ 356 java/core/src/main/java/com/google/protobuf/MapField.java \ 357 java/core/src/main/java/com/google/protobuf/MapFieldLite.java \ 358 java/core/src/main/java/com/google/protobuf/MapFieldSchema.java \ 359 java/core/src/main/java/com/google/protobuf/MapFieldSchemaFull.java \ 360 java/core/src/main/java/com/google/protobuf/MapFieldSchemaLite.java \ 361 java/core/src/main/java/com/google/protobuf/MapFieldSchemas.java \ 362 java/core/src/main/java/com/google/protobuf/Message.java \ 363 java/core/src/main/java/com/google/protobuf/MessageInfo.java \ 364 java/core/src/main/java/com/google/protobuf/MessageInfoFactory.java \ 365 java/core/src/main/java/com/google/protobuf/MessageLite.java \ 366 java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \ 367 java/core/src/main/java/com/google/protobuf/MessageLiteToString.java \ 368 java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java \ 369 java/core/src/main/java/com/google/protobuf/MessageReflection.java \ 370 java/core/src/main/java/com/google/protobuf/MessageSchema.java \ 371 java/core/src/main/java/com/google/protobuf/MessageSetSchema.java \ 372 java/core/src/main/java/com/google/protobuf/MutabilityOracle.java \ 373 java/core/src/main/java/com/google/protobuf/NewInstanceSchema.java \ 374 java/core/src/main/java/com/google/protobuf/NewInstanceSchemaFull.java \ 375 java/core/src/main/java/com/google/protobuf/NewInstanceSchemaLite.java \ 376 java/core/src/main/java/com/google/protobuf/NewInstanceSchemas.java \ 377 java/core/src/main/java/com/google/protobuf/NioByteString.java \ 378 java/core/src/main/java/com/google/protobuf/OneofInfo.java \ 379 java/core/src/main/java/com/google/protobuf/Parser.java \ 380 java/core/src/main/java/com/google/protobuf/PrimitiveNonBoxingCollection.java \ 381 java/core/src/main/java/com/google/protobuf/ProtoSyntax.java \ 382 java/core/src/main/java/com/google/protobuf/Protobuf.java \ 383 java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java \ 384 java/core/src/main/java/com/google/protobuf/ProtobufLists.java \ 385 java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \ 386 java/core/src/main/java/com/google/protobuf/ProtocolStringList.java \ 387 java/core/src/main/java/com/google/protobuf/RawMessageInfo.java \ 388 java/core/src/main/java/com/google/protobuf/Reader.java \ 389 java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \ 390 java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java \ 391 java/core/src/main/java/com/google/protobuf/RopeByteString.java \ 392 java/core/src/main/java/com/google/protobuf/RpcCallback.java \ 393 java/core/src/main/java/com/google/protobuf/RpcChannel.java \ 394 java/core/src/main/java/com/google/protobuf/RpcController.java \ 395 java/core/src/main/java/com/google/protobuf/RpcUtil.java \ 396 java/core/src/main/java/com/google/protobuf/Schema.java \ 397 java/core/src/main/java/com/google/protobuf/SchemaFactory.java \ 398 java/core/src/main/java/com/google/protobuf/SchemaUtil.java \ 399 java/core/src/main/java/com/google/protobuf/Service.java \ 400 java/core/src/main/java/com/google/protobuf/ServiceException.java \ 401 java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java \ 402 java/core/src/main/java/com/google/protobuf/SingleFieldBuilderV3.java \ 403 java/core/src/main/java/com/google/protobuf/SmallSortedMap.java \ 404 java/core/src/main/java/com/google/protobuf/StructuralMessageInfo.java \ 405 java/core/src/main/java/com/google/protobuf/TextFormat.java \ 406 java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java \ 407 java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java \ 408 java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java \ 409 java/core/src/main/java/com/google/protobuf/TypeRegistry.java \ 410 java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java \ 411 java/core/src/main/java/com/google/protobuf/UnknownFieldSchema.java \ 412 java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java \ 413 java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \ 414 java/core/src/main/java/com/google/protobuf/UnknownFieldSetLiteSchema.java \ 415 java/core/src/main/java/com/google/protobuf/UnknownFieldSetSchema.java \ 416 java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \ 417 java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java \ 418 java/core/src/main/java/com/google/protobuf/UnsafeUtil.java \ 419 java/core/src/main/java/com/google/protobuf/Utf8.java \ 420 java/core/src/main/java/com/google/protobuf/WireFormat.java \ 421 java/core/src/main/java/com/google/protobuf/Writer.java \ 422 java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java \ 423 java/core/src/test/java/com/google/protobuf/AbstractProto2LiteSchemaTest.java \ 424 java/core/src/test/java/com/google/protobuf/AbstractProto2SchemaTest.java \ 425 java/core/src/test/java/com/google/protobuf/AbstractProto3LiteSchemaTest.java \ 426 java/core/src/test/java/com/google/protobuf/AbstractProto3SchemaTest.java \ 427 java/core/src/test/java/com/google/protobuf/AbstractSchemaTest.java \ 428 java/core/src/test/java/com/google/protobuf/AnyTest.java \ 429 java/core/src/test/java/com/google/protobuf/ArrayDecodersTest.java \ 430 java/core/src/test/java/com/google/protobuf/BinaryProtocolTest.java \ 431 java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java \ 432 java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java \ 433 java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java \ 434 java/core/src/test/java/com/google/protobuf/ByteStringTest.java \ 435 java/core/src/test/java/com/google/protobuf/CachedFieldSizeTest.java \ 436 java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java \ 437 java/core/src/test/java/com/google/protobuf/CodedAdapterTest.java \ 438 java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java \ 439 java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \ 440 java/core/src/test/java/com/google/protobuf/DecodeUtf8Test.java \ 441 java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \ 442 java/core/src/test/java/com/google/protobuf/DescriptorsTest.java \ 443 java/core/src/test/java/com/google/protobuf/DiscardUnknownFieldsTest.java \ 444 java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java \ 445 java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java \ 446 java/core/src/test/java/com/google/protobuf/EnumTest.java \ 447 java/core/src/test/java/com/google/protobuf/ExperimentalMessageFactory.java \ 448 java/core/src/test/java/com/google/protobuf/ExperimentalSerializationUtil.java \ 449 java/core/src/test/java/com/google/protobuf/ExperimentalTestDataProvider.java \ 450 java/core/src/test/java/com/google/protobuf/ExtensionRegistryFactoryTest.java \ 451 java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java \ 452 java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java \ 453 java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java \ 454 java/core/src/test/java/com/google/protobuf/IntArrayListTest.java \ 455 java/core/src/test/java/com/google/protobuf/InvalidProtocolBufferExceptionTest.java \ 456 java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java \ 457 java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \ 458 java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \ 459 java/core/src/test/java/com/google/protobuf/LazyFieldTest.java \ 460 java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \ 461 java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \ 462 java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \ 463 java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \ 464 java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java \ 465 java/core/src/test/java/com/google/protobuf/LongArrayListTest.java \ 466 java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \ 467 java/core/src/test/java/com/google/protobuf/MapForProto2Test.java \ 468 java/core/src/test/java/com/google/protobuf/MapLiteTest.java \ 469 java/core/src/test/java/com/google/protobuf/MapTest.java \ 470 java/core/src/test/java/com/google/protobuf/MessageTest.java \ 471 java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java \ 472 java/core/src/test/java/com/google/protobuf/NioByteStringTest.java \ 473 java/core/src/test/java/com/google/protobuf/PackedFieldTest.java \ 474 java/core/src/test/java/com/google/protobuf/ParseExceptionsTest.java \ 475 java/core/src/test/java/com/google/protobuf/ParserLiteTest.java \ 476 java/core/src/test/java/com/google/protobuf/ParserTest.java \ 477 java/core/src/test/java/com/google/protobuf/Proto2ExtensionLookupSchemaTest.java \ 478 java/core/src/test/java/com/google/protobuf/Proto2LiteSchemaTest.java \ 479 java/core/src/test/java/com/google/protobuf/Proto2MessageFactory.java \ 480 java/core/src/test/java/com/google/protobuf/Proto2MessageLiteFactory.java \ 481 java/core/src/test/java/com/google/protobuf/Proto2SchemaTest.java \ 482 java/core/src/test/java/com/google/protobuf/Proto2UnknownEnumValueTest.java \ 483 java/core/src/test/java/com/google/protobuf/Proto3LiteSchemaTest.java \ 484 java/core/src/test/java/com/google/protobuf/Proto3MessageFactory.java \ 485 java/core/src/test/java/com/google/protobuf/Proto3MessageLiteFactory.java \ 486 java/core/src/test/java/com/google/protobuf/Proto3SchemaTest.java \ 487 java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \ 488 java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderV3Test.java \ 489 java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \ 490 java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java \ 491 java/core/src/test/java/com/google/protobuf/ServiceTest.java \ 492 java/core/src/test/java/com/google/protobuf/SingleFieldBuilderV3Test.java \ 493 java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java \ 494 java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java \ 495 java/core/src/test/java/com/google/protobuf/TestBadIdentifiersLite.java \ 496 java/core/src/test/java/com/google/protobuf/TestSchemas.java \ 497 java/core/src/test/java/com/google/protobuf/TestSchemasLite.java \ 498 java/core/src/test/java/com/google/protobuf/TestUtil.java \ 499 java/core/src/test/java/com/google/protobuf/TestUtilLite.java \ 500 java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java \ 501 java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java \ 502 java/core/src/test/java/com/google/protobuf/TextFormatTest.java \ 503 java/core/src/test/java/com/google/protobuf/TypeRegistryTest.java \ 504 java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \ 505 java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \ 506 java/core/src/test/java/com/google/protobuf/UnknownFieldSetPerformanceTest.java \ 507 java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \ 508 java/core/src/test/java/com/google/protobuf/Utf8Test.java \ 509 java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java \ 510 java/core/src/test/java/com/google/protobuf/WireFormatLiteTest.java \ 511 java/core/src/test/java/com/google/protobuf/WireFormatTest.java \ 512 java/core/src/test/java/com/google/protobuf/WrappersLiteOfMethodTest.java \ 513 java/core/src/test/java/com/google/protobuf/WrappersOfMethodTest.java \ 514 java/core/src/test/proto/com/google/protobuf/any_test.proto \ 515 java/core/src/test/proto/com/google/protobuf/cached_field_size_test.proto \ 516 java/core/src/test/proto/com/google/protobuf/deprecated_file.proto \ 517 java/core/src/test/proto/com/google/protobuf/dynamic_message_test.proto \ 518 java/core/src/test/proto/com/google/protobuf/field_presence_test.proto \ 519 java/core/src/test/proto/com/google/protobuf/lazy_fields_lite.proto \ 520 java/core/src/test/proto/com/google/protobuf/lite_equals_and_hash.proto \ 521 java/core/src/test/proto/com/google/protobuf/map_for_proto2_lite_test.proto \ 522 java/core/src/test/proto/com/google/protobuf/map_for_proto2_test.proto \ 523 java/core/src/test/proto/com/google/protobuf/map_initialization_order_test.proto \ 524 java/core/src/test/proto/com/google/protobuf/map_lite_test.proto \ 525 java/core/src/test/proto/com/google/protobuf/map_test.proto \ 526 java/core/src/test/proto/com/google/protobuf/multiple_files_test.proto \ 527 java/core/src/test/proto/com/google/protobuf/nested_builders_test.proto \ 528 java/core/src/test/proto/com/google/protobuf/nested_extension.proto \ 529 java/core/src/test/proto/com/google/protobuf/nested_extension_lite.proto \ 530 java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto \ 531 java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto \ 532 java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto \ 533 java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto \ 534 java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto \ 535 java/core/src/test/proto/com/google/protobuf/packed_field_test.proto \ 536 java/core/src/test/proto/com/google/protobuf/proto2_message.proto \ 537 java/core/src/test/proto/com/google/protobuf/proto2_message_lite.proto \ 538 java/core/src/test/proto/com/google/protobuf/proto2_unknown_enum_values.proto \ 539 java/core/src/test/proto/com/google/protobuf/proto3_message.proto \ 540 java/core/src/test/proto/com/google/protobuf/proto3_message_lite.proto \ 541 java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto \ 542 java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto \ 543 java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto \ 544 java/core/src/test/proto/com/google/protobuf/test_custom_options.proto \ 545 java/core/src/test/proto/com/google/protobuf/wrappers_test.proto \ 546 java/internal/BUILD.bazel \ 547 java/internal/testing.bzl \ 548 java/kotlin/BUILD.bazel \ 549 java/kotlin/generate-sources-build.xml \ 550 java/kotlin/generate-test-sources-build.xml \ 551 java/kotlin/pom.xml \ 552 java/kotlin/pom_template.xml \ 553 java/kotlin/src/main/kotlin/com/google/protobuf/Anies.kt \ 554 java/kotlin/src/main/kotlin/com/google/protobuf/ByteStrings.kt \ 555 java/kotlin/src/main/kotlin/com/google/protobuf/DslList.kt \ 556 java/kotlin/src/main/kotlin/com/google/protobuf/DslMap.kt \ 557 java/kotlin/src/main/kotlin/com/google/protobuf/DslProxy.kt \ 558 java/kotlin/src/main/kotlin/com/google/protobuf/ExtendableMessageExtensions.kt \ 559 java/kotlin/src/main/kotlin/com/google/protobuf/ExtensionList.kt \ 560 java/kotlin/src/main/kotlin/com/google/protobuf/OnlyForUseByGeneratedProtoCode.kt\ 561 java/kotlin/src/main/kotlin/com/google/protobuf/ProtoDslMarker.kt \ 562 java/kotlin/src/main/kotlin/com/google/protobuf/UnmodifiableCollections.kt \ 563 java/kotlin/src/test/kotlin/com/google/protobuf/AniesTest.kt \ 564 java/kotlin/src/test/kotlin/com/google/protobuf/ByteStringsTest.kt \ 565 java/kotlin/src/test/kotlin/com/google/protobuf/DslListTest.kt \ 566 java/kotlin/src/test/kotlin/com/google/protobuf/DslMapTest.kt \ 567 java/kotlin/src/test/kotlin/com/google/protobuf/ExtendableMessageExtensionsTest.kt\ 568 java/kotlin/src/test/kotlin/com/google/protobuf/ExtensionListTest.kt \ 569 java/kotlin/src/test/kotlin/com/google/protobuf/Proto2Test.kt \ 570 java/kotlin/src/test/kotlin/com/google/protobuf/Proto3Test.kt \ 571 java/kotlin/src/test/proto/com/google/protobuf/evil_names_proto2.proto \ 572 java/kotlin/src/test/proto/com/google/protobuf/evil_names_proto3.proto \ 573 java/kotlin/src/test/proto/com/google/protobuf/example_extensible_message.proto \ 574 java/kotlin/src/test/proto/com/google/protobuf/multiple_files_proto3.proto \ 575 java/kotlin-lite/BUILD.bazel \ 576 java/kotlin-lite/generate-sources-build.xml \ 577 java/kotlin-lite/generate-test-sources-build.xml \ 578 java/kotlin-lite/lite.awk \ 579 java/kotlin-lite/pom.xml \ 580 java/kotlin-lite/pom_template.xml \ 581 java/kotlin-lite/process-lite-sources-build.xml \ 582 java/kotlin-lite/src/main/kotlin/com/google/protobuf/ExtendableMessageLiteExtensions.kt\ 583 java/kotlin-lite/src/test/kotlin/com/google/protobuf/ExtendableMessageLiteExtensionsTest.kt\ 584 java/kotlin-lite/src/test/kotlin/com/google/protobuf/Proto2LiteTest.kt \ 585 java/lite.md \ 586 java/lite/BUILD.bazel \ 587 java/lite/generate-sources-build.xml \ 588 java/lite/generate-test-sources-build.xml \ 589 java/lite/lite.awk \ 590 java/lite/pom.xml \ 591 java/lite/pom_template.xml \ 592 java/lite/process-lite-sources-build.xml \ 593 java/lite/src/test/java/com/google/protobuf/LiteTest.java \ 594 java/BUILD.bazel \ 595 java/pom.xml \ 596 java/util/BUILD.bazel \ 597 java/util/pom.xml \ 598 java/util/pom_template.xml \ 599 java/util/src/main/java/com/google/protobuf/util/Durations.java \ 600 java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java \ 601 java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java \ 602 java/util/src/main/java/com/google/protobuf/util/JsonFormat.java \ 603 java/util/src/main/java/com/google/protobuf/util/Structs.java \ 604 java/util/src/main/java/com/google/protobuf/util/Timestamps.java \ 605 java/util/src/main/java/com/google/protobuf/util/Values.java \ 606 java/util/src/test/java/com/google/protobuf/util/DurationsTest.java \ 607 java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java \ 608 java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java \ 609 java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java \ 610 java/util/src/test/java/com/google/protobuf/util/StructsTest.java \ 611 java/util/src/test/java/com/google/protobuf/util/TimestampsTest.java \ 612 java/util/src/test/java/com/google/protobuf/util/ValuesTest.java \ 613 java/util/src/test/proto/com/google/protobuf/util/json_test.proto 614 615# Note: please keep this in sync with the dist_files rule in objectivec/BUILD.bazel. 616objectivec_EXTRA_DIST= \ 617 objectivec/.clang-format \ 618 objectivec/BUILD.bazel \ 619 objectivec/DevTools/check_version_stamps.sh \ 620 objectivec/DevTools/compile_testing_protos.sh \ 621 objectivec/DevTools/full_mac_build.sh \ 622 objectivec/DevTools/pddm.py \ 623 objectivec/DevTools/pddm_tests.py \ 624 objectivec/generate_well_known_types.sh \ 625 objectivec/google/protobuf/Any.pbobjc.h \ 626 objectivec/google/protobuf/Api.pbobjc.h \ 627 objectivec/google/protobuf/Duration.pbobjc.h \ 628 objectivec/google/protobuf/Empty.pbobjc.h \ 629 objectivec/google/protobuf/FieldMask.pbobjc.h \ 630 objectivec/google/protobuf/SourceContext.pbobjc.h \ 631 objectivec/google/protobuf/Struct.pbobjc.h \ 632 objectivec/google/protobuf/Timestamp.pbobjc.h \ 633 objectivec/google/protobuf/Type.pbobjc.h \ 634 objectivec/google/protobuf/Wrappers.pbobjc.h \ 635 objectivec/GPBAny.pbobjc.h \ 636 objectivec/GPBAny.pbobjc.m \ 637 objectivec/GPBApi.pbobjc.h \ 638 objectivec/GPBApi.pbobjc.m \ 639 objectivec/GPBArray.h \ 640 objectivec/GPBArray.m \ 641 objectivec/GPBArray_PackagePrivate.h \ 642 objectivec/GPBBootstrap.h \ 643 objectivec/GPBCodedInputStream.h \ 644 objectivec/GPBCodedInputStream.m \ 645 objectivec/GPBCodedInputStream_PackagePrivate.h \ 646 objectivec/GPBCodedOutputStream.h \ 647 objectivec/GPBCodedOutputStream.m \ 648 objectivec/GPBCodedOutputStream_PackagePrivate.h \ 649 objectivec/GPBDescriptor.h \ 650 objectivec/GPBDescriptor.m \ 651 objectivec/GPBDescriptor_PackagePrivate.h \ 652 objectivec/GPBDictionary.h \ 653 objectivec/GPBDictionary.m \ 654 objectivec/GPBDictionary_PackagePrivate.h \ 655 objectivec/GPBDuration.pbobjc.h \ 656 objectivec/GPBDuration.pbobjc.m \ 657 objectivec/GPBEmpty.pbobjc.h \ 658 objectivec/GPBEmpty.pbobjc.m \ 659 objectivec/GPBExtensionInternals.h \ 660 objectivec/GPBExtensionInternals.m \ 661 objectivec/GPBExtensionRegistry.h \ 662 objectivec/GPBExtensionRegistry.m \ 663 objectivec/GPBFieldMask.pbobjc.h \ 664 objectivec/GPBFieldMask.pbobjc.m \ 665 objectivec/GPBMessage.h \ 666 objectivec/GPBMessage.m \ 667 objectivec/GPBMessage_PackagePrivate.h \ 668 objectivec/GPBProtocolBuffers.h \ 669 objectivec/GPBProtocolBuffers.m \ 670 objectivec/GPBProtocolBuffers_RuntimeSupport.h \ 671 objectivec/GPBRootObject.h \ 672 objectivec/GPBRootObject.m \ 673 objectivec/GPBRootObject_PackagePrivate.h \ 674 objectivec/GPBRuntimeTypes.h \ 675 objectivec/GPBSourceContext.pbobjc.h \ 676 objectivec/GPBSourceContext.pbobjc.m \ 677 objectivec/GPBStruct.pbobjc.h \ 678 objectivec/GPBStruct.pbobjc.m \ 679 objectivec/GPBTimestamp.pbobjc.h \ 680 objectivec/GPBTimestamp.pbobjc.m \ 681 objectivec/GPBType.pbobjc.h \ 682 objectivec/GPBType.pbobjc.m \ 683 objectivec/GPBUnknownField.h \ 684 objectivec/GPBUnknownField.m \ 685 objectivec/GPBUnknownField_PackagePrivate.h \ 686 objectivec/GPBUnknownFieldSet.h \ 687 objectivec/GPBUnknownFieldSet.m \ 688 objectivec/GPBUnknownFieldSet_PackagePrivate.h \ 689 objectivec/GPBUtilities.h \ 690 objectivec/GPBUtilities.m \ 691 objectivec/GPBUtilities_PackagePrivate.h \ 692 objectivec/GPBWellKnownTypes.h \ 693 objectivec/GPBWellKnownTypes.m \ 694 objectivec/GPBWireFormat.h \ 695 objectivec/GPBWireFormat.m \ 696 objectivec/GPBWrappers.pbobjc.h \ 697 objectivec/GPBWrappers.pbobjc.m \ 698 objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \ 699 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ 700 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \ 701 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ 702 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ 703 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ 704 objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \ 705 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ 706 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \ 707 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ 708 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ 709 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ 710 objectivec/ProtocolBuffers_tvOS.xcodeproj/project.pbxproj \ 711 objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \ 712 objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \ 713 objectivec/ProtocolBuffers_tvOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \ 714 objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \ 715 objectivec/ProtocolBuffers_tvOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \ 716 objectivec/README.md \ 717 objectivec/Tests/golden_message \ 718 objectivec/Tests/golden_packed_fields_message \ 719 objectivec/Tests/GPBARCUnittestProtos.m \ 720 objectivec/Tests/GPBArrayTests.m \ 721 objectivec/Tests/GPBCodedInputStreamTests.m \ 722 objectivec/Tests/GPBCodedOuputStreamTests.m \ 723 objectivec/Tests/GPBCompileTest01.m \ 724 objectivec/Tests/GPBCompileTest02.m \ 725 objectivec/Tests/GPBCompileTest03.m \ 726 objectivec/Tests/GPBCompileTest04.m \ 727 objectivec/Tests/GPBCompileTest05.m \ 728 objectivec/Tests/GPBCompileTest06.m \ 729 objectivec/Tests/GPBCompileTest07.m \ 730 objectivec/Tests/GPBCompileTest08.m \ 731 objectivec/Tests/GPBCompileTest09.m \ 732 objectivec/Tests/GPBCompileTest10.m \ 733 objectivec/Tests/GPBCompileTest11.m \ 734 objectivec/Tests/GPBCompileTest12.m \ 735 objectivec/Tests/GPBCompileTest13.m \ 736 objectivec/Tests/GPBCompileTest14.m \ 737 objectivec/Tests/GPBCompileTest15.m \ 738 objectivec/Tests/GPBCompileTest16.m \ 739 objectivec/Tests/GPBCompileTest17.m \ 740 objectivec/Tests/GPBCompileTest18.m \ 741 objectivec/Tests/GPBCompileTest19.m \ 742 objectivec/Tests/GPBCompileTest20.m \ 743 objectivec/Tests/GPBCompileTest21.m \ 744 objectivec/Tests/GPBCompileTest22.m \ 745 objectivec/Tests/GPBCompileTest23.m \ 746 objectivec/Tests/GPBCompileTest24.m \ 747 objectivec/Tests/GPBCompileTest25.m \ 748 objectivec/Tests/GPBConcurrencyTests.m \ 749 objectivec/Tests/GPBDescriptorTests.m \ 750 objectivec/Tests/GPBDictionaryTests+Bool.m \ 751 objectivec/Tests/GPBDictionaryTests+Int32.m \ 752 objectivec/Tests/GPBDictionaryTests+Int64.m \ 753 objectivec/Tests/GPBDictionaryTests+String.m \ 754 objectivec/Tests/GPBDictionaryTests+UInt32.m \ 755 objectivec/Tests/GPBDictionaryTests+UInt64.m \ 756 objectivec/Tests/GPBDictionaryTests.m \ 757 objectivec/Tests/GPBDictionaryTests.pddm \ 758 objectivec/Tests/GPBExtensionRegistryTest.m \ 759 objectivec/Tests/GPBMessageTests+ClassNames.m \ 760 objectivec/Tests/GPBMessageTests+Merge.m \ 761 objectivec/Tests/GPBMessageTests+Runtime.m \ 762 objectivec/Tests/GPBMessageTests+Serialization.m \ 763 objectivec/Tests/GPBMessageTests.m \ 764 objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \ 765 objectivec/Tests/GPBPerfTests.m \ 766 objectivec/Tests/GPBSwiftTests.swift \ 767 objectivec/Tests/GPBTestUtilities.h \ 768 objectivec/Tests/GPBTestUtilities.m \ 769 objectivec/Tests/GPBUnittestProtos.m \ 770 objectivec/Tests/GPBUnittestProtos2.m \ 771 objectivec/Tests/GPBUnknownFieldSetTest.m \ 772 objectivec/Tests/GPBUtilitiesTests.m \ 773 objectivec/Tests/GPBWellKnownTypesTest.m \ 774 objectivec/Tests/GPBWireFormatTests.m \ 775 objectivec/Tests/text_format_extensions_unittest_data.txt \ 776 objectivec/Tests/text_format_map_unittest_data.txt \ 777 objectivec/Tests/text_format_unittest_data.txt \ 778 objectivec/Tests/unittest_cycle.proto \ 779 objectivec/Tests/unittest_deprecated.proto \ 780 objectivec/Tests/unittest_deprecated_file.proto \ 781 objectivec/Tests/unittest_extension_chain_a.proto \ 782 objectivec/Tests/unittest_extension_chain_b.proto \ 783 objectivec/Tests/unittest_extension_chain_c.proto \ 784 objectivec/Tests/unittest_extension_chain_d.proto \ 785 objectivec/Tests/unittest_extension_chain_e.proto \ 786 objectivec/Tests/unittest_extension_chain_f.proto \ 787 objectivec/Tests/unittest_extension_chain_g.proto \ 788 objectivec/Tests/unittest_objc.proto \ 789 objectivec/Tests/unittest_objc_options.proto \ 790 objectivec/Tests/unittest_objc_startup.proto \ 791 objectivec/Tests/unittest_runtime_proto2.proto \ 792 objectivec/Tests/unittest_runtime_proto3.proto \ 793 objectivec/Tests/UnitTests-Bridging-Header.h \ 794 objectivec/Tests/UnitTests-Info.plist \ 795 Protobuf.podspec 796 797# Note: please keep this in sync with the dist_files rule in php/BUILD.bazel. 798php_EXTRA_DIST= \ 799 php/README.md \ 800 php/REFCOUNTING.md \ 801 php/composer.json \ 802 php/composer.json.dist \ 803 php/ext/google/protobuf/arena.c \ 804 php/ext/google/protobuf/arena.h \ 805 php/ext/google/protobuf/array.c \ 806 php/ext/google/protobuf/array.h \ 807 php/ext/google/protobuf/config.m4 \ 808 php/ext/google/protobuf/convert.c \ 809 php/ext/google/protobuf/convert.h \ 810 php/ext/google/protobuf/def.c \ 811 php/ext/google/protobuf/def.h \ 812 php/ext/google/protobuf/generate_package_xml.sh \ 813 php/ext/google/protobuf/map.c \ 814 php/ext/google/protobuf/map.h \ 815 php/ext/google/protobuf/message.c \ 816 php/ext/google/protobuf/message.h \ 817 php/ext/google/protobuf/names.c \ 818 php/ext/google/protobuf/names.h \ 819 php/ext/google/protobuf/php-upb.c \ 820 php/ext/google/protobuf/php-upb.h \ 821 php/ext/google/protobuf/php_protobuf.h \ 822 php/ext/google/protobuf/protobuf.c \ 823 php/ext/google/protobuf/protobuf.h \ 824 php/ext/google/protobuf/template_package.xml \ 825 php/ext/google/protobuf/wkt.inc \ 826 php/ext/google/protobuf/tests/unnecessary_zval.phpt \ 827 php/generate_descriptor_protos.sh \ 828 php/generate_test_protos.sh \ 829 php/release.sh \ 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 \ 841 php/src/Google/Protobuf/Any.php \ 842 php/src/Google/Protobuf/Api.php \ 843 php/src/Google/Protobuf/BoolValue.php \ 844 php/src/Google/Protobuf/BytesValue.php \ 845 php/src/Google/Protobuf/Descriptor.php \ 846 php/src/Google/Protobuf/DescriptorPool.php \ 847 php/src/Google/Protobuf/DoubleValue.php \ 848 php/src/Google/Protobuf/Duration.php \ 849 php/src/Google/Protobuf/Enum.php \ 850 php/src/Google/Protobuf/EnumDescriptor.php \ 851 php/src/Google/Protobuf/EnumValue.php \ 852 php/src/Google/Protobuf/EnumValueDescriptor.php \ 853 php/src/Google/Protobuf/Field.php \ 854 php/src/Google/Protobuf/FieldDescriptor.php \ 855 php/src/Google/Protobuf/FieldMask.php \ 856 php/src/Google/Protobuf/Field/Cardinality.php \ 857 php/src/Google/Protobuf/Field_Cardinality.php \ 858 php/src/Google/Protobuf/Field/Kind.php \ 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 \ 864 php/src/Google/Protobuf/Internal/AnyBase.php \ 865 php/src/Google/Protobuf/Internal/CodedInputStream.php \ 866 php/src/Google/Protobuf/Internal/CodedOutputStream.php \ 867 php/src/Google/Protobuf/Internal/Descriptor.php \ 868 php/src/Google/Protobuf/Internal/DescriptorPool.php \ 869 php/src/Google/Protobuf/Internal/DescriptorProto.php \ 870 php/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php \ 871 php/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php \ 872 php/src/Google/Protobuf/Internal/EnumBuilderContext.php \ 873 php/src/Google/Protobuf/Internal/EnumDescriptor.php \ 874 php/src/Google/Protobuf/Internal/EnumDescriptorProto.php \ 875 php/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php \ 876 php/src/Google/Protobuf/Internal/EnumOptions.php \ 877 php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php \ 878 php/src/Google/Protobuf/Internal/EnumValueOptions.php \ 879 php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php \ 880 php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \ 881 php/src/Google/Protobuf/Internal/FieldDescriptor.php \ 882 php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \ 883 php/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php \ 884 php/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php \ 885 php/src/Google/Protobuf/Internal/FieldOptions.php \ 886 php/src/Google/Protobuf/Internal/FieldOptions/CType.php \ 887 php/src/Google/Protobuf/Internal/FieldOptions/JSType.php \ 888 php/src/Google/Protobuf/Internal/FileDescriptor.php \ 889 php/src/Google/Protobuf/Internal/FileDescriptorProto.php \ 890 php/src/Google/Protobuf/Internal/FileDescriptorSet.php \ 891 php/src/Google/Protobuf/Internal/FileOptions.php \ 892 php/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php \ 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 \ 898 php/src/Google/Protobuf/Internal/GPBWire.php \ 899 php/src/Google/Protobuf/Internal/GPBWireType.php \ 900 php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php \ 901 php/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php \ 902 php/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php \ 903 php/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php \ 904 php/src/Google/Protobuf/Internal/MapEntry.php \ 905 php/src/Google/Protobuf/Internal/MapField.php \ 906 php/src/Google/Protobuf/Internal/MapFieldIter.php \ 907 php/src/Google/Protobuf/Internal/Message.php \ 908 php/src/Google/Protobuf/Internal/MessageBuilderContext.php \ 909 php/src/Google/Protobuf/Internal/MessageOptions.php \ 910 php/src/Google/Protobuf/Internal/MethodDescriptorProto.php \ 911 php/src/Google/Protobuf/Internal/MethodOptions.php \ 912 php/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php \ 913 php/src/Google/Protobuf/Internal/OneofDescriptor.php \ 914 php/src/Google/Protobuf/Internal/OneofDescriptorProto.php \ 915 php/src/Google/Protobuf/Internal/OneofField.php \ 916 php/src/Google/Protobuf/Internal/OneofOptions.php \ 917 php/src/Google/Protobuf/Internal/RawInputStream.php \ 918 php/src/Google/Protobuf/Internal/RepeatedField.php \ 919 php/src/Google/Protobuf/Internal/RepeatedFieldIter.php \ 920 php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php \ 921 php/src/Google/Protobuf/Internal/ServiceOptions.php \ 922 php/src/Google/Protobuf/Internal/SourceCodeInfo.php \ 923 php/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php \ 924 php/src/Google/Protobuf/Internal/TimestampBase.php \ 925 php/src/Google/Protobuf/Internal/UninterpretedOption.php \ 926 php/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php \ 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 \ 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 \ 955 php/tests/ArrayTest.php \ 956 php/tests/compatibility_test.sh \ 957 php/tests/compile_extension.sh \ 958 php/tests/DescriptorsTest.php \ 959 php/tests/EncodeDecodeTest.php \ 960 php/tests/force_c_ext.php \ 961 php/tests/gdb_test.sh \ 962 php/tests/generated_previous/GPBMetadata/ProtoPrevious/TestPreviouslyUnreservedMessage.php \ 963 php/tests/generated_previous/Previous/readonly.php \ 964 php/tests/GeneratedClassTest.php \ 965 php/tests/GeneratedPhpdocTest.php \ 966 php/tests/GeneratedServiceTest.php \ 967 php/tests/MapFieldTest.php \ 968 php/tests/memory_leak_test.php \ 969 php/tests/memory_leak_test.sh \ 970 php/tests/multirequest.php \ 971 php/tests/multirequest.sh \ 972 php/tests/PhpImplementationTest.php \ 973 php/tests/PreviouslyGeneratedClassTest.php \ 974 php/tests/proto/empty/echo.proto \ 975 php/tests/proto/test.proto \ 976 php/tests/proto/test_descriptors.proto \ 977 php/tests/proto/test_empty_php_namespace.proto \ 978 php/tests/proto/test_import_descriptor_proto.proto \ 979 php/tests/proto/test_include.proto \ 980 php/tests/proto/test_no_namespace.proto \ 981 php/tests/proto/test_php_namespace.proto \ 982 php/tests/proto/test_prefix.proto \ 983 php/tests/proto/test_reserved_enum_lower.proto \ 984 php/tests/proto/test_reserved_enum_upper.proto \ 985 php/tests/proto/test_reserved_enum_value_lower.proto \ 986 php/tests/proto/test_reserved_enum_value_upper.proto \ 987 php/tests/proto/test_reserved_message_lower.proto \ 988 php/tests/proto/test_reserved_message_upper.proto \ 989 php/tests/proto/test_service.proto \ 990 php/tests/proto/test_service_namespace.proto \ 991 php/tests/proto/test_wrapper_type_setters.proto \ 992 php/tests/proto_previous/test_previously_unreserved_message.proto \ 993 php/tests/test_base.php \ 994 php/tests/test_util.php \ 995 php/tests/valgrind.supp \ 996 php/tests/WellKnownTest.php \ 997 php/tests/WrapperTypeSettersTest.php 998 999# Note: please keep this in sync with the python_dist_files rule in BUILD.bazel. 1000python_EXTRA_DIST= \ 1001 python/MANIFEST.in \ 1002 python/google/__init__.py \ 1003 python/google/protobuf/__init__.py \ 1004 python/google/protobuf/compiler/__init__.py \ 1005 python/google/protobuf/descriptor.py \ 1006 python/google/protobuf/descriptor_database.py \ 1007 python/google/protobuf/descriptor_pool.py \ 1008 python/google/protobuf/internal/__init__.py \ 1009 python/google/protobuf/internal/_parameterized.py \ 1010 python/google/protobuf/internal/any_test.proto \ 1011 python/google/protobuf/internal/any_test.proto \ 1012 python/google/protobuf/internal/api_implementation.cc \ 1013 python/google/protobuf/internal/api_implementation.py \ 1014 python/google/protobuf/internal/builder.py \ 1015 python/google/protobuf/internal/containers.py \ 1016 python/google/protobuf/internal/decoder.py \ 1017 python/google/protobuf/internal/descriptor_database_test.py \ 1018 python/google/protobuf/internal/descriptor_pool_test.py \ 1019 python/google/protobuf/internal/descriptor_pool_test1.proto \ 1020 python/google/protobuf/internal/descriptor_pool_test2.proto \ 1021 python/google/protobuf/internal/descriptor_test.py \ 1022 python/google/protobuf/internal/encoder.py \ 1023 python/google/protobuf/internal/enum_type_wrapper.py \ 1024 python/google/protobuf/internal/extension_dict.py \ 1025 python/google/protobuf/internal/factory_test1.proto \ 1026 python/google/protobuf/internal/factory_test2.proto \ 1027 python/google/protobuf/internal/file_options_test.proto \ 1028 python/google/protobuf/internal/generator_test.py \ 1029 python/google/protobuf/internal/import_test.py \ 1030 python/google/protobuf/internal/import_test_package/__init__.py \ 1031 python/google/protobuf/internal/import_test_package/import_public.proto \ 1032 python/google/protobuf/internal/import_test_package/import_public_nested.proto \ 1033 python/google/protobuf/internal/import_test_package/inner.proto \ 1034 python/google/protobuf/internal/import_test_package/outer.proto \ 1035 python/google/protobuf/internal/json_format_test.py \ 1036 python/google/protobuf/internal/keywords_test.py \ 1037 python/google/protobuf/internal/message_factory_test.py \ 1038 python/google/protobuf/internal/message_listener.py \ 1039 python/google/protobuf/internal/message_set_extensions.proto \ 1040 python/google/protobuf/internal/message_test.py \ 1041 python/google/protobuf/internal/missing_enum_values.proto \ 1042 python/google/protobuf/internal/more_extensions.proto \ 1043 python/google/protobuf/internal/more_extensions_dynamic.proto \ 1044 python/google/protobuf/internal/more_messages.proto \ 1045 python/google/protobuf/internal/no_package.proto \ 1046 python/google/protobuf/internal/packed_field_test.proto \ 1047 python/google/protobuf/internal/proto_builder_test.py \ 1048 python/google/protobuf/internal/python_message.py \ 1049 python/google/protobuf/internal/python_protobuf.cc \ 1050 python/google/protobuf/internal/reflection_test.py \ 1051 python/google/protobuf/internal/service_reflection_test.py \ 1052 python/google/protobuf/internal/symbol_database_test.py \ 1053 python/google/protobuf/internal/test_bad_identifiers.proto \ 1054 python/google/protobuf/internal/test_proto3_optional.proto \ 1055 python/google/protobuf/internal/test_util.py \ 1056 python/google/protobuf/internal/testing_refleaks.py \ 1057 python/google/protobuf/internal/text_encoding_test.py \ 1058 python/google/protobuf/internal/text_format_test.py \ 1059 python/google/protobuf/internal/type_checkers.py \ 1060 python/google/protobuf/internal/unknown_fields_test.py \ 1061 python/google/protobuf/internal/well_known_types.py \ 1062 python/google/protobuf/internal/well_known_types.py \ 1063 python/google/protobuf/internal/well_known_types_test.py \ 1064 python/google/protobuf/internal/well_known_types_test.py \ 1065 python/google/protobuf/internal/wire_format.py \ 1066 python/google/protobuf/internal/wire_format_test.py \ 1067 python/google/protobuf/json_format.py \ 1068 python/google/protobuf/message.py \ 1069 python/google/protobuf/message_factory.py \ 1070 python/google/protobuf/proto_api.h \ 1071 python/google/protobuf/proto_builder.py \ 1072 python/google/protobuf/pyext/README \ 1073 python/google/protobuf/pyext/__init__.py \ 1074 python/google/protobuf/pyext/cpp_message.py \ 1075 python/google/protobuf/pyext/descriptor.cc \ 1076 python/google/protobuf/pyext/descriptor.h \ 1077 python/google/protobuf/pyext/descriptor_containers.cc \ 1078 python/google/protobuf/pyext/descriptor_containers.h \ 1079 python/google/protobuf/pyext/descriptor_database.cc \ 1080 python/google/protobuf/pyext/descriptor_database.h \ 1081 python/google/protobuf/pyext/descriptor_pool.cc \ 1082 python/google/protobuf/pyext/descriptor_pool.h \ 1083 python/google/protobuf/pyext/extension_dict.cc \ 1084 python/google/protobuf/pyext/extension_dict.h \ 1085 python/google/protobuf/pyext/map_container.cc \ 1086 python/google/protobuf/pyext/map_container.h \ 1087 python/google/protobuf/pyext/message.cc \ 1088 python/google/protobuf/pyext/message.h \ 1089 python/google/protobuf/pyext/field.cc \ 1090 python/google/protobuf/pyext/field.h \ 1091 python/google/protobuf/pyext/unknown_fields.cc \ 1092 python/google/protobuf/pyext/unknown_fields.h \ 1093 python/google/protobuf/pyext/message_factory.cc \ 1094 python/google/protobuf/pyext/message_factory.h \ 1095 python/google/protobuf/pyext/message_module.cc \ 1096 python/google/protobuf/pyext/proto2_api_test.proto \ 1097 python/google/protobuf/pyext/python.proto \ 1098 python/google/protobuf/pyext/repeated_composite_container.cc \ 1099 python/google/protobuf/pyext/repeated_composite_container.h \ 1100 python/google/protobuf/pyext/repeated_scalar_container.cc \ 1101 python/google/protobuf/pyext/repeated_scalar_container.h \ 1102 python/google/protobuf/pyext/safe_numerics.h \ 1103 python/google/protobuf/pyext/scoped_pyobject_ptr.h \ 1104 python/google/protobuf/pyext/unknown_field_set.cc \ 1105 python/google/protobuf/pyext/unknown_field_set.h \ 1106 python/google/protobuf/python_protobuf.h \ 1107 python/google/protobuf/reflection.py \ 1108 python/google/protobuf/service.py \ 1109 python/google/protobuf/service_reflection.py \ 1110 python/google/protobuf/symbol_database.py \ 1111 python/google/protobuf/text_encoding.py \ 1112 python/google/protobuf/text_format.py \ 1113 python/google/protobuf/unknown_fields.py \ 1114 python/google/protobuf/util/__init__.py \ 1115 python/release.sh \ 1116 python/mox.py \ 1117 python/setup.cfg \ 1118 python/setup.py \ 1119 python/stubout.py \ 1120 python/tox.ini \ 1121 python/README.md 1122 1123# Note: please keep this in sync with the dist_files rule in ruby/BUILD.bazel. 1124ruby_EXTRA_DIST= \ 1125 ruby/Gemfile \ 1126 ruby/.gitignore \ 1127 ruby/README.md \ 1128 ruby/Rakefile \ 1129 ruby/compatibility_tests/v3.0.0/tests/test_import.proto \ 1130 ruby/compatibility_tests/v3.0.0/tests/stress.rb \ 1131 ruby/compatibility_tests/v3.0.0/tests/repeated_field_test.rb \ 1132 ruby/compatibility_tests/v3.0.0/tests/generated_code_test.rb \ 1133 ruby/compatibility_tests/v3.0.0/tests/generated_code.proto \ 1134 ruby/compatibility_tests/v3.0.0/tests/basic.rb \ 1135 ruby/compatibility_tests/v3.0.0/test.sh \ 1136 ruby/compatibility_tests/v3.0.0/Rakefile \ 1137 ruby/compatibility_tests/v3.0.0/README.md \ 1138 ruby/ext/google/protobuf_c/convert.c \ 1139 ruby/ext/google/protobuf_c/convert.h \ 1140 ruby/ext/google/protobuf_c/defs.c \ 1141 ruby/ext/google/protobuf_c/defs.h \ 1142 ruby/ext/google/protobuf_c/extconf.rb \ 1143 ruby/ext/google/protobuf_c/map.c \ 1144 ruby/ext/google/protobuf_c/map.h \ 1145 ruby/ext/google/protobuf_c/message.c \ 1146 ruby/ext/google/protobuf_c/message.h \ 1147 ruby/ext/google/protobuf_c/protobuf.c \ 1148 ruby/ext/google/protobuf_c/protobuf.h \ 1149 ruby/ext/google/protobuf_c/repeated_field.c \ 1150 ruby/ext/google/protobuf_c/repeated_field.h \ 1151 ruby/ext/google/protobuf_c/ruby-upb.c \ 1152 ruby/ext/google/protobuf_c/ruby-upb.h \ 1153 ruby/ext/google/protobuf_c/wrap_memcpy.c \ 1154 ruby/google-protobuf.gemspec \ 1155 ruby/lib/google/protobuf/descriptor_dsl.rb \ 1156 ruby/lib/google/protobuf/message_exts.rb \ 1157 ruby/lib/google/protobuf/repeated_field.rb \ 1158 ruby/lib/google/protobuf/well_known_types.rb \ 1159 ruby/lib/google/protobuf.rb \ 1160 ruby/pom.xml \ 1161 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \ 1162 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \ 1163 ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \ 1164 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \ 1165 ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \ 1166 ruby/src/main/java/com/google/protobuf/jruby/RubyFileDescriptor.java \ 1167 ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \ 1168 ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \ 1169 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \ 1170 ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \ 1171 ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \ 1172 ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \ 1173 ruby/src/main/java/com/google/protobuf/jruby/Utils.java \ 1174 ruby/src/main/java/google/ProtobufJavaService.java \ 1175 ruby/src/main/sentinel.proto \ 1176 ruby/tests/basic_proto2.rb \ 1177 ruby/tests/basic_test_proto2.proto \ 1178 ruby/tests/basic_test.proto \ 1179 ruby/tests/basic.rb \ 1180 ruby/tests/common_tests.rb \ 1181 ruby/tests/encode_decode_test.rb \ 1182 ruby/tests/gc_test.rb \ 1183 ruby/tests/repeated_field_test.rb \ 1184 ruby/tests/stress.rb \ 1185 ruby/tests/generated_code_proto2_test.rb \ 1186 ruby/tests/generated_code_proto2.proto \ 1187 ruby/tests/generated_code.proto \ 1188 ruby/tests/multi_level_nesting_test.proto \ 1189 ruby/tests/multi_level_nesting_test.rb \ 1190 ruby/tests/test_import_proto2.proto \ 1191 ruby/tests/test_import.proto \ 1192 ruby/tests/test_ruby_package_proto2.proto \ 1193 ruby/tests/test_ruby_package.proto \ 1194 ruby/tests/generated_code_test.rb \ 1195 ruby/tests/well_known_types_test.rb \ 1196 ruby/tests/type_errors.rb \ 1197 ruby/travis-test.sh 1198 1199all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(php_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) 1200 1201# Note: please keep this in sync with the common_dist_files rule in BUILD.bazel. 1202EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \ 1203 autogen.sh \ 1204 generate_descriptor_proto.sh \ 1205 README.md \ 1206 LICENSE \ 1207 CONTRIBUTORS.txt \ 1208 CHANGES.txt \ 1209 update_file_lists.sh \ 1210 BUILD.bazel \ 1211 WORKSPACE \ 1212 CMakeLists.txt \ 1213 build_defs/BUILD.bazel \ 1214 build_defs/cc_proto_blacklist_test.bzl \ 1215 build_defs/compiler_config_setting.bzl \ 1216 build_defs/cpp_opts.bzl \ 1217 build_files_updated_unittest.sh \ 1218 cmake/CMakeLists.txt \ 1219 cmake/README.md \ 1220 cmake/conformance.cmake \ 1221 cmake/examples.cmake \ 1222 cmake/extract_includes.bat.in \ 1223 cmake/install.cmake \ 1224 cmake/libprotobuf-lite.cmake \ 1225 cmake/libprotobuf.cmake \ 1226 cmake/libprotoc.cmake \ 1227 cmake/protobuf-config-version.cmake.in \ 1228 cmake/protobuf-config.cmake.in \ 1229 cmake/protobuf-lite.pc.cmake \ 1230 cmake/protobuf-module.cmake.in \ 1231 cmake/protobuf-options.cmake \ 1232 cmake/protobuf.pc.cmake \ 1233 cmake/protoc.cmake \ 1234 cmake/tests.cmake \ 1235 cmake/version.rc.in \ 1236 csharp/BUILD.bazel \ 1237 editors/README.txt \ 1238 editors/proto.vim \ 1239 editors/protobuf-mode.el \ 1240 examples/AddPerson.java \ 1241 examples/BUILD.bazel \ 1242 examples/CMakeLists.txt \ 1243 examples/ListPeople.java \ 1244 examples/Makefile \ 1245 examples/README.md \ 1246 examples/WORKSPACE \ 1247 examples/add_person.cc \ 1248 examples/add_person.dart \ 1249 examples/add_person.py \ 1250 examples/addressbook.proto \ 1251 examples/go/cmd/add_person/add_person.go \ 1252 examples/go/cmd/add_person/add_person_test.go \ 1253 examples/go/cmd/list_people/list_people.go \ 1254 examples/go/cmd/list_people/list_people_test.go \ 1255 examples/go/go.sum \ 1256 examples/go/go.mod \ 1257 examples/list_people.cc \ 1258 examples/list_people.dart \ 1259 examples/list_people.py \ 1260 examples/pubspec.yaml \ 1261 conformance/BUILD.bazel \ 1262 conformance/defs.bzl \ 1263 maven_install.json \ 1264 php/BUILD.bazel \ 1265 protobuf.bzl \ 1266 protobuf_deps.bzl \ 1267 protobuf_release.bzl \ 1268 protobuf_version.bzl \ 1269 ruby/BUILD.bazel \ 1270 third_party/zlib.BUILD \ 1271 util/python/BUILD.bazel 1272 1273# Deletes all the files generated by autogen.sh. 1274MAINTAINERCLEANFILES = \ 1275 aclocal.m4 \ 1276 ar-lib \ 1277 config.guess \ 1278 config.sub \ 1279 configure \ 1280 depcomp \ 1281 install-sh \ 1282 ltmain.sh \ 1283 Makefile.in \ 1284 missing \ 1285 mkinstalldirs \ 1286 config.h.in \ 1287 stamp.h.in \ 1288 m4/ltsugar.m4 \ 1289 m4/libtool.m4 \ 1290 m4/ltversion.m4 \ 1291 m4/lt~obsolete.m4 \ 1292 m4/ltoptions.m4 1293