Pull new version of protobuf sources.
commitabf57c3926331ce8f98f831c526581a038172445
authorpkasting <pkasting@chromium.org>
Wed, 26 Aug 2015 10:35:06 +0000 (26 03:35 -0700)
committerCommit bot <commit-bot@chromium.org>
Wed, 26 Aug 2015 10:35:58 +0000 (26 10:35 +0000)
tree8743736c92dece338b12bc683647a5a89fd41179
parent8a6d989860b06e71e552cd47004fc61422482a67
Pull new version of protobuf sources.

This should fix some MSVC warnings (though, sadly, we now have to disable more
warnings than before... different ones).  More importantly, it's the first full
source update (as opposed to cherry-picks) done in years, and includes a
complete README and sequence of patches to help future maintainers do similar
updates.  (Several past changes just updated the README to mention a change
without supplying a patch or even pointing to the relevant Chrome revision.)  My
hope is that this will make future source updates -- and maybe eventually
pulling directly from upstream via DEPS -- more feasible, so we don't get into a
similar state of having our local tree diverge so badly that only cherry-picks
are really doable.

BUG=81439
TEST=none
TBR=scottmg

Review URL: https://codereview.chromium.org/1291903002

Cr-Commit-Position: refs/heads/master@{#345578}
1179 files changed:
build/common.gypi
third_party/protobuf/.gitignore [new file with mode: 0644]
third_party/protobuf/.travis.yml [new file with mode: 0644]
third_party/protobuf/BUILD [new file with mode: 0644]
third_party/protobuf/BUILD.gn
third_party/protobuf/CHANGES.txt
third_party/protobuf/CONTRIBUTORS.txt
third_party/protobuf/COPYING.txt [deleted file]
third_party/protobuf/DEPS [new file with mode: 0644]
third_party/protobuf/LICENSE [new file with mode: 0644]
third_party/protobuf/Makefile.am [new file with mode: 0644]
third_party/protobuf/OWNERS
third_party/protobuf/Protobuf.podspec [new file with mode: 0644]
third_party/protobuf/README.chromium
third_party/protobuf/README.md [new file with mode: 0644]
third_party/protobuf/README.txt [deleted file]
third_party/protobuf/WORKSPACE [new file with mode: 0644]
third_party/protobuf/__init__.py [deleted file]
third_party/protobuf/appveyor.bat [new file with mode: 0644]
third_party/protobuf/appveyor.yml [new file with mode: 0644]
third_party/protobuf/autogen.sh [new file with mode: 0644]
third_party/protobuf/benchmarks/ProtoBench.java [new file with mode: 0644]
third_party/protobuf/benchmarks/google_message1.dat [new file with mode: 0644]
third_party/protobuf/benchmarks/google_message2.dat [new file with mode: 0644]
third_party/protobuf/benchmarks/google_size.proto [new file with mode: 0644]
third_party/protobuf/benchmarks/google_speed.proto [new file with mode: 0644]
third_party/protobuf/benchmarks/readme.txt [new file with mode: 0644]
third_party/protobuf/cmake/CMakeLists.txt [new file with mode: 0644]
third_party/protobuf/cmake/README.md [new file with mode: 0644]
third_party/protobuf/cmake/extract_includes.bat.in [new file with mode: 0644]
third_party/protobuf/cmake/libprotobuf-lite.cmake [new file with mode: 0644]
third_party/protobuf/cmake/libprotobuf.cmake [new file with mode: 0644]
third_party/protobuf/cmake/libprotoc.cmake [new file with mode: 0644]
third_party/protobuf/cmake/protoc.cmake [new file with mode: 0644]
third_party/protobuf/cmake/tests.cmake [new file with mode: 0644]
third_party/protobuf/config.h [deleted file]
third_party/protobuf/configure.ac [new file with mode: 0644]
third_party/protobuf/conformance/ConformanceJava.java [new file with mode: 0644]
third_party/protobuf/conformance/Makefile.am [new file with mode: 0644]
third_party/protobuf/conformance/README.md [new file with mode: 0644]
third_party/protobuf/conformance/conformance.proto [new file with mode: 0644]
third_party/protobuf/conformance/conformance_cpp.cc [new file with mode: 0644]
third_party/protobuf/conformance/conformance_ruby.rb [new file with mode: 0644]
third_party/protobuf/conformance/conformance_test.cc [new file with mode: 0644]
third_party/protobuf/conformance/conformance_test.h [new file with mode: 0644]
third_party/protobuf/conformance/conformance_test_runner.cc [new file with mode: 0644]
third_party/protobuf/conformance/failure_list_cpp.txt [new file with mode: 0644]
third_party/protobuf/conformance/failure_list_csharp.txt [new file with mode: 0644]
third_party/protobuf/conformance/failure_list_ruby.txt [new file with mode: 0644]
third_party/protobuf/csharp/.gitignore [new file with mode: 0644]
third_party/protobuf/csharp/CHANGES.txt [new file with mode: 0644]
third_party/protobuf/csharp/README.md [new file with mode: 0644]
third_party/protobuf/csharp/build_packages.bat [new file with mode: 0644]
third_party/protobuf/csharp/buildall.sh [new file with mode: 0644]
third_party/protobuf/csharp/generate_protos.sh [new file with mode: 0644]
third_party/protobuf/csharp/keys/Google.Protobuf.public.snk [new file with mode: 0644]
third_party/protobuf/csharp/keys/README.md [new file with mode: 0644]
third_party/protobuf/csharp/protos/unittest_issues.proto [new file with mode: 0644]
third_party/protobuf/csharp/src/AddressBook/AddPerson.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/AddressBook/AddressBook.csproj [new file with mode: 0644]
third_party/protobuf/csharp/src/AddressBook/Addressbook.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/AddressBook/ListPeople.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/AddressBook/Program.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/AddressBook/Properties/AssemblyInfo.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/AddressBook/SampleUsage.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/AddressBook/app.config [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Conformance/App.config [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Conformance.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Program.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Conformance/Properties/AssemblyInfo.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.JsonDump/Program.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.JsonDump/Properties/AssemblyInfo.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.JsonDump/app.config [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/ByteStringTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/EqualityTester.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/FieldCodecTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/IssuesTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/Properties/AppManifest.xml [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/Properties/AssemblyInfo.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/SampleEnum.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/SampleMessages.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/TestCornerCases.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf.Test/packages.config [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/ByteArray.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/ByteString.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/CodedInputStream.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/CodedOutputStream.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Collections/MapField.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Collections/RepeatedField.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/FieldCodec.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/FrameworkPortability.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Google.Protobuf.csproj [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Google.Protobuf.nuspec [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/IDeepCloneable.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/IMessage.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/JsonFormatter.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/LimitedInputStream.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/MessageExtensions.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/MessageParser.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Preconditions.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/DescriptorProtoFile.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/FieldType.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/GeneratedCodeInfo.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/IDescriptor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/PartialClasses.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Any.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Api.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Type.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/Google.Protobuf/WireFormat.cs [new file with mode: 0644]
third_party/protobuf/csharp/src/packages/repositories.config [new file with mode: 0644]
third_party/protobuf/descriptor_pb2.py [deleted file]
third_party/protobuf/editors/README.txt [new file with mode: 0644]
third_party/protobuf/editors/proto.vim [new file with mode: 0644]
third_party/protobuf/editors/protobuf-mode.el [new file with mode: 0644]
third_party/protobuf/examples/AddPerson.java [new file with mode: 0644]
third_party/protobuf/examples/ListPeople.java [new file with mode: 0644]
third_party/protobuf/examples/README.txt [new file with mode: 0644]
third_party/protobuf/examples/add_person.cc [new file with mode: 0644]
third_party/protobuf/examples/add_person.py [new file with mode: 0644]
third_party/protobuf/examples/addressbook.proto [new file with mode: 0644]
third_party/protobuf/examples/list_people.cc [new file with mode: 0644]
third_party/protobuf/examples/list_people.py [new file with mode: 0644]
third_party/protobuf/generate_descriptor_proto.sh [new file with mode: 0644]
third_party/protobuf/gmock.BUILD [new file with mode: 0644]
third_party/protobuf/java/README.md [new file with mode: 0644]
third_party/protobuf/java/pom.xml [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessage.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractMessageLite.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractParser.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/AbstractProtobufList.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/BlockingRpcChannel.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/BlockingService.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/BooleanArrayList.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/BoundedByteString.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/ByteString.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/CodedInputStream.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/CodedOutputStream.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/Descriptors.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/DoubleArrayList.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/DynamicMessage.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/Extension.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionLite.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistry.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/FieldSet.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/FloatArrayList.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessage.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/GeneratedMessageLite.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/IntArrayList.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/Internal.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/LazyField.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/LazyFieldLite.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/LazyStringArrayList.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/LazyStringList.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/LiteralByteString.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/LongArrayList.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/MapEntry.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/MapEntryLite.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/MapField.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/MapFieldLite.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/Message.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/MessageLite.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/MessageOrBuilder.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/MessageReflection.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/MutabilityOracle.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/Parser.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/ProtobufArrayList.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/ProtocolStringList.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/RopeByteString.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/RpcCallback.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/RpcChannel.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/RpcController.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/RpcUtil.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/Service.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/ServiceException.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/SingleFieldBuilder.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/SmallSortedMap.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/TextFormat.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/UninitializedMessageException.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSet.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/UnknownFieldSetLite.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/Utf8.java [new file with mode: 0644]
third_party/protobuf/java/src/main/java/com/google/protobuf/WireFormat.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/AbstractMessageTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/BooleanArrayListTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/BoundedByteStringTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/ByteStringTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/CheckUtf8Test.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/CodedInputStreamTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/DescriptorsTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/DoubleArrayListTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/DynamicMessageTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/FieldPresenceTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/FloatArrayListTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/GeneratedMessageTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/IntArrayListTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8Test.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/LazyFieldTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/LiteTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/LiteralByteStringTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/LongArrayListTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/MapForProto2LiteTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/MapForProto2Test.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/MapTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/MessageTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/NestedBuildersTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/ParserTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/ProtobufArrayListTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/RopeByteStringTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/ServiceTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/SmallSortedMapTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/TestBadIdentifiers.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/TestUtil.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/TextFormatTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/UnknownEnumValueTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/WellKnownTypesTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/WireFormatTest.java [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/field_presence_test.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/lazy_fields_lite.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/map_for_proto2_lite_test.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/map_for_proto2_test.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/map_initialization_order_test.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/map_test.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/multiple_files_test.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/nested_builders_test.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/nested_extension.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/nested_extension_lite.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/non_nested_extension.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/outer_class_name_test.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/outer_class_name_test2.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/outer_class_name_test3.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/test_bad_identifiers.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/test_check_utf8.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/test_check_utf8_size.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/test_custom_options.proto [new file with mode: 0644]
third_party/protobuf/java/src/test/java/com/google/protobuf/test_extra_interfaces.proto [new file with mode: 0644]
third_party/protobuf/javanano/README.md [new file with mode: 0644]
third_party/protobuf/javanano/pom.xml [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/CodedInputByteBufferNano.java [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/ExtendableMessageNano.java [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/Extension.java [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/FieldArray.java [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/FieldData.java [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/InternalNano.java [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoException.java [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/MapFactories.java [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/MessageNano.java [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/MessageNanoPrinter.java [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/UnknownFieldData.java [new file with mode: 0644]
third_party/protobuf/javanano/src/main/java/com/google/protobuf/nano/WireFormatNano.java [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/NanoTest.java [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/map_test.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_accessors_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_multiple_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_enum_validity_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_extension_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_extension_packed_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_extension_repeated_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_extension_singular_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_has_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_import_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nameclash_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_recursive_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_reference_types_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_merge_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_packables_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_simple_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_single_nano.proto [new file with mode: 0644]
third_party/protobuf/javanano/src/test/java/com/google/protobuf/nano/unittest_stringutf8_nano.proto [new file with mode: 0644]
third_party/protobuf/m4/ac_system_extensions.m4 [new file with mode: 0644]
third_party/protobuf/m4/acx_check_suncc.m4 [new file with mode: 0644]
third_party/protobuf/m4/acx_pthread.m4 [new file with mode: 0644]
third_party/protobuf/m4/stl_hash.m4 [new file with mode: 0644]
third_party/protobuf/objectivec/DevTools/check_version_stamps.sh [new file with mode: 0644]
third_party/protobuf/objectivec/DevTools/compile_testing_protos.sh [new file with mode: 0644]
third_party/protobuf/objectivec/DevTools/full_mac_build.sh [new file with mode: 0644]
third_party/protobuf/objectivec/DevTools/pddm.py [new file with mode: 0644]
third_party/protobuf/objectivec/DevTools/pddm_tests.py [new file with mode: 0644]
third_party/protobuf/objectivec/GPBArray.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBArray.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBArray_PackagePrivate.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBBootstrap.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBCodedInputStream.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBCodedInputStream.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBCodedInputStream_PackagePrivate.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBCodedOutputStream.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBCodedOutputStream.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBDescriptor.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBDescriptor.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBDescriptor_PackagePrivate.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBDictionary.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBDictionary.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBDictionary_PackagePrivate.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBExtensionInternals.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBExtensionInternals.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBExtensionRegistry.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBExtensionRegistry.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBMessage.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBMessage.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBMessage_PackagePrivate.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBProtocolBuffers.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBProtocolBuffers.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBProtocolBuffers_RuntimeSupport.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBRootObject.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBRootObject.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBRootObject_PackagePrivate.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBRuntimeTypes.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBUnknownField.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBUnknownField.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBUnknownFieldSet.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBUnknownFieldSet.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBUnknownFieldSet_PackagePrivate.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBUnknownField_PackagePrivate.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBUtilities.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBUtilities.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBUtilities_PackagePrivate.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBWellKnownTypes.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBWellKnownTypes.m [new file with mode: 0644]
third_party/protobuf/objectivec/GPBWireFormat.h [new file with mode: 0644]
third_party/protobuf/objectivec/GPBWireFormat.m [new file with mode: 0644]
third_party/protobuf/objectivec/README.md [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBARCUnittestProtos.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBArrayTests.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBCodedInputStreamTests.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBCodedOuputStreamTests.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBConcurrencyTests.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBDescriptorTests.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBDictionaryTests+Bool.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBDictionaryTests+Int32.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBDictionaryTests+Int64.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBDictionaryTests+String.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBDictionaryTests+UInt32.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBDictionaryTests+UInt64.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBDictionaryTests.pddm [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBMessageTests+Merge.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBMessageTests+Runtime.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBMessageTests+Serialization.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBMessageTests.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBPerfTests.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBStringTests.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBSwiftTests.swift [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBTestUtilities.h [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBTestUtilities.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBUnittestProtos.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBUnknownFieldSetTest.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBUtilitiesTests.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBWellKnownTypesTest.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/GPBWireFormatTests.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/UnitTests-Bridging-Header.h [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/UnitTests-Info.plist [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/golden_message [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/golden_packed_fields_message [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/AppDelegate.m [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.json [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6_2x.png [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7_2x.png [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6_2x.png [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_2x.png [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_3x.png [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Contents.json [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/Info.plist [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/LaunchScreen.xib [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/text_format_map_unittest_data.txt [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/text_format_unittest_data.txt [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/unittest_cycle.proto [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/unittest_objc.proto [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/unittest_objc_startup.proto [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/unittest_runtime_proto2.proto [new file with mode: 0644]
third_party/protobuf/objectivec/Tests/unittest_runtime_proto3.proto [new file with mode: 0644]
third_party/protobuf/objectivec/generate_descriptors_proto.sh [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Any.pbobjc.h [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Any.pbobjc.m [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Api.pbobjc.h [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Api.pbobjc.m [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Descriptor.pbobjc.h [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Descriptor.pbobjc.m [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Duration.pbobjc.h [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Duration.pbobjc.m [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Empty.pbobjc.h [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Empty.pbobjc.m [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/FieldMask.pbobjc.h [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/FieldMask.pbobjc.m [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/SourceContext.pbobjc.h [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/SourceContext.pbobjc.m [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Struct.pbobjc.h [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Struct.pbobjc.m [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Timestamp.pbobjc.h [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Timestamp.pbobjc.m [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Type.pbobjc.h [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Type.pbobjc.m [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Wrappers.pbobjc.h [new file with mode: 0644]
third_party/protobuf/objectivec/google/protobuf/Wrappers.pbobjc.m [new file with mode: 0644]
third_party/protobuf/patches/00_add_buildfiles.patch [new file with mode: 0644]
third_party/protobuf/patches/01_build_fixes.patch [new file with mode: 0644]
third_party/protobuf/patches/02_unknown_fields_in_protobuf_lite.patch [new file with mode: 0644]
third_party/protobuf/patches/03_componentize_protobuf_lite.patch [new file with mode: 0644]
third_party/protobuf/patches/04_uninline.patch [new file with mode: 0644]
third_party/protobuf/post_process_dist.sh [new file with mode: 0644]
third_party/protobuf/protobuf-lite.pc.in [new file with mode: 0644]
third_party/protobuf/protobuf.gyp
third_party/protobuf/protobuf.pc.in [new file with mode: 0644]
third_party/protobuf/protobuf_lite.gypi
third_party/protobuf/protobuf_nacl.gyp
third_party/protobuf/protoc-artifacts/Dockerfile [new file with mode: 0644]
third_party/protobuf/protoc-artifacts/README.md [new file with mode: 0644]
third_party/protobuf/protoc-artifacts/build-protoc.sh [new file with mode: 0644]
third_party/protobuf/protoc-artifacts/pom.xml [new file with mode: 0644]
third_party/protobuf/python/MANIFEST.in [new file with mode: 0644]
third_party/protobuf/python/README.md [new file with mode: 0644]
third_party/protobuf/python/README.txt [deleted file]
third_party/protobuf/python/ez_setup.py
third_party/protobuf/python/google/protobuf/__init__.py
third_party/protobuf/python/google/protobuf/descriptor.py
third_party/protobuf/python/google/protobuf/descriptor_database.py
third_party/protobuf/python/google/protobuf/descriptor_pb2.py [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/descriptor_pool.py
third_party/protobuf/python/google/protobuf/internal/_parameterized.py [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/internal/api_implementation.cc [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/internal/api_implementation.py
third_party/protobuf/python/google/protobuf/internal/containers.py
third_party/protobuf/python/google/protobuf/internal/cpp_message.py [deleted file]
third_party/protobuf/python/google/protobuf/internal/decoder.py
third_party/protobuf/python/google/protobuf/internal/descriptor_database_test.py
third_party/protobuf/python/google/protobuf/internal/descriptor_pool_test.py
third_party/protobuf/python/google/protobuf/internal/descriptor_pool_test1.proto [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/internal/descriptor_pool_test2.proto [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/internal/descriptor_test.py
third_party/protobuf/python/google/protobuf/internal/encoder.py
third_party/protobuf/python/google/protobuf/internal/enum_type_wrapper.py
third_party/protobuf/python/google/protobuf/internal/factory_test1.proto
third_party/protobuf/python/google/protobuf/internal/factory_test2.proto
third_party/protobuf/python/google/protobuf/internal/generator_test.py
third_party/protobuf/python/google/protobuf/internal/import_test_package/__init__.py [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/internal/import_test_package/inner.proto [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/internal/import_test_package/outer.proto [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/internal/message_cpp_test.py [deleted file]
third_party/protobuf/python/google/protobuf/internal/message_factory_test.py
third_party/protobuf/python/google/protobuf/internal/message_listener.py
third_party/protobuf/python/google/protobuf/internal/message_test.py
third_party/protobuf/python/google/protobuf/internal/missing_enum_values.proto [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/internal/more_extensions.proto
third_party/protobuf/python/google/protobuf/internal/more_extensions_dynamic.proto
third_party/protobuf/python/google/protobuf/internal/more_messages.proto
third_party/protobuf/python/google/protobuf/internal/proto_builder_test.py [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/internal/python_message.py
third_party/protobuf/python/google/protobuf/internal/reflection_cpp_generated_test.py [deleted file]
third_party/protobuf/python/google/protobuf/internal/reflection_test.py
third_party/protobuf/python/google/protobuf/internal/service_reflection_test.py
third_party/protobuf/python/google/protobuf/internal/symbol_database_test.py [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/internal/test_bad_identifiers.proto
third_party/protobuf/python/google/protobuf/internal/test_util.py
third_party/protobuf/python/google/protobuf/internal/text_encoding_test.py [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/internal/text_format_test.py
third_party/protobuf/python/google/protobuf/internal/type_checkers.py
third_party/protobuf/python/google/protobuf/internal/unknown_fields_test.py
third_party/protobuf/python/google/protobuf/internal/wire_format.py
third_party/protobuf/python/google/protobuf/internal/wire_format_test.py
third_party/protobuf/python/google/protobuf/message.py
third_party/protobuf/python/google/protobuf/message_factory.py
third_party/protobuf/python/google/protobuf/proto_builder.py [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/README [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/__init__.py [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/cpp_message.py [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/descriptor.cc [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/descriptor.h [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/descriptor_containers.cc [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/descriptor_containers.h [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/descriptor_pool.cc [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/descriptor_pool.h [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/extension_dict.cc [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/extension_dict.h [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/message.cc [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/message.h [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/message_map_container.cc [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/message_map_container.h [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/proto2_api_test.proto [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/python-proto2.cc [deleted file]
third_party/protobuf/python/google/protobuf/pyext/python.proto [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/python_descriptor.cc [deleted file]
third_party/protobuf/python/google/protobuf/pyext/python_descriptor.h [deleted file]
third_party/protobuf/python/google/protobuf/pyext/python_protobuf.cc [deleted file]
third_party/protobuf/python/google/protobuf/pyext/python_protobuf.h
third_party/protobuf/python/google/protobuf/pyext/repeated_composite_container.cc [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/repeated_composite_container.h [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/repeated_scalar_container.cc [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/repeated_scalar_container.h [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/scalar_map_container.cc [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/scalar_map_container.h [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/pyext/scoped_pyobject_ptr.h [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/reflection.py
third_party/protobuf/python/google/protobuf/service.py
third_party/protobuf/python/google/protobuf/service_reflection.py
third_party/protobuf/python/google/protobuf/symbol_database.py [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/text_encoding.py [new file with mode: 0644]
third_party/protobuf/python/google/protobuf/text_format.py
third_party/protobuf/python/mox.py
third_party/protobuf/python/setup.py
third_party/protobuf/ruby/.gitignore [new file with mode: 0644]
third_party/protobuf/ruby/Gemfile [new file with mode: 0644]
third_party/protobuf/ruby/Gemfile.lock [new file with mode: 0644]
third_party/protobuf/ruby/README.md [new file with mode: 0644]
third_party/protobuf/ruby/Rakefile [new file with mode: 0644]
third_party/protobuf/ruby/ext/google/protobuf_c/defs.c [new file with mode: 0644]
third_party/protobuf/ruby/ext/google/protobuf_c/encode_decode.c [new file with mode: 0644]
third_party/protobuf/ruby/ext/google/protobuf_c/extconf.rb [new file with mode: 0644]
third_party/protobuf/ruby/ext/google/protobuf_c/map.c [new file with mode: 0644]
third_party/protobuf/ruby/ext/google/protobuf_c/message.c [new file with mode: 0644]
third_party/protobuf/ruby/ext/google/protobuf_c/protobuf.c [new file with mode: 0644]
third_party/protobuf/ruby/ext/google/protobuf_c/protobuf.h [new file with mode: 0644]
third_party/protobuf/ruby/ext/google/protobuf_c/repeated_field.c [new file with mode: 0644]
third_party/protobuf/ruby/ext/google/protobuf_c/storage.c [new file with mode: 0644]
third_party/protobuf/ruby/ext/google/protobuf_c/upb.c [new file with mode: 0644]
third_party/protobuf/ruby/ext/google/protobuf_c/upb.h [new file with mode: 0644]
third_party/protobuf/ruby/google-protobuf.gemspec [new file with mode: 0644]
third_party/protobuf/ruby/lib/google/protobuf.rb [new file with mode: 0644]
third_party/protobuf/ruby/lib/google/protobuf/message_exts.rb [new file with mode: 0644]
third_party/protobuf/ruby/lib/google/protobuf/repeated_field.rb [new file with mode: 0644]
third_party/protobuf/ruby/pom.xml [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/Utils.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/java/google/ProtobufJavaService.java [new file with mode: 0644]
third_party/protobuf/ruby/src/main/sentinel.proto [new file with mode: 0644]
third_party/protobuf/ruby/tests/basic.rb [new file with mode: 0644]
third_party/protobuf/ruby/tests/generated_code.proto [new file with mode: 0644]
third_party/protobuf/ruby/tests/generated_code.rb [new file with mode: 0644]
third_party/protobuf/ruby/tests/generated_code_test.rb [new file with mode: 0644]
third_party/protobuf/ruby/tests/repeated_field_test.rb [new file with mode: 0644]
third_party/protobuf/ruby/tests/stress.rb [new file with mode: 0644]
third_party/protobuf/ruby/travis-test.sh [new file with mode: 0644]
third_party/protobuf/src/Makefile.am
third_party/protobuf/src/google/protobuf/SEBS [deleted file]
third_party/protobuf/src/google/protobuf/any.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/any.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/any.pb.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/any.pb.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/any.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/any_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/any_test.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/api.pb.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/api.pb.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/api.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/arena.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/arena.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/arena_nc.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/arena_nc_test.py [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/arena_test_util.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/arena_test_util.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/arena_unittest.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/arenastring.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/arenastring.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/arenastring_unittest.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/code_generator.cc
third_party/protobuf/src/google/protobuf/compiler/code_generator.h
third_party/protobuf/src/google/protobuf/compiler/command_line_interface.cc
third_party/protobuf/src/google/protobuf/compiler/command_line_interface.h
third_party/protobuf/src/google/protobuf/compiler/command_line_interface_unittest.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_enum_field.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_extension.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_extension.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_field.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_field.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_file.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_file.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_generator.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_helpers.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_map_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_map_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_message_field.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_options.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_plugin_unittest.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_primitive_field.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_service.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_service.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_string_field.h
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_test_large_enum_value.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.cc
third_party/protobuf/src/google/protobuf/compiler/cpp/cpp_unittest.h
third_party/protobuf/src/google/protobuf/compiler/cpp/test_large_enum_value.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_enum_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_field_base.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_generator_unittest.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_helpers.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_map_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_message_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_names.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_primitive_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_source_generator_base.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_umbrella_class.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_umbrella_class.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/csharp/csharp_wrapper_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/importer.cc
third_party/protobuf/src/google/protobuf/compiler/importer.h
third_party/protobuf/src/google/protobuf/compiler/importer_unittest.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_context.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_context.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment.h
third_party/protobuf/src/google/protobuf/compiler/java/java_doc_comment_unittest.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_enum.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_enum.h
third_party/protobuf/src/google/protobuf/compiler/java/java_enum_field.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_enum_field.h
third_party/protobuf/src/google/protobuf/compiler/java/java_enum_field_lite.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_enum_field_lite.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_extension.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_extension.h
third_party/protobuf/src/google/protobuf/compiler/java/java_field.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_field.h
third_party/protobuf/src/google/protobuf/compiler/java/java_file.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_file.h
third_party/protobuf/src/google/protobuf/compiler/java/java_generator.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_generator.h
third_party/protobuf/src/google/protobuf/compiler/java/java_generator_factory.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_generator_factory.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_helpers.h
third_party/protobuf/src/google/protobuf/compiler/java/java_lazy_message_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_lazy_message_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_lazy_message_field_lite.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_lazy_message_field_lite.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_map_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_map_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_map_field_lite.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_map_field_lite.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_message.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_message.h
third_party/protobuf/src/google/protobuf/compiler/java/java_message_builder.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_message_builder.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_message_builder_lite.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_message_builder_lite.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_message_field.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_message_field.h
third_party/protobuf/src/google/protobuf/compiler/java/java_message_field_lite.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_message_field_lite.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_message_lite.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_message_lite.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_name_resolver.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_name_resolver.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_names.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_plugin_unittest.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_primitive_field.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_primitive_field.h
third_party/protobuf/src/google/protobuf/compiler/java/java_primitive_field_lite.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_primitive_field_lite.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_service.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_service.h
third_party/protobuf/src/google/protobuf/compiler/java/java_shared_code_generator.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_shared_code_generator.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_string_field.cc
third_party/protobuf/src/google/protobuf/compiler/java/java_string_field.h
third_party/protobuf/src/google/protobuf/compiler/java/java_string_field_lite.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/java/java_string_field_lite.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_enum.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_enum.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_enum_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_enum_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_extension.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_extension.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_file.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_file.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_generator.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_generator.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_helpers.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_helpers.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_map_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_map_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_message.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_message.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_message_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_message_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_params.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_primitive_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/javanano/javanano_primitive_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/main.cc
third_party/protobuf/src/google/protobuf/compiler/mock_code_generator.cc
third_party/protobuf/src/google/protobuf/compiler/mock_code_generator.h
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_enum_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_extension.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_extension.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_file.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_file.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_generator.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_generator.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_helpers.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_helpers_unittest.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_map_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_message.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_message.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_message_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_oneof.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/package_info.h
third_party/protobuf/src/google/protobuf/compiler/parser.cc
third_party/protobuf/src/google/protobuf/compiler/parser.h
third_party/protobuf/src/google/protobuf/compiler/parser_unittest.cc
third_party/protobuf/src/google/protobuf/compiler/plugin.cc
third_party/protobuf/src/google/protobuf/compiler/plugin.h
third_party/protobuf/src/google/protobuf/compiler/plugin.pb.cc
third_party/protobuf/src/google/protobuf/compiler/plugin.pb.h
third_party/protobuf/src/google/protobuf/compiler/plugin.proto
third_party/protobuf/src/google/protobuf/compiler/python/python_generator.cc
third_party/protobuf/src/google/protobuf/compiler/python/python_generator.h
third_party/protobuf/src/google/protobuf/compiler/python/python_plugin_unittest.cc
third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generated_code.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generated_code.rb [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/ruby/ruby_generator_unittest.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/compiler/subprocess.cc
third_party/protobuf/src/google/protobuf/compiler/subprocess.h
third_party/protobuf/src/google/protobuf/compiler/test_plugin.cc
third_party/protobuf/src/google/protobuf/compiler/zip_output_unittest.sh
third_party/protobuf/src/google/protobuf/compiler/zip_writer.cc
third_party/protobuf/src/google/protobuf/compiler/zip_writer.h
third_party/protobuf/src/google/protobuf/descriptor.cc
third_party/protobuf/src/google/protobuf/descriptor.h
third_party/protobuf/src/google/protobuf/descriptor.pb.cc
third_party/protobuf/src/google/protobuf/descriptor.pb.h
third_party/protobuf/src/google/protobuf/descriptor.proto
third_party/protobuf/src/google/protobuf/descriptor_database.cc
third_party/protobuf/src/google/protobuf/descriptor_database.h
third_party/protobuf/src/google/protobuf/descriptor_database_unittest.cc
third_party/protobuf/src/google/protobuf/descriptor_unittest.cc
third_party/protobuf/src/google/protobuf/drop_unknown_fields_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/duration.pb.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/duration.pb.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/duration.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/dynamic_message.cc
third_party/protobuf/src/google/protobuf/dynamic_message.h
third_party/protobuf/src/google/protobuf/dynamic_message_unittest.cc
third_party/protobuf/src/google/protobuf/empty.pb.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/empty.pb.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/empty.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/extension_set.cc
third_party/protobuf/src/google/protobuf/extension_set.h
third_party/protobuf/src/google/protobuf/extension_set_heavy.cc
third_party/protobuf/src/google/protobuf/extension_set_unittest.cc
third_party/protobuf/src/google/protobuf/field_mask.pb.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/field_mask.pb.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/field_mask.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/generated_enum_reflection.h
third_party/protobuf/src/google/protobuf/generated_enum_util.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/generated_message_reflection.cc
third_party/protobuf/src/google/protobuf/generated_message_reflection.h
third_party/protobuf/src/google/protobuf/generated_message_reflection_unittest.cc
third_party/protobuf/src/google/protobuf/generated_message_util.cc
third_party/protobuf/src/google/protobuf/generated_message_util.h
third_party/protobuf/src/google/protobuf/io/coded_stream.cc
third_party/protobuf/src/google/protobuf/io/coded_stream.h
third_party/protobuf/src/google/protobuf/io/coded_stream_inl.h
third_party/protobuf/src/google/protobuf/io/coded_stream_unittest.cc
third_party/protobuf/src/google/protobuf/io/gzip_stream.cc
third_party/protobuf/src/google/protobuf/io/gzip_stream.h
third_party/protobuf/src/google/protobuf/io/gzip_stream_unittest.sh
third_party/protobuf/src/google/protobuf/io/package_info.h
third_party/protobuf/src/google/protobuf/io/printer.cc
third_party/protobuf/src/google/protobuf/io/printer.h
third_party/protobuf/src/google/protobuf/io/printer_unittest.cc
third_party/protobuf/src/google/protobuf/io/strtod.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/io/strtod.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/io/tokenizer.cc
third_party/protobuf/src/google/protobuf/io/tokenizer.h
third_party/protobuf/src/google/protobuf/io/tokenizer_unittest.cc
third_party/protobuf/src/google/protobuf/io/zero_copy_stream.cc
third_party/protobuf/src/google/protobuf/io/zero_copy_stream.h
third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.cc
third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl.h
third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.cc
third_party/protobuf/src/google/protobuf/io/zero_copy_stream_impl_lite.h
third_party/protobuf/src/google/protobuf/io/zero_copy_stream_unittest.cc
third_party/protobuf/src/google/protobuf/lite_unittest.cc
third_party/protobuf/src/google/protobuf/map.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_entry.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_entry_lite.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_field.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_field.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_field_inl.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_field_lite.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_field_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_lite_test_util.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_lite_test_util.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_lite_unittest.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_proto2_unittest.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_test_util.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_test_util.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_test_util_impl.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_type_handler.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_unittest.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/map_unittest_proto3.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/message.cc
third_party/protobuf/src/google/protobuf/message.h
third_party/protobuf/src/google/protobuf/message_lite.cc
third_party/protobuf/src/google/protobuf/message_lite.h
third_party/protobuf/src/google/protobuf/message_unittest.cc
third_party/protobuf/src/google/protobuf/metadata.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/metadata.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/no_field_presence_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/package_info.h
third_party/protobuf/src/google/protobuf/preserve_unknown_enum_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/proto3_arena_unittest.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/proto_cast.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/proto_cast_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/reflection.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/reflection_internal.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/reflection_ops.cc
third_party/protobuf/src/google/protobuf/reflection_ops.h
third_party/protobuf/src/google/protobuf/reflection_ops_unittest.cc
third_party/protobuf/src/google/protobuf/repeated_field.cc
third_party/protobuf/src/google/protobuf/repeated_field.h
third_party/protobuf/src/google/protobuf/repeated_field_reflection.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/repeated_field_reflection_unittest.cc
third_party/protobuf/src/google/protobuf/repeated_field_unittest.cc
third_party/protobuf/src/google/protobuf/service.cc
third_party/protobuf/src/google/protobuf/service.h
third_party/protobuf/src/google/protobuf/source_context.pb.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/source_context.pb.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/source_context.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/struct.pb.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/struct.pb.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/struct.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/atomic_sequence_num.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/atomicops.h
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_aix.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_arm64_gcc.h
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_arm_gcc.h
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_arm_qnx.h
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_atomicword_compat.h
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_generic_gcc.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_macosx.h
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_mips_gcc.h
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_pnacl.h
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_solaris.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_tsan.h
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_gcc.cc
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_gcc.h
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_msvc.cc
third_party/protobuf/src/google/protobuf/stubs/atomicops_internals_x86_msvc.h
third_party/protobuf/src/google/protobuf/stubs/bytestream.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/bytestream.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/bytestream_unittest.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/callback.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/casts.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/common.cc
third_party/protobuf/src/google/protobuf/stubs/common.h
third_party/protobuf/src/google/protobuf/stubs/common_unittest.cc
third_party/protobuf/src/google/protobuf/stubs/fastmem.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/hash.h
third_party/protobuf/src/google/protobuf/stubs/logging.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/macros.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/map-util.h [deleted file]
third_party/protobuf/src/google/protobuf/stubs/map_util.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/mathlimits.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/mathlimits.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/mathutil.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/mutex.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/once.cc
third_party/protobuf/src/google/protobuf/stubs/once.h
third_party/protobuf/src/google/protobuf/stubs/once_unittest.cc
third_party/protobuf/src/google/protobuf/stubs/pbconfig.h [deleted file]
third_party/protobuf/src/google/protobuf/stubs/platform_macros.h
third_party/protobuf/src/google/protobuf/stubs/port.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/scoped_ptr.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/shared_ptr.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/singleton.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/status.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/status.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/status_macros.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/status_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/statusor.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/statusor.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/statusor_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/stl_util.h
third_party/protobuf/src/google/protobuf/stubs/stringpiece.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/stringpiece.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/stringpiece_unittest.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/stringprintf.cc
third_party/protobuf/src/google/protobuf/stubs/stringprintf.h
third_party/protobuf/src/google/protobuf/stubs/stringprintf_unittest.cc
third_party/protobuf/src/google/protobuf/stubs/strutil.cc
third_party/protobuf/src/google/protobuf/stubs/strutil.h
third_party/protobuf/src/google/protobuf/stubs/strutil_unittest.cc
third_party/protobuf/src/google/protobuf/stubs/substitute.cc
third_party/protobuf/src/google/protobuf/stubs/substitute.h
third_party/protobuf/src/google/protobuf/stubs/template_util.h
third_party/protobuf/src/google/protobuf/stubs/time.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/time.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/time_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/stubs/type_traits.h
third_party/protobuf/src/google/protobuf/stubs/type_traits_unittest.cc
third_party/protobuf/src/google/protobuf/test_util.cc
third_party/protobuf/src/google/protobuf/test_util.h
third_party/protobuf/src/google/protobuf/test_util_lite.cc
third_party/protobuf/src/google/protobuf/test_util_lite.h
third_party/protobuf/src/google/protobuf/testdata/bad_utf8_string [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/testdata/golden_message
third_party/protobuf/src/google/protobuf/testdata/golden_message_oneof_implemented [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/testdata/golden_message_proto3 [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/testdata/map_test_data.txt [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/testdata/text_format_unittest_data.txt
third_party/protobuf/src/google/protobuf/testdata/text_format_unittest_data_oneof_implemented.txt [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/testdata/text_format_unittest_data_pointy.txt [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/testdata/text_format_unittest_data_pointy_oneof.txt [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/testdata/text_format_unittest_extensions_data.txt
third_party/protobuf/src/google/protobuf/testdata/text_format_unittest_extensions_data_pointy.txt [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/testing/file.cc
third_party/protobuf/src/google/protobuf/testing/file.h
third_party/protobuf/src/google/protobuf/testing/googletest.cc
third_party/protobuf/src/google/protobuf/testing/googletest.h
third_party/protobuf/src/google/protobuf/testing/zcgunzip.cc
third_party/protobuf/src/google/protobuf/testing/zcgzip.cc
third_party/protobuf/src/google/protobuf/text_format.cc
third_party/protobuf/src/google/protobuf/text_format.h
third_party/protobuf/src/google/protobuf/text_format_unittest.cc
third_party/protobuf/src/google/protobuf/timestamp.pb.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/timestamp.pb.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/timestamp.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/type.pb.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/type.pb.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/type.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unittest.proto
third_party/protobuf/src/google/protobuf/unittest_arena.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unittest_custom_options.proto
third_party/protobuf/src/google/protobuf/unittest_drop_unknown_fields.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unittest_embed_optimize_for.proto
third_party/protobuf/src/google/protobuf/unittest_empty.proto
third_party/protobuf/src/google/protobuf/unittest_enormous_descriptor.proto
third_party/protobuf/src/google/protobuf/unittest_import.proto
third_party/protobuf/src/google/protobuf/unittest_import_lite.proto
third_party/protobuf/src/google/protobuf/unittest_import_proto3.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unittest_import_public.proto
third_party/protobuf/src/google/protobuf/unittest_import_public_lite.proto
third_party/protobuf/src/google/protobuf/unittest_import_public_proto3.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unittest_lite.proto
third_party/protobuf/src/google/protobuf/unittest_lite_imports_nonlite.proto
third_party/protobuf/src/google/protobuf/unittest_mset.proto
third_party/protobuf/src/google/protobuf/unittest_no_arena.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unittest_no_arena_import.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unittest_no_field_presence.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unittest_no_generic_services.proto
third_party/protobuf/src/google/protobuf/unittest_optimize_for.proto
third_party/protobuf/src/google/protobuf/unittest_preserve_unknown_enum.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unittest_preserve_unknown_enum2.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unittest_proto3.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unittest_proto3_arena.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unittest_well_known_types.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unknown_enum_impl.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unknown_enum_test.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/unknown_field_set.cc
third_party/protobuf/src/google/protobuf/unknown_field_set.h
third_party/protobuf/src/google/protobuf/unknown_field_set_unittest.cc
third_party/protobuf/src/google/protobuf/util/field_comparator.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/field_comparator.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/field_comparator_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/constants.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/datapiece.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/datapiece.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/default_value_objectwriter.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/default_value_objectwriter.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/default_value_objectwriter_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/error_listener.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/error_listener.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/expecting_objectwriter.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/field_mask_utility.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/field_mask_utility.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/json_escaping.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/json_escaping.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/json_objectwriter.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/json_objectwriter.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/json_objectwriter_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/json_stream_parser.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/json_stream_parser.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/json_stream_parser_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/location_tracker.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/mock_error_listener.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/object_location_tracker.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/object_source.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/object_writer.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/object_writer.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/protostream_objectsource.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/protostream_objectsource.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/protostream_objectsource_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/protostream_objectwriter.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/protostream_objectwriter.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/protostream_objectwriter_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/snake2camel_objectwriter.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/snake2camel_objectwriter_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/structured_objectwriter.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/testdata/anys.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/testdata/books.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/testdata/default_value.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/testdata/default_value_test.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/testdata/field_mask.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/testdata/maps.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/testdata/struct.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/testdata/timestamp_duration.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/testdata/wrappers.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/type_info.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/type_info.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/type_info_test_helper.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/type_info_test_helper.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/utility.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/internal/utility.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/json_format_proto3.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/json_util.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/json_util.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/json_util_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/message_differencer.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/message_differencer.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/message_differencer_unittest.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/message_differencer_unittest.proto [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/type_resolver.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/type_resolver_util.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/type_resolver_util.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/util/type_resolver_util_test.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/well_known_types_unittest.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/wire_format.cc
third_party/protobuf/src/google/protobuf/wire_format.h
third_party/protobuf/src/google/protobuf/wire_format_lite.cc
third_party/protobuf/src/google/protobuf/wire_format_lite.h
third_party/protobuf/src/google/protobuf/wire_format_lite_inl.h
third_party/protobuf/src/google/protobuf/wire_format_unittest.cc
third_party/protobuf/src/google/protobuf/wrappers.pb.cc [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/wrappers.pb.h [new file with mode: 0644]
third_party/protobuf/src/google/protobuf/wrappers.proto [new file with mode: 0644]
third_party/protobuf/travis.sh [new file with mode: 0644]
third_party/protobuf/update_file_lists.sh [new file with mode: 0644]
third_party/protobuf/vsprojects/config.h [deleted file]
third_party/protobuf/vsprojects/convert2008to2005.sh [deleted file]
third_party/protobuf/vsprojects/extract_includes.bat [deleted file]
third_party/protobuf/vsprojects/readme.txt [deleted file]