2008-07-10 02:12:20 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
|
2008-09-30 20:55:25 +00:00
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
|
2009-04-21 21:00:39 +00:00
|
|
|
# Build . before src so that our all-local and clean-local hooks kicks in at
|
|
|
|
# the right time.
|
|
|
|
SUBDIRS = . src
|
|
|
|
|
2018-03-26 20:54:32 +00:00
|
|
|
# Always include third_party directories in distributions.
|
|
|
|
DIST_SUBDIRS = src conformance benchmarks third_party/googletest
|
2009-04-21 21:00:39 +00:00
|
|
|
|
2015-06-16 01:21:48 +00:00
|
|
|
# Build gmock before we build protobuf tests. We don't add gmock to SUBDIRS
|
|
|
|
# because then "make check" would also build and run all of gmock's own tests,
|
2009-04-21 21:00:39 +00:00
|
|
|
# which takes a lot of time and is generally not useful to us. Also, we don't
|
2015-06-16 01:21:48 +00:00
|
|
|
# want "make install" to recurse into gmock since we don't want to overwrite
|
|
|
|
# the installed version of gmock if there is one.
|
2009-04-21 21:00:39 +00:00
|
|
|
check-local:
|
2015-06-16 01:21:48 +00:00
|
|
|
@echo "Making lib/libgmock.a lib/libgmock_main.a in gmock"
|
2018-03-26 20:54:32 +00:00
|
|
|
@cd third_party/googletest/googletest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_main.la
|
|
|
|
@cd third_party/googletest/googlemock && $(MAKE) $(AM_MAKEFLAGS) lib/libgmock.la lib/libgmock_main.la
|
2009-04-21 21:00:39 +00:00
|
|
|
|
2015-06-16 01:21:48 +00:00
|
|
|
# We would like to clean gmock when "make clean" is invoked. But we have to
|
2009-04-21 21:00:39 +00:00
|
|
|
# be careful because clean-local is also invoked during "make distclean", but
|
2015-06-16 01:21:48 +00:00
|
|
|
# "make distclean" already recurses into gmock because it's listed among the
|
|
|
|
# DIST_SUBDIRS. distclean will delete gmock/Makefile, so if we then try to
|
2009-04-21 21:00:39 +00:00
|
|
|
# cd to the directory again and "make clean" it will fail. So, check that the
|
|
|
|
# Makefile exists before recursing.
|
|
|
|
clean-local:
|
2018-03-26 20:54:32 +00:00
|
|
|
@if test -e third_party/googletest/Makefile; then \
|
|
|
|
echo "Making clean in googletest"; \
|
|
|
|
cd third_party/googletest && $(MAKE) $(AM_MAKEFLAGS) clean; \
|
2015-04-02 00:23:48 +00:00
|
|
|
fi; \
|
|
|
|
if test -e conformance/Makefile; then \
|
|
|
|
echo "Making clean in conformance"; \
|
|
|
|
cd conformance && $(MAKE) $(AM_MAKEFLAGS) clean; \
|
2015-11-16 16:24:58 +00:00
|
|
|
fi; \
|
2016-04-28 01:22:22 +00:00
|
|
|
if test -e benchmarks/Makefile; then \
|
|
|
|
echo "Making clean in benchmarks"; \
|
|
|
|
cd benchmarks && $(MAKE) $(AM_MAKEFLAGS) clean; \
|
|
|
|
fi; \
|
2015-11-16 16:24:58 +00:00
|
|
|
if test -e objectivec/DevTools; then \
|
|
|
|
echo "Cleaning any ObjC pyc files"; \
|
|
|
|
rm -f objectivec/DevTools/*.pyc; \
|
2009-04-21 21:00:39 +00:00
|
|
|
fi
|
2008-07-10 02:12:20 +00:00
|
|
|
|
2009-08-03 21:31:25 +00:00
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = protobuf.pc protobuf-lite.pc
|
|
|
|
|
2015-07-16 18:24:48 +00:00
|
|
|
csharp_EXTRA_DIST= \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/.gitignore \
|
2015-07-16 18:24:48 +00:00
|
|
|
csharp/CHANGES.txt \
|
2018-06-21 21:53:31 +00:00
|
|
|
csharp/Google.Protobuf.Tools.targets \
|
2016-07-19 23:15:42 +00:00
|
|
|
csharp/Google.Protobuf.Tools.nuspec \
|
2015-07-16 18:24:48 +00:00
|
|
|
csharp/README.md \
|
|
|
|
csharp/build_packages.bat \
|
2016-10-06 17:23:34 +00:00
|
|
|
csharp/build_tools.sh \
|
2015-07-16 18:24:48 +00:00
|
|
|
csharp/buildall.sh \
|
|
|
|
csharp/generate_protos.sh \
|
2017-05-04 07:51:46 +00:00
|
|
|
csharp/global.json \
|
2015-08-02 21:27:01 +00:00
|
|
|
csharp/keys/Google.Protobuf.public.snk \
|
2016-07-19 23:15:42 +00:00
|
|
|
csharp/keys/Google.Protobuf.snk \
|
2015-08-02 21:27:01 +00:00
|
|
|
csharp/keys/README.md \
|
2017-11-10 09:50:02 +00:00
|
|
|
csharp/protos/README.md \
|
|
|
|
csharp/protos/map_unittest_proto3.proto \
|
2017-01-16 11:23:32 +00:00
|
|
|
csharp/protos/unittest_custom_options_proto3.proto \
|
2017-11-10 09:50:02 +00:00
|
|
|
csharp/protos/unittest_import_public_proto3.proto \
|
|
|
|
csharp/protos/unittest_import_proto3.proto \
|
2015-08-03 09:59:27 +00:00
|
|
|
csharp/protos/unittest_issues.proto \
|
2017-11-10 09:50:02 +00:00
|
|
|
csharp/protos/unittest_proto3.proto \
|
2015-07-16 18:24:48 +00:00
|
|
|
csharp/src/AddressBook/AddPerson.cs \
|
|
|
|
csharp/src/AddressBook/Addressbook.cs \
|
2017-05-04 07:51:46 +00:00
|
|
|
csharp/src/AddressBook/AddressBook.csproj \
|
2015-07-16 18:24:48 +00:00
|
|
|
csharp/src/AddressBook/ListPeople.cs \
|
|
|
|
csharp/src/AddressBook/Program.cs \
|
|
|
|
csharp/src/AddressBook/SampleUsage.cs \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf.Conformance/Conformance.cs \
|
2017-05-04 07:51:46 +00:00
|
|
|
csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf.Conformance/Program.cs \
|
2017-05-04 07:51:46 +00:00
|
|
|
csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf.JsonDump/Program.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/ByteStringTest.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \
|
2017-10-25 15:03:23 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/Collections/ProtobufEqualityComparersTest.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \
|
2017-02-13 23:34:35 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/Compatibility/StreamExtensionsTest.cs \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/EqualityTester.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \
|
2017-05-04 07:51:46 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/IssuesTest.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \
|
2015-09-04 11:41:14 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/JsonParserTest.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs \
|
2017-01-16 11:23:32 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/Reflection/CustomOptionsTest.cs \
|
2018-09-19 08:21:27 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/Reflection/DescriptorDeclarationTest.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs \
|
2015-12-22 22:36:04 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/SampleEnum.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/SampleMessages.cs \
|
2017-10-25 15:03:23 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/SampleNaNs.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/TestCornerCases.cs \
|
2016-07-19 23:15:42 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/TestProtos/ForeignMessagePartial.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs \
|
2016-12-03 16:51:25 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/TestProtos/TestMessagesProto3.cs \
|
2017-01-16 11:23:32 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/TestProtos/UnittestCustomOptionsProto3.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs \
|
|
|
|
csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs \
|
2015-09-04 10:22:34 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \
|
2016-07-19 23:15:42 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/WellKnownTypes/FieldMaskTest.cs \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \
|
2017-12-13 21:48:58 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/UnknownFieldSetTest.cs \
|
2018-09-19 08:21:27 +00:00
|
|
|
csharp/src/Google.Protobuf.Test/testprotos.pb \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf.sln \
|
|
|
|
csharp/src/Google.Protobuf/ByteArray.cs \
|
|
|
|
csharp/src/Google.Protobuf/ByteString.cs \
|
|
|
|
csharp/src/Google.Protobuf/CodedInputStream.cs \
|
|
|
|
csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \
|
|
|
|
csharp/src/Google.Protobuf/CodedOutputStream.cs \
|
2017-12-13 21:48:58 +00:00
|
|
|
csharp/src/Google.Protobuf/Collections/Lists.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/Collections/MapField.cs \
|
2017-10-25 15:03:23 +00:00
|
|
|
csharp/src/Google.Protobuf/Collections/ProtobufEqualityComparers.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \
|
|
|
|
csharp/src/Google.Protobuf/Collections/RepeatedField.cs \
|
2018-03-27 07:44:42 +00:00
|
|
|
csharp/src/Google.Protobuf/Compatibility/MethodInfoExtensions.cs \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \
|
2017-02-13 23:34:35 +00:00
|
|
|
csharp/src/Google.Protobuf/Compatibility/StreamExtensions.cs \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/FieldCodec.cs \
|
|
|
|
csharp/src/Google.Protobuf/FrameworkPortability.cs \
|
2017-05-04 07:51:46 +00:00
|
|
|
csharp/src/Google.Protobuf/Google.Protobuf.csproj \
|
2016-07-19 23:15:42 +00:00
|
|
|
csharp/src/Google.Protobuf/ICustomDiagnosticMessage.cs \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf/IDeepCloneable.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/IMessage.cs \
|
2015-11-04 11:49:15 +00:00
|
|
|
csharp/src/Google.Protobuf/InvalidJsonException.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \
|
|
|
|
csharp/src/Google.Protobuf/JsonFormatter.cs \
|
2015-09-04 11:41:14 +00:00
|
|
|
csharp/src/Google.Protobuf/JsonParser.cs \
|
|
|
|
csharp/src/Google.Protobuf/JsonToken.cs \
|
|
|
|
csharp/src/Google.Protobuf/JsonTokenizer.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/LimitedInputStream.cs \
|
|
|
|
csharp/src/Google.Protobuf/MessageExtensions.cs \
|
|
|
|
csharp/src/Google.Protobuf/MessageParser.cs \
|
2016-02-04 06:51:54 +00:00
|
|
|
csharp/src/Google.Protobuf/ProtoPreconditions.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \
|
2017-01-16 11:23:32 +00:00
|
|
|
csharp/src/Google.Protobuf/Reflection/CustomOptions.cs \
|
2015-11-05 09:13:53 +00:00
|
|
|
csharp/src/Google.Protobuf/Reflection/Descriptor.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \
|
2018-09-19 08:21:27 +00:00
|
|
|
csharp/src/Google.Protobuf/Reflection/DescriptorDeclaration.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/FieldType.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \
|
2016-02-04 07:05:49 +00:00
|
|
|
csharp/src/Google.Protobuf/Reflection/GeneratedClrTypeInfo.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \
|
2016-04-08 11:19:10 +00:00
|
|
|
csharp/src/Google.Protobuf/Reflection/OriginalNameAttribute.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \
|
|
|
|
csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \
|
2015-12-22 22:36:04 +00:00
|
|
|
csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \
|
2015-09-04 10:22:34 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \
|
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \
|
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \
|
2016-07-19 23:15:42 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \
|
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \
|
2015-08-27 03:19:05 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \
|
2015-12-22 22:36:04 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs \
|
2015-07-17 09:14:29 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \
|
2015-12-22 22:36:04 +00:00
|
|
|
csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs \
|
2017-12-13 21:48:58 +00:00
|
|
|
csharp/src/Google.Protobuf/WireFormat.cs \
|
|
|
|
csharp/src/Google.Protobuf/UnknownField.cs \
|
|
|
|
csharp/src/Google.Protobuf/UnknownFieldSet.cs
|
2015-05-26 00:06:18 +00:00
|
|
|
|
2016-01-14 22:29:51 +00:00
|
|
|
java_EXTRA_DIST= \
|
|
|
|
java/README.md \
|
|
|
|
java/core/generate-sources-build.xml \
|
|
|
|
java/core/generate-test-sources-build.xml \
|
|
|
|
java/core/pom.xml \
|
|
|
|
java/core/src/main/java/com/google/protobuf/AbstractMessage.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/AbstractParser.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java \
|
2017-12-01 18:59:52 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/Android.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/BlockingService.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/BooleanArrayList.java \
|
2016-03-30 18:39:59 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/ByteOutput.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/ByteString.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/CodedInputStream.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/CodedOutputStream.java \
|
2017-07-19 21:32:22 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/DiscardUnknownFieldsParser.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/Descriptors.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/DoubleArrayList.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/DynamicMessage.java \
|
2016-07-19 23:15:42 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/ExperimentalApi.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/Extension.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/ExtensionLite.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java \
|
2016-06-29 22:23:27 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/ExtensionRegistryFactory.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/FieldSet.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/FloatArrayList.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/GeneratedMessage.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java \
|
2016-07-19 23:15:42 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/GeneratedMessageV3.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/IntArrayList.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/Internal.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \
|
2017-09-12 17:32:01 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/IterableByteBufferInputStream.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/LazyField.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/LazyFieldLite.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/LazyStringList.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/LongArrayList.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/MapEntry.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/MapEntryLite.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/MapField.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/MapFieldLite.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/Message.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/MessageLite.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/MessageLiteToString.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/MessageReflection.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/MutabilityOracle.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/NioByteString.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/Parser.java \
|
2017-03-29 21:32:48 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/PrimitiveNonBoxingCollection.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/ProtocolStringList.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \
|
2016-07-19 23:15:42 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/RopeByteString.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/RpcCallback.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/RpcChannel.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/RpcController.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/RpcUtil.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/Service.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/ServiceException.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java \
|
2016-07-19 23:15:42 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/SingleFieldBuilderV3.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/SmallSortedMap.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/TextFormat.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java \
|
2016-03-30 18:39:59 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \
|
2016-01-29 21:51:05 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java \
|
2016-07-19 23:15:42 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/UnsafeUtil.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/main/java/com/google/protobuf/Utf8.java \
|
|
|
|
java/core/src/main/java/com/google/protobuf/WireFormat.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/AnyTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java \
|
2016-03-30 18:39:59 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/ByteStringTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \
|
2017-10-31 06:12:11 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/DecodeUtf8Test.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/DescriptorsTest.java \
|
2017-07-19 21:32:22 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/DiscardUnknownFieldsTest.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java \
|
2016-03-30 18:39:59 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/EnumTest.java \
|
2016-06-29 22:23:27 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/ExtensionRegistryFactoryTest.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/IntArrayListTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/LazyFieldTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/LiteTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/LongArrayListTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/MapForProto2Test.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/MapTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/MessageTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/NioByteStringTest.java \
|
2016-07-19 23:15:42 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/ParseExceptionsTest.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/ParserTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \
|
2016-07-19 23:15:42 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderV3Test.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/ServiceTest.java \
|
2016-07-19 23:15:42 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/SingleFieldBuilderV3Test.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java \
|
2017-07-19 21:38:57 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/TestBadIdentifiersLite.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/TestUtil.java \
|
2016-07-19 23:15:42 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/TestUtilLite.java \
|
2016-03-30 18:39:59 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/test/java/com/google/protobuf/TextFormatTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java \
|
|
|
|
java/core/src/test/java/com/google/protobuf/WireFormatTest.java \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/any_test.proto \
|
2017-08-31 18:11:21 +00:00
|
|
|
java/core/src/test/proto/com/google/protobuf/deprecated_file.proto \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/test/proto/com/google/protobuf/field_presence_test.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/lazy_fields_lite.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/lite_equals_and_hash.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/map_for_proto2_lite_test.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/map_for_proto2_test.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/map_initialization_order_test.proto \
|
2018-03-19 22:38:34 +00:00
|
|
|
java/core/src/test/proto/com/google/protobuf/map_lite_test.proto \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/core/src/test/proto/com/google/protobuf/map_test.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/multiple_files_test.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/nested_builders_test.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/nested_extension.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/nested_extension_lite.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/test_custom_options.proto \
|
|
|
|
java/core/src/test/proto/com/google/protobuf/test_extra_interfaces.proto \
|
2018-04-17 22:44:55 +00:00
|
|
|
java/lite.md \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/pom.xml \
|
|
|
|
java/util/pom.xml \
|
2016-07-19 23:15:42 +00:00
|
|
|
java/util/src/main/java/com/google/protobuf/util/Durations.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java \
|
|
|
|
java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java \
|
|
|
|
java/util/src/main/java/com/google/protobuf/util/JsonFormat.java \
|
|
|
|
java/util/src/main/java/com/google/protobuf/util/TimeUtil.java \
|
2016-07-19 23:15:42 +00:00
|
|
|
java/util/src/main/java/com/google/protobuf/util/Timestamps.java \
|
2016-01-14 22:29:51 +00:00
|
|
|
java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java \
|
|
|
|
java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java \
|
|
|
|
java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java \
|
|
|
|
java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java \
|
|
|
|
java/util/src/test/proto/com/google/protobuf/util/json_test.proto
|
2014-12-02 22:15:26 +00:00
|
|
|
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec_EXTRA_DIST= \
|
2015-05-21 21:14:52 +00:00
|
|
|
objectivec/DevTools/check_version_stamps.sh \
|
2015-08-27 03:19:05 +00:00
|
|
|
objectivec/DevTools/compile_testing_protos.sh \
|
2015-05-25 19:48:03 +00:00
|
|
|
objectivec/DevTools/full_mac_build.sh \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/DevTools/pddm.py \
|
|
|
|
objectivec/DevTools/pddm_tests.py \
|
2016-03-17 14:04:21 +00:00
|
|
|
objectivec/generate_well_known_types.sh \
|
2015-05-25 20:08:09 +00:00
|
|
|
objectivec/google/protobuf/Any.pbobjc.h \
|
|
|
|
objectivec/google/protobuf/Any.pbobjc.m \
|
|
|
|
objectivec/google/protobuf/Api.pbobjc.h \
|
|
|
|
objectivec/google/protobuf/Api.pbobjc.m \
|
|
|
|
objectivec/google/protobuf/Duration.pbobjc.h \
|
|
|
|
objectivec/google/protobuf/Duration.pbobjc.m \
|
|
|
|
objectivec/google/protobuf/Empty.pbobjc.h \
|
|
|
|
objectivec/google/protobuf/Empty.pbobjc.m \
|
|
|
|
objectivec/google/protobuf/FieldMask.pbobjc.h \
|
|
|
|
objectivec/google/protobuf/FieldMask.pbobjc.m \
|
|
|
|
objectivec/google/protobuf/SourceContext.pbobjc.h \
|
|
|
|
objectivec/google/protobuf/SourceContext.pbobjc.m \
|
|
|
|
objectivec/google/protobuf/Struct.pbobjc.h \
|
|
|
|
objectivec/google/protobuf/Struct.pbobjc.m \
|
|
|
|
objectivec/google/protobuf/Timestamp.pbobjc.h \
|
|
|
|
objectivec/google/protobuf/Timestamp.pbobjc.m \
|
|
|
|
objectivec/google/protobuf/Type.pbobjc.h \
|
|
|
|
objectivec/google/protobuf/Type.pbobjc.m \
|
|
|
|
objectivec/google/protobuf/Wrappers.pbobjc.h \
|
|
|
|
objectivec/google/protobuf/Wrappers.pbobjc.m \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/GPBArray.h \
|
|
|
|
objectivec/GPBArray.m \
|
|
|
|
objectivec/GPBArray_PackagePrivate.h \
|
|
|
|
objectivec/GPBBootstrap.h \
|
|
|
|
objectivec/GPBCodedInputStream.h \
|
|
|
|
objectivec/GPBCodedInputStream.m \
|
|
|
|
objectivec/GPBCodedInputStream_PackagePrivate.h \
|
|
|
|
objectivec/GPBCodedOutputStream.h \
|
|
|
|
objectivec/GPBCodedOutputStream.m \
|
2016-03-08 14:29:49 +00:00
|
|
|
objectivec/GPBCodedOutputStream_PackagePrivate.h \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/GPBDescriptor.h \
|
|
|
|
objectivec/GPBDescriptor.m \
|
|
|
|
objectivec/GPBDescriptor_PackagePrivate.h \
|
|
|
|
objectivec/GPBDictionary.h \
|
|
|
|
objectivec/GPBDictionary.m \
|
|
|
|
objectivec/GPBDictionary_PackagePrivate.h \
|
2015-06-08 20:24:57 +00:00
|
|
|
objectivec/GPBExtensionInternals.h \
|
|
|
|
objectivec/GPBExtensionInternals.m \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/GPBExtensionRegistry.h \
|
|
|
|
objectivec/GPBExtensionRegistry.m \
|
|
|
|
objectivec/GPBMessage.h \
|
|
|
|
objectivec/GPBMessage.m \
|
|
|
|
objectivec/GPBMessage_PackagePrivate.h \
|
|
|
|
objectivec/GPBProtocolBuffers.h \
|
|
|
|
objectivec/GPBProtocolBuffers.m \
|
|
|
|
objectivec/GPBProtocolBuffers_RuntimeSupport.h \
|
|
|
|
objectivec/GPBRootObject.h \
|
|
|
|
objectivec/GPBRootObject.m \
|
|
|
|
objectivec/GPBRootObject_PackagePrivate.h \
|
2015-06-08 20:24:57 +00:00
|
|
|
objectivec/GPBRuntimeTypes.h \
|
|
|
|
objectivec/GPBUnknownField.h \
|
|
|
|
objectivec/GPBUnknownField.m \
|
|
|
|
objectivec/GPBUnknownField_PackagePrivate.h \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/GPBUnknownFieldSet.h \
|
|
|
|
objectivec/GPBUnknownFieldSet.m \
|
|
|
|
objectivec/GPBUnknownFieldSet_PackagePrivate.h \
|
|
|
|
objectivec/GPBUtilities.h \
|
|
|
|
objectivec/GPBUtilities.m \
|
|
|
|
objectivec/GPBUtilities_PackagePrivate.h \
|
|
|
|
objectivec/GPBWellKnownTypes.h \
|
|
|
|
objectivec/GPBWellKnownTypes.m \
|
|
|
|
objectivec/GPBWireFormat.h \
|
|
|
|
objectivec/GPBWireFormat.m \
|
|
|
|
objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \
|
|
|
|
objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
|
2018-04-06 14:41:28 +00:00
|
|
|
objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
|
|
|
|
objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
|
|
|
|
objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
|
|
|
|
objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \
|
|
|
|
objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
|
2018-04-06 14:41:28 +00:00
|
|
|
objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings \
|
|
|
|
objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTests.xcscheme \
|
|
|
|
objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffers.xcscheme \
|
2015-05-25 19:48:03 +00:00
|
|
|
objectivec/README.md \
|
2016-07-19 23:15:42 +00:00
|
|
|
objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.pbxproj \
|
|
|
|
objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
|
|
|
|
objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/OSXCocoaPodsTester.xcscheme \
|
|
|
|
objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.h \
|
|
|
|
objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.m \
|
|
|
|
objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \
|
|
|
|
objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Base.lproj/MainMenu.xib \
|
|
|
|
objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Info.plist \
|
|
|
|
objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/main.m \
|
|
|
|
objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-framework \
|
|
|
|
objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-static \
|
|
|
|
objectivec/Tests/CocoaPods/README.md \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-framework \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-static \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.pbxproj \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/xcshareddata/xcschemes/iOSCocoaPodsTester.xcscheme \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.h \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.m \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Assets.xcassets/AppIcon.appiconset/Contents.json \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/LaunchScreen.storyboard \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/Main.storyboard \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Info.plist \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.h \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewController.m \
|
|
|
|
objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/main.m \
|
|
|
|
objectivec/Tests/CocoaPods/run_tests.sh \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/Tests/golden_message \
|
|
|
|
objectivec/Tests/golden_packed_fields_message \
|
|
|
|
objectivec/Tests/GPBARCUnittestProtos.m \
|
|
|
|
objectivec/Tests/GPBArrayTests.m \
|
|
|
|
objectivec/Tests/GPBCodedInputStreamTests.m \
|
|
|
|
objectivec/Tests/GPBCodedOuputStreamTests.m \
|
2018-03-28 16:27:15 +00:00
|
|
|
objectivec/Tests/GPBCompileTest01.m \
|
|
|
|
objectivec/Tests/GPBCompileTest02.m \
|
|
|
|
objectivec/Tests/GPBCompileTest03.m \
|
|
|
|
objectivec/Tests/GPBCompileTest04.m \
|
|
|
|
objectivec/Tests/GPBCompileTest05.m \
|
|
|
|
objectivec/Tests/GPBCompileTest06.m \
|
|
|
|
objectivec/Tests/GPBCompileTest07.m \
|
|
|
|
objectivec/Tests/GPBCompileTest08.m \
|
|
|
|
objectivec/Tests/GPBCompileTest09.m \
|
|
|
|
objectivec/Tests/GPBCompileTest10.m \
|
|
|
|
objectivec/Tests/GPBCompileTest11.m \
|
|
|
|
objectivec/Tests/GPBCompileTest12.m \
|
|
|
|
objectivec/Tests/GPBCompileTest13.m \
|
|
|
|
objectivec/Tests/GPBCompileTest14.m \
|
|
|
|
objectivec/Tests/GPBCompileTest15.m \
|
|
|
|
objectivec/Tests/GPBCompileTest16.m \
|
|
|
|
objectivec/Tests/GPBCompileTest17.m \
|
|
|
|
objectivec/Tests/GPBCompileTest18.m \
|
|
|
|
objectivec/Tests/GPBCompileTest19.m \
|
|
|
|
objectivec/Tests/GPBCompileTest20.m \
|
|
|
|
objectivec/Tests/GPBCompileTest21.m \
|
|
|
|
objectivec/Tests/GPBCompileTest22.m \
|
|
|
|
objectivec/Tests/GPBCompileTest23.m \
|
|
|
|
objectivec/Tests/GPBCompileTest24.m \
|
|
|
|
objectivec/Tests/GPBCompileTest25.m \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/Tests/GPBConcurrencyTests.m \
|
|
|
|
objectivec/Tests/GPBDescriptorTests.m \
|
|
|
|
objectivec/Tests/GPBDictionaryTests+Bool.m \
|
|
|
|
objectivec/Tests/GPBDictionaryTests+Int32.m \
|
|
|
|
objectivec/Tests/GPBDictionaryTests+Int64.m \
|
|
|
|
objectivec/Tests/GPBDictionaryTests+String.m \
|
|
|
|
objectivec/Tests/GPBDictionaryTests+UInt32.m \
|
|
|
|
objectivec/Tests/GPBDictionaryTests+UInt64.m \
|
2017-01-04 20:03:42 +00:00
|
|
|
objectivec/Tests/GPBDictionaryTests.m \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/Tests/GPBDictionaryTests.pddm \
|
2017-05-17 17:38:51 +00:00
|
|
|
objectivec/Tests/GPBExtensionRegistryTest.m \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/Tests/GPBMessageTests+Merge.m \
|
|
|
|
objectivec/Tests/GPBMessageTests+Runtime.m \
|
|
|
|
objectivec/Tests/GPBMessageTests+Serialization.m \
|
|
|
|
objectivec/Tests/GPBMessageTests.m \
|
2015-09-30 17:34:16 +00:00
|
|
|
objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/Tests/GPBPerfTests.m \
|
|
|
|
objectivec/Tests/GPBSwiftTests.swift \
|
|
|
|
objectivec/Tests/GPBTestUtilities.h \
|
|
|
|
objectivec/Tests/GPBTestUtilities.m \
|
|
|
|
objectivec/Tests/GPBUnittestProtos.m \
|
2016-09-01 15:45:50 +00:00
|
|
|
objectivec/Tests/GPBUnittestProtos2.m \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/Tests/GPBUnknownFieldSetTest.m \
|
|
|
|
objectivec/Tests/GPBUtilitiesTests.m \
|
|
|
|
objectivec/Tests/GPBWellKnownTypesTest.m \
|
|
|
|
objectivec/Tests/GPBWireFormatTests.m \
|
|
|
|
objectivec/Tests/text_format_map_unittest_data.txt \
|
|
|
|
objectivec/Tests/text_format_unittest_data.txt \
|
|
|
|
objectivec/Tests/unittest_cycle.proto \
|
2016-12-08 15:14:11 +00:00
|
|
|
objectivec/Tests/unittest_deprecated.proto \
|
|
|
|
objectivec/Tests/unittest_deprecated_file.proto \
|
2016-09-01 15:45:50 +00:00
|
|
|
objectivec/Tests/unittest_extension_chain_a.proto \
|
|
|
|
objectivec/Tests/unittest_extension_chain_b.proto \
|
|
|
|
objectivec/Tests/unittest_extension_chain_c.proto \
|
|
|
|
objectivec/Tests/unittest_extension_chain_d.proto \
|
|
|
|
objectivec/Tests/unittest_extension_chain_e.proto \
|
|
|
|
objectivec/Tests/unittest_extension_chain_f.proto \
|
|
|
|
objectivec/Tests/unittest_extension_chain_g.proto \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/Tests/unittest_objc.proto \
|
2015-08-27 01:15:39 +00:00
|
|
|
objectivec/Tests/unittest_objc_startup.proto \
|
2015-05-01 12:57:16 +00:00
|
|
|
objectivec/Tests/unittest_runtime_proto2.proto \
|
|
|
|
objectivec/Tests/unittest_runtime_proto3.proto \
|
|
|
|
objectivec/Tests/UnitTests-Bridging-Header.h \
|
2015-05-15 05:38:52 +00:00
|
|
|
objectivec/Tests/UnitTests-Info.plist \
|
|
|
|
Protobuf.podspec
|
2015-02-21 22:58:02 +00:00
|
|
|
|
2016-12-08 19:16:49 +00:00
|
|
|
php_EXTRA_DIST= \
|
2017-10-06 04:03:57 +00:00
|
|
|
composer.json \
|
|
|
|
php/README.md \
|
|
|
|
php/composer.json \
|
2017-03-17 18:08:06 +00:00
|
|
|
php/ext/google/protobuf/array.c \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/ext/google/protobuf/config.m4 \
|
|
|
|
php/ext/google/protobuf/def.c \
|
2017-03-17 18:08:06 +00:00
|
|
|
php/ext/google/protobuf/encode_decode.c \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/ext/google/protobuf/map.c \
|
|
|
|
php/ext/google/protobuf/message.c \
|
|
|
|
php/ext/google/protobuf/package.xml \
|
|
|
|
php/ext/google/protobuf/protobuf.c \
|
2017-03-17 18:08:06 +00:00
|
|
|
php/ext/google/protobuf/protobuf.h \
|
|
|
|
php/ext/google/protobuf/storage.c \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/ext/google/protobuf/type_check.c \
|
2017-03-17 18:08:06 +00:00
|
|
|
php/ext/google/protobuf/upb.c \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/ext/google/protobuf/upb.h \
|
|
|
|
php/ext/google/protobuf/utf8.c \
|
|
|
|
php/ext/google/protobuf/utf8.h \
|
|
|
|
php/generate_descriptor_protos.sh \
|
|
|
|
php/phpunit.xml \
|
|
|
|
php/src/GPBMetadata/Google/Protobuf/Any.php \
|
|
|
|
php/src/GPBMetadata/Google/Protobuf/Api.php \
|
|
|
|
php/src/GPBMetadata/Google/Protobuf/Duration.php \
|
|
|
|
php/src/GPBMetadata/Google/Protobuf/FieldMask.php \
|
|
|
|
php/src/GPBMetadata/Google/Protobuf/GPBEmpty.php \
|
|
|
|
php/src/GPBMetadata/Google/Protobuf/Internal/Descriptor.php \
|
|
|
|
php/src/GPBMetadata/Google/Protobuf/SourceContext.php \
|
|
|
|
php/src/GPBMetadata/Google/Protobuf/Struct.php \
|
|
|
|
php/src/GPBMetadata/Google/Protobuf/Timestamp.php \
|
|
|
|
php/src/GPBMetadata/Google/Protobuf/Type.php \
|
|
|
|
php/src/GPBMetadata/Google/Protobuf/Wrappers.php \
|
2017-08-25 15:49:34 +00:00
|
|
|
php/src/Google/Protobuf/Any.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Api.php \
|
|
|
|
php/src/Google/Protobuf/BoolValue.php \
|
|
|
|
php/src/Google/Protobuf/BytesValue.php \
|
2017-08-04 23:35:22 +00:00
|
|
|
php/src/Google/Protobuf/Descriptor.php \
|
|
|
|
php/src/Google/Protobuf/DescriptorPool.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/DoubleValue.php \
|
2017-09-05 21:10:32 +00:00
|
|
|
php/src/Google/Protobuf/Duration.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Enum.php \
|
2017-08-04 23:35:22 +00:00
|
|
|
php/src/Google/Protobuf/EnumDescriptor.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/EnumValue.php \
|
2017-08-04 23:35:22 +00:00
|
|
|
php/src/Google/Protobuf/EnumValueDescriptor.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Field.php \
|
2017-08-04 23:35:22 +00:00
|
|
|
php/src/Google/Protobuf/FieldDescriptor.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/FieldMask.php \
|
2018-05-23 23:43:30 +00:00
|
|
|
php/src/Google/Protobuf/Field/Cardinality.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Field_Cardinality.php \
|
2018-05-23 23:43:30 +00:00
|
|
|
php/src/Google/Protobuf/Field/Kind.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Field_Kind.php \
|
|
|
|
php/src/Google/Protobuf/FloatValue.php \
|
|
|
|
php/src/Google/Protobuf/GPBEmpty.php \
|
|
|
|
php/src/Google/Protobuf/Int32Value.php \
|
|
|
|
php/src/Google/Protobuf/Int64Value.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/CodedInputStream.php \
|
|
|
|
php/src/Google/Protobuf/Internal/CodedOutputStream.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Internal/Descriptor.php \
|
2016-12-08 19:16:49 +00:00
|
|
|
php/src/Google/Protobuf/Internal/DescriptorPool.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Internal/DescriptorProto.php \
|
2018-05-23 23:43:30 +00:00
|
|
|
php/src/Google/Protobuf/Internal/DescriptorProto/ExtensionRange.php \
|
|
|
|
php/src/Google/Protobuf/Internal/DescriptorProto/ReservedRange.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/EnumBuilderContext.php \
|
2017-06-14 22:57:11 +00:00
|
|
|
php/src/Google/Protobuf/Internal/EnumDescriptor.php \
|
2016-12-08 19:16:49 +00:00
|
|
|
php/src/Google/Protobuf/Internal/EnumDescriptorProto.php \
|
2018-05-23 23:43:30 +00:00
|
|
|
php/src/Google/Protobuf/Internal/EnumDescriptorProto/EnumReservedRange.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/EnumOptions.php \
|
|
|
|
php/src/Google/Protobuf/Internal/EnumValueDescriptorProto.php \
|
|
|
|
php/src/Google/Protobuf/Internal/EnumValueOptions.php \
|
2017-08-30 23:50:07 +00:00
|
|
|
php/src/Google/Protobuf/Internal/ExtensionRangeOptions.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \
|
|
|
|
php/src/Google/Protobuf/Internal/FieldDescriptor.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Internal/FieldDescriptorProto.php \
|
2018-05-23 23:43:30 +00:00
|
|
|
php/src/Google/Protobuf/Internal/FieldDescriptorProto/Label.php \
|
|
|
|
php/src/Google/Protobuf/Internal/FieldDescriptorProto/Type.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Internal/FieldOptions.php \
|
2018-05-23 23:43:30 +00:00
|
|
|
php/src/Google/Protobuf/Internal/FieldOptions/CType.php \
|
|
|
|
php/src/Google/Protobuf/Internal/FieldOptions/JSType.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Internal/FileDescriptor.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/FileDescriptorProto.php \
|
|
|
|
php/src/Google/Protobuf/Internal/FileDescriptorSet.php \
|
|
|
|
php/src/Google/Protobuf/Internal/FileOptions.php \
|
2018-05-23 23:43:30 +00:00
|
|
|
php/src/Google/Protobuf/Internal/FileOptions/OptimizeMode.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/GPBDecodeException.php \
|
|
|
|
php/src/Google/Protobuf/Internal/GPBJsonWire.php \
|
|
|
|
php/src/Google/Protobuf/Internal/GPBLabel.php \
|
2016-12-08 19:16:49 +00:00
|
|
|
php/src/Google/Protobuf/Internal/GPBType.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/GPBUtil.php \
|
|
|
|
php/src/Google/Protobuf/Internal/GPBWire.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Internal/GPBWireType.php \
|
|
|
|
php/src/Google/Protobuf/Internal/GeneratedCodeInfo.php \
|
2018-05-23 23:43:30 +00:00
|
|
|
php/src/Google/Protobuf/Internal/GeneratedCodeInfo/Annotation.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Internal/GetPublicDescriptorTrait.php \
|
2017-08-04 23:35:22 +00:00
|
|
|
php/src/Google/Protobuf/Internal/HasPublicDescriptorTrait.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/MapEntry.php \
|
|
|
|
php/src/Google/Protobuf/Internal/MapField.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Internal/MapFieldIter.php \
|
|
|
|
php/src/Google/Protobuf/Internal/Message.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/MessageBuilderContext.php \
|
|
|
|
php/src/Google/Protobuf/Internal/MessageOptions.php \
|
|
|
|
php/src/Google/Protobuf/Internal/MethodDescriptorProto.php \
|
|
|
|
php/src/Google/Protobuf/Internal/MethodOptions.php \
|
2018-05-23 23:43:30 +00:00
|
|
|
php/src/Google/Protobuf/Internal/MethodOptions/IdempotencyLevel.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/OneofDescriptor.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Internal/OneofDescriptorProto.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/OneofField.php \
|
|
|
|
php/src/Google/Protobuf/Internal/OneofOptions.php \
|
|
|
|
php/src/Google/Protobuf/Internal/RawInputStream.php \
|
|
|
|
php/src/Google/Protobuf/Internal/RepeatedField.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/Internal/RepeatedFieldIter.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/ServiceDescriptorProto.php \
|
|
|
|
php/src/Google/Protobuf/Internal/ServiceOptions.php \
|
2016-12-08 19:16:49 +00:00
|
|
|
php/src/Google/Protobuf/Internal/SourceCodeInfo.php \
|
2018-05-23 23:43:30 +00:00
|
|
|
php/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/src/Google/Protobuf/Internal/UninterpretedOption.php \
|
2018-05-23 23:43:30 +00:00
|
|
|
php/src/Google/Protobuf/Internal/UninterpretedOption/NamePart.php \
|
2018-08-10 04:21:01 +00:00
|
|
|
php/src/Google/Protobuf/Internal/DescriptorProto_ExtensionRange.php \
|
|
|
|
php/src/Google/Protobuf/Internal/DescriptorProto_ReservedRange.php \
|
|
|
|
php/src/Google/Protobuf/Internal/EnumDescriptorProto_EnumReservedRange.php \
|
|
|
|
php/src/Google/Protobuf/Internal/FieldDescriptorProto_Label.php \
|
|
|
|
php/src/Google/Protobuf/Internal/FieldDescriptorProto_Type.php \
|
|
|
|
php/src/Google/Protobuf/Internal/FieldOptions_CType.php \
|
|
|
|
php/src/Google/Protobuf/Internal/FieldOptions_JSType.php \
|
|
|
|
php/src/Google/Protobuf/Internal/FileOptions_OptimizeMode.php \
|
|
|
|
php/src/Google/Protobuf/Internal/GeneratedCodeInfo_Annotation.php \
|
|
|
|
php/src/Google/Protobuf/Internal/MethodOptions_IdempotencyLevel.php \
|
|
|
|
php/src/Google/Protobuf/Internal/SourceCodeInfo_Location.php \
|
|
|
|
php/src/Google/Protobuf/Internal/UninterpretedOption_NamePart.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/src/Google/Protobuf/ListValue.php \
|
|
|
|
php/src/Google/Protobuf/Method.php \
|
|
|
|
php/src/Google/Protobuf/Mixin.php \
|
|
|
|
php/src/Google/Protobuf/NullValue.php \
|
|
|
|
php/src/Google/Protobuf/OneofDescriptor.php \
|
|
|
|
php/src/Google/Protobuf/Option.php \
|
|
|
|
php/src/Google/Protobuf/SourceContext.php \
|
|
|
|
php/src/Google/Protobuf/StringValue.php \
|
|
|
|
php/src/Google/Protobuf/Struct.php \
|
|
|
|
php/src/Google/Protobuf/Syntax.php \
|
|
|
|
php/src/Google/Protobuf/Timestamp.php \
|
|
|
|
php/src/Google/Protobuf/Type.php \
|
|
|
|
php/src/Google/Protobuf/UInt32Value.php \
|
|
|
|
php/src/Google/Protobuf/UInt64Value.php \
|
|
|
|
php/src/Google/Protobuf/Value.php \
|
|
|
|
php/src/phpdoc.dist.xml \
|
2017-03-17 18:08:06 +00:00
|
|
|
php/tests/array_test.php \
|
2016-12-08 19:16:49 +00:00
|
|
|
php/tests/autoload.php \
|
2017-09-22 21:08:01 +00:00
|
|
|
php/tests/bootstrap_phpunit.php \
|
2017-05-05 18:14:11 +00:00
|
|
|
php/tests/compatibility_test.sh \
|
2017-08-02 14:42:27 +00:00
|
|
|
php/tests/descriptors_test.php \
|
2016-12-08 19:16:49 +00:00
|
|
|
php/tests/encode_decode_test.php \
|
|
|
|
php/tests/gdb_test.sh \
|
|
|
|
php/tests/generated_class_test.php \
|
2017-06-27 23:28:28 +00:00
|
|
|
php/tests/generated_phpdoc_test.php \
|
2017-07-18 14:45:18 +00:00
|
|
|
php/tests/generated_service_test.php \
|
2017-03-17 18:08:06 +00:00
|
|
|
php/tests/map_field_test.php \
|
|
|
|
php/tests/memory_leak_test.php \
|
2016-12-08 19:16:49 +00:00
|
|
|
php/tests/php_implementation_test.php \
|
2018-05-23 23:43:30 +00:00
|
|
|
php/tests/proto/empty/echo.proto \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/tests/proto/test.proto \
|
2017-08-02 14:42:27 +00:00
|
|
|
php/tests/proto/test_descriptors.proto \
|
2017-06-05 07:10:18 +00:00
|
|
|
php/tests/proto/test_empty_php_namespace.proto \
|
2017-04-20 23:55:56 +00:00
|
|
|
php/tests/proto/test_import_descriptor_proto.proto \
|
2016-12-08 19:16:49 +00:00
|
|
|
php/tests/proto/test_include.proto \
|
|
|
|
php/tests/proto/test_no_namespace.proto \
|
2017-06-05 07:10:18 +00:00
|
|
|
php/tests/proto/test_php_namespace.proto \
|
|
|
|
php/tests/proto/test_prefix.proto \
|
2017-09-08 22:11:49 +00:00
|
|
|
php/tests/proto/test_reserved_enum_lower.proto \
|
|
|
|
php/tests/proto/test_reserved_enum_upper.proto \
|
2017-09-12 22:04:34 +00:00
|
|
|
php/tests/proto/test_reserved_enum_value_lower.proto \
|
|
|
|
php/tests/proto/test_reserved_enum_value_upper.proto \
|
2017-09-08 22:11:49 +00:00
|
|
|
php/tests/proto/test_reserved_message_lower.proto \
|
|
|
|
php/tests/proto/test_reserved_message_upper.proto \
|
2017-07-18 14:45:18 +00:00
|
|
|
php/tests/proto/test_service.proto \
|
|
|
|
php/tests/proto/test_service_namespace.proto \
|
2017-03-17 18:08:06 +00:00
|
|
|
php/tests/test.sh \
|
|
|
|
php/tests/test_base.php \
|
2016-12-08 19:16:49 +00:00
|
|
|
php/tests/test_util.php \
|
2017-06-30 19:14:09 +00:00
|
|
|
php/tests/undefined_test.php \
|
2017-10-06 04:03:57 +00:00
|
|
|
php/tests/well_known_test.php
|
2016-09-24 01:37:37 +00:00
|
|
|
|
2014-12-02 22:15:26 +00:00
|
|
|
python_EXTRA_DIST= \
|
2015-05-26 05:21:05 +00:00
|
|
|
python/MANIFEST.in \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/__init__.py \
|
|
|
|
python/google/protobuf/__init__.py \
|
2018-04-09 19:43:10 +00:00
|
|
|
python/google/protobuf/compiler/__init__.py \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/descriptor.py \
|
|
|
|
python/google/protobuf/descriptor_database.py \
|
|
|
|
python/google/protobuf/descriptor_pool.py \
|
|
|
|
python/google/protobuf/internal/__init__.py \
|
|
|
|
python/google/protobuf/internal/_parameterized.py \
|
|
|
|
python/google/protobuf/internal/any_test.proto \
|
2015-12-12 01:09:20 +00:00
|
|
|
python/google/protobuf/internal/any_test.proto \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/internal/api_implementation.cc \
|
|
|
|
python/google/protobuf/internal/api_implementation.py \
|
2008-11-21 00:06:27 +00:00
|
|
|
python/google/protobuf/internal/containers.py \
|
2008-07-10 02:12:20 +00:00
|
|
|
python/google/protobuf/internal/decoder.py \
|
2012-12-04 18:44:24 +00:00
|
|
|
python/google/protobuf/internal/descriptor_database_test.py \
|
|
|
|
python/google/protobuf/internal/descriptor_pool_test.py \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/internal/descriptor_pool_test1.proto \
|
|
|
|
python/google/protobuf/internal/descriptor_pool_test2.proto \
|
2008-07-10 02:12:20 +00:00
|
|
|
python/google/protobuf/internal/descriptor_test.py \
|
|
|
|
python/google/protobuf/internal/encoder.py \
|
2012-12-04 18:44:24 +00:00
|
|
|
python/google/protobuf/internal/enum_type_wrapper.py \
|
|
|
|
python/google/protobuf/internal/factory_test1.proto \
|
|
|
|
python/google/protobuf/internal/factory_test2.proto \
|
2016-07-19 23:15:42 +00:00
|
|
|
python/google/protobuf/internal/file_options_test.proto \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/internal/generator_test.py \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/internal/import_test_package/__init__.py \
|
|
|
|
python/google/protobuf/internal/import_test_package/inner.proto \
|
|
|
|
python/google/protobuf/internal/import_test_package/outer.proto \
|
2015-10-05 18:59:43 +00:00
|
|
|
python/google/protobuf/internal/json_format_test.py \
|
2012-12-04 18:44:24 +00:00
|
|
|
python/google/protobuf/internal/message_factory_test.py \
|
2008-07-10 02:12:20 +00:00
|
|
|
python/google/protobuf/internal/message_listener.py \
|
2015-08-27 03:20:42 +00:00
|
|
|
python/google/protobuf/internal/message_set_extensions.proto \
|
2009-07-29 01:13:20 +00:00
|
|
|
python/google/protobuf/internal/message_test.py \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/internal/missing_enum_values.proto \
|
2015-08-27 03:20:42 +00:00
|
|
|
python/google/protobuf/internal/more_extensions.proto \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/internal/more_extensions_dynamic.proto \
|
2008-07-10 02:12:20 +00:00
|
|
|
python/google/protobuf/internal/more_messages.proto \
|
2018-03-14 20:01:55 +00:00
|
|
|
python/google/protobuf/internal/no_package.proto \
|
2015-08-27 03:20:42 +00:00
|
|
|
python/google/protobuf/internal/packed_field_test.proto \
|
2014-11-11 01:34:54 +00:00
|
|
|
python/google/protobuf/internal/proto_builder_test.py \
|
2010-11-02 13:14:58 +00:00
|
|
|
python/google/protobuf/internal/python_message.py \
|
2017-07-19 21:38:57 +00:00
|
|
|
python/google/protobuf/internal/python_protobuf.cc \
|
2008-07-10 02:12:20 +00:00
|
|
|
python/google/protobuf/internal/reflection_test.py \
|
|
|
|
python/google/protobuf/internal/service_reflection_test.py \
|
2014-08-13 23:17:39 +00:00
|
|
|
python/google/protobuf/internal/symbol_database_test.py \
|
2012-12-04 18:44:24 +00:00
|
|
|
python/google/protobuf/internal/test_bad_identifiers.proto \
|
2008-07-10 02:12:20 +00:00
|
|
|
python/google/protobuf/internal/test_util.py \
|
2016-09-20 23:34:05 +00:00
|
|
|
python/google/protobuf/internal/testing_refleaks.py \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/internal/text_encoding_test.py \
|
2008-07-10 02:12:20 +00:00
|
|
|
python/google/protobuf/internal/text_format_test.py \
|
2008-08-18 22:55:31 +00:00
|
|
|
python/google/protobuf/internal/type_checkers.py \
|
2012-12-04 18:44:24 +00:00
|
|
|
python/google/protobuf/internal/unknown_fields_test.py \
|
2015-12-12 01:09:20 +00:00
|
|
|
python/google/protobuf/internal/well_known_types.py \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/internal/well_known_types.py \
|
|
|
|
python/google/protobuf/internal/well_known_types_test.py \
|
2015-12-12 01:09:20 +00:00
|
|
|
python/google/protobuf/internal/well_known_types_test.py \
|
2008-07-10 02:12:20 +00:00
|
|
|
python/google/protobuf/internal/wire_format.py \
|
|
|
|
python/google/protobuf/internal/wire_format_test.py \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/json_format.py \
|
|
|
|
python/google/protobuf/message.py \
|
|
|
|
python/google/protobuf/message_factory.py \
|
2017-07-19 21:38:57 +00:00
|
|
|
python/google/protobuf/python_protobuf.h \
|
2018-05-29 22:26:11 +00:00
|
|
|
python/google/protobuf/proto_api.h \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/proto_builder.py \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/pyext/README \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/pyext/__init__.py \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/pyext/cpp_message.py \
|
|
|
|
python/google/protobuf/pyext/descriptor.cc \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/pyext/descriptor.h \
|
2015-02-26 04:17:32 +00:00
|
|
|
python/google/protobuf/pyext/descriptor_containers.cc \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/pyext/descriptor_containers.h \
|
|
|
|
python/google/protobuf/pyext/descriptor_database.cc \
|
|
|
|
python/google/protobuf/pyext/descriptor_database.h \
|
|
|
|
python/google/protobuf/pyext/descriptor_pool.cc \
|
|
|
|
python/google/protobuf/pyext/descriptor_pool.h \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/pyext/extension_dict.cc \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/pyext/extension_dict.h \
|
|
|
|
python/google/protobuf/pyext/map_container.cc \
|
|
|
|
python/google/protobuf/pyext/map_container.h \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/pyext/message.cc \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/pyext/message.h \
|
2018-08-10 04:21:01 +00:00
|
|
|
python/google/protobuf/pyext/field.cc \
|
|
|
|
python/google/protobuf/pyext/field.h \
|
|
|
|
python/google/protobuf/pyext/unknown_fields.cc \
|
|
|
|
python/google/protobuf/pyext/unknown_fields.h \
|
2016-09-20 23:34:05 +00:00
|
|
|
python/google/protobuf/pyext/message_factory.cc \
|
|
|
|
python/google/protobuf/pyext/message_factory.h \
|
2016-07-19 23:15:42 +00:00
|
|
|
python/google/protobuf/pyext/message_module.cc \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/pyext/proto2_api_test.proto \
|
|
|
|
python/google/protobuf/pyext/python.proto \
|
|
|
|
python/google/protobuf/pyext/repeated_composite_container.cc \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/pyext/repeated_composite_container.h \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/pyext/repeated_scalar_container.cc \
|
2015-12-12 01:55:27 +00:00
|
|
|
python/google/protobuf/pyext/repeated_scalar_container.h \
|
2016-11-18 23:36:28 +00:00
|
|
|
python/google/protobuf/pyext/safe_numerics.h \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/pyext/scoped_pyobject_ptr.h \
|
2018-03-15 17:19:53 +00:00
|
|
|
python/google/protobuf/pyext/thread_unsafe_shared_ptr.h \
|
2008-07-10 02:12:20 +00:00
|
|
|
python/google/protobuf/reflection.py \
|
|
|
|
python/google/protobuf/service.py \
|
|
|
|
python/google/protobuf/service_reflection.py \
|
2014-08-12 21:10:30 +00:00
|
|
|
python/google/protobuf/symbol_database.py \
|
|
|
|
python/google/protobuf/text_encoding.py \
|
2008-07-10 02:12:20 +00:00
|
|
|
python/google/protobuf/text_format.py \
|
2018-04-09 19:43:10 +00:00
|
|
|
python/google/protobuf/util/__init__.py \
|
2017-07-19 21:38:57 +00:00
|
|
|
python/release.sh \
|
2008-07-10 02:12:20 +00:00
|
|
|
python/mox.py \
|
2016-07-29 21:40:05 +00:00
|
|
|
python/setup.cfg \
|
2015-08-27 03:19:05 +00:00
|
|
|
python/setup.py \
|
2008-07-10 02:12:20 +00:00
|
|
|
python/stubout.py \
|
2015-08-27 03:19:05 +00:00
|
|
|
python/tox.ini \
|
2015-03-17 19:14:55 +00:00
|
|
|
python/README.md
|
2008-07-10 02:12:20 +00:00
|
|
|
|
2014-11-18 22:19:58 +00:00
|
|
|
ruby_EXTRA_DIST= \
|
2015-05-26 05:21:05 +00:00
|
|
|
ruby/Gemfile \
|
|
|
|
ruby/.gitignore \
|
2014-12-13 01:41:34 +00:00
|
|
|
ruby/README.md \
|
|
|
|
ruby/Rakefile \
|
2017-02-24 01:53:06 +00:00
|
|
|
ruby/compatibility_tests/v3.0.0/tests/test_import.proto \
|
|
|
|
ruby/compatibility_tests/v3.0.0/tests/stress.rb \
|
|
|
|
ruby/compatibility_tests/v3.0.0/tests/repeated_field_test.rb \
|
|
|
|
ruby/compatibility_tests/v3.0.0/tests/generated_code_test.rb \
|
|
|
|
ruby/compatibility_tests/v3.0.0/tests/generated_code.proto \
|
|
|
|
ruby/compatibility_tests/v3.0.0/tests/basic.rb \
|
|
|
|
ruby/compatibility_tests/v3.0.0/test.sh \
|
|
|
|
ruby/compatibility_tests/v3.0.0/Rakefile \
|
|
|
|
ruby/compatibility_tests/v3.0.0/README.md \
|
2014-12-13 01:41:34 +00:00
|
|
|
ruby/ext/google/protobuf_c/defs.c \
|
|
|
|
ruby/ext/google/protobuf_c/encode_decode.c \
|
|
|
|
ruby/ext/google/protobuf_c/extconf.rb \
|
2015-01-15 00:45:47 +00:00
|
|
|
ruby/ext/google/protobuf_c/map.c \
|
2014-12-13 01:41:34 +00:00
|
|
|
ruby/ext/google/protobuf_c/message.c \
|
|
|
|
ruby/ext/google/protobuf_c/protobuf.c \
|
|
|
|
ruby/ext/google/protobuf_c/protobuf.h \
|
|
|
|
ruby/ext/google/protobuf_c/repeated_field.c \
|
|
|
|
ruby/ext/google/protobuf_c/storage.c \
|
|
|
|
ruby/ext/google/protobuf_c/upb.c \
|
|
|
|
ruby/ext/google/protobuf_c/upb.h \
|
2017-03-08 19:25:48 +00:00
|
|
|
ruby/ext/google/protobuf_c/wrap_memcpy.c \
|
2014-12-13 01:41:34 +00:00
|
|
|
ruby/google-protobuf.gemspec \
|
2015-05-26 05:21:05 +00:00
|
|
|
ruby/lib/google/protobuf/message_exts.rb \
|
|
|
|
ruby/lib/google/protobuf/repeated_field.rb \
|
2016-08-01 21:31:31 +00:00
|
|
|
ruby/lib/google/protobuf/well_known_types.rb \
|
2014-12-13 01:41:34 +00:00
|
|
|
ruby/lib/google/protobuf.rb \
|
2015-05-26 05:21:05 +00:00
|
|
|
ruby/pom.xml \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \
|
|
|
|
ruby/src/main/java/com/google/protobuf/jruby/Utils.java \
|
|
|
|
ruby/src/main/java/google/ProtobufJavaService.java \
|
|
|
|
ruby/src/main/sentinel.proto \
|
2014-12-13 01:41:34 +00:00
|
|
|
ruby/tests/basic.rb \
|
2017-12-07 22:18:38 +00:00
|
|
|
ruby/tests/encode_decode_test.rb \
|
2017-10-04 00:28:49 +00:00
|
|
|
ruby/tests/gc_test.rb \
|
2015-05-26 05:21:05 +00:00
|
|
|
ruby/tests/repeated_field_test.rb \
|
2015-01-15 00:45:47 +00:00
|
|
|
ruby/tests/stress.rb \
|
|
|
|
ruby/tests/generated_code.proto \
|
2016-07-25 21:07:09 +00:00
|
|
|
ruby/tests/test_import.proto \
|
2018-05-22 16:53:03 +00:00
|
|
|
ruby/tests/test_ruby_package.proto \
|
2015-05-26 05:21:05 +00:00
|
|
|
ruby/tests/generated_code_test.rb \
|
2016-07-28 00:31:16 +00:00
|
|
|
ruby/tests/well_known_types_test.rb \
|
2015-05-26 05:21:05 +00:00
|
|
|
ruby/travis-test.sh
|
2014-11-18 22:19:58 +00:00
|
|
|
|
2017-02-28 22:20:56 +00:00
|
|
|
js_EXTRA_DIST= \
|
|
|
|
js/README.md \
|
|
|
|
js/binary/arith.js \
|
|
|
|
js/binary/arith_test.js \
|
|
|
|
js/binary/constants.js \
|
|
|
|
js/binary/decoder.js \
|
|
|
|
js/binary/decoder_test.js \
|
|
|
|
js/binary/encoder.js \
|
|
|
|
js/binary/message_test.js \
|
|
|
|
js/binary/proto_test.js \
|
|
|
|
js/binary/reader.js \
|
|
|
|
js/binary/reader_test.js \
|
|
|
|
js/binary/utils.js \
|
|
|
|
js/binary/utils_test.js \
|
|
|
|
js/binary/writer.js \
|
|
|
|
js/binary/writer_test.js \
|
|
|
|
js/commonjs/export.js \
|
|
|
|
js/commonjs/export_asserts.js \
|
|
|
|
js/commonjs/export_testdeps.js \
|
|
|
|
js/commonjs/import_test.js \
|
|
|
|
js/commonjs/jasmine.json \
|
|
|
|
js/commonjs/rewrite_tests_for_commonjs.js \
|
2018-03-02 00:05:19 +00:00
|
|
|
js/commonjs/strict_test.js \
|
2017-02-28 22:20:56 +00:00
|
|
|
js/commonjs/test6/test6.proto \
|
|
|
|
js/commonjs/test7/test7.proto \
|
|
|
|
js/compatibility_tests/v3.0.0/binary/arith_test.js \
|
|
|
|
js/compatibility_tests/v3.0.0/binary/decoder_test.js \
|
|
|
|
js/compatibility_tests/v3.0.0/binary/proto_test.js \
|
|
|
|
js/compatibility_tests/v3.0.0/binary/reader_test.js \
|
|
|
|
js/compatibility_tests/v3.0.0/binary/utils_test.js \
|
|
|
|
js/compatibility_tests/v3.0.0/binary/writer_test.js \
|
|
|
|
js/compatibility_tests/v3.0.0/commonjs/export_asserts.js \
|
|
|
|
js/compatibility_tests/v3.0.0/commonjs/export_testdeps.js \
|
|
|
|
js/compatibility_tests/v3.0.0/commonjs/import_test.js \
|
|
|
|
js/compatibility_tests/v3.0.0/commonjs/jasmine.json \
|
|
|
|
js/compatibility_tests/v3.0.0/commonjs/rewrite_tests_for_commonjs.js \
|
|
|
|
js/compatibility_tests/v3.0.0/commonjs/test6/test6.proto \
|
|
|
|
js/compatibility_tests/v3.0.0/commonjs/test7/test7.proto \
|
|
|
|
js/compatibility_tests/v3.0.0/data.proto \
|
|
|
|
js/compatibility_tests/v3.0.0/debug_test.js \
|
|
|
|
js/compatibility_tests/v3.0.0/jasmine1.json \
|
|
|
|
js/compatibility_tests/v3.0.0/jasmine2.json \
|
|
|
|
js/compatibility_tests/v3.0.0/jasmine3.json \
|
|
|
|
js/compatibility_tests/v3.0.0/message_test.js \
|
|
|
|
js/compatibility_tests/v3.0.0/proto3_test.js \
|
|
|
|
js/compatibility_tests/v3.0.0/proto3_test.proto \
|
|
|
|
js/compatibility_tests/v3.0.0/test2.proto \
|
|
|
|
js/compatibility_tests/v3.0.0/test3.proto \
|
|
|
|
js/compatibility_tests/v3.0.0/test4.proto \
|
|
|
|
js/compatibility_tests/v3.0.0/test5.proto \
|
|
|
|
js/compatibility_tests/v3.0.0/testbinary.proto \
|
|
|
|
js/compatibility_tests/v3.0.0/testempty.proto \
|
|
|
|
js/compatibility_tests/v3.0.0/test.proto \
|
|
|
|
js/compatibility_tests/v3.0.0/test.sh \
|
2017-07-19 21:32:22 +00:00
|
|
|
js/compatibility_tests/v3.1.0/testempty.proto \
|
|
|
|
js/compatibility_tests/v3.1.0/testbinary.proto \
|
|
|
|
js/compatibility_tests/v3.1.0/test5.proto \
|
|
|
|
js/compatibility_tests/v3.1.0/test4.proto \
|
|
|
|
js/compatibility_tests/v3.1.0/test3.proto \
|
|
|
|
js/compatibility_tests/v3.1.0/test2.proto \
|
|
|
|
js/compatibility_tests/v3.1.0/test.proto \
|
|
|
|
js/compatibility_tests/v3.1.0/proto3_test.proto \
|
|
|
|
js/compatibility_tests/v3.1.0/proto3_test.js \
|
|
|
|
js/compatibility_tests/v3.1.0/message_test.js \
|
|
|
|
js/compatibility_tests/v3.1.0/maps_test.js \
|
|
|
|
js/compatibility_tests/v3.1.0/debug_test.js \
|
|
|
|
js/compatibility_tests/v3.1.0/data.proto \
|
|
|
|
js/compatibility_tests/v3.1.0/commonjs/test7/test7.proto \
|
|
|
|
js/compatibility_tests/v3.1.0/commonjs/test6/test6.proto \
|
|
|
|
js/compatibility_tests/v3.1.0/binary/writer_test.js \
|
|
|
|
js/compatibility_tests/v3.1.0/binary/utils_test.js \
|
|
|
|
js/compatibility_tests/v3.1.0/binary/reader_test.js \
|
|
|
|
js/compatibility_tests/v3.1.0/binary/proto_test.js \
|
|
|
|
js/compatibility_tests/v3.1.0/binary/decoder_test.js \
|
|
|
|
js/compatibility_tests/v3.1.0/binary/arith_test.js \
|
2017-02-28 22:20:56 +00:00
|
|
|
js/data.proto \
|
|
|
|
js/debug.js \
|
|
|
|
js/debug_test.js \
|
|
|
|
js/gulpfile.js \
|
|
|
|
js/jasmine.json \
|
|
|
|
js/map.js \
|
|
|
|
js/maps_test.js \
|
|
|
|
js/message.js \
|
|
|
|
js/message_test.js \
|
|
|
|
js/node_loader.js \
|
|
|
|
js/package.json \
|
|
|
|
js/proto3_test.js \
|
|
|
|
js/proto3_test.proto \
|
|
|
|
js/test.proto \
|
|
|
|
js/test2.proto \
|
|
|
|
js/test3.proto \
|
|
|
|
js/test4.proto \
|
|
|
|
js/test5.proto \
|
|
|
|
js/test8.proto \
|
2018-03-02 00:05:19 +00:00
|
|
|
js/test9.proto \
|
2018-03-26 23:07:45 +00:00
|
|
|
js/test10.proto \
|
2017-02-28 22:20:56 +00:00
|
|
|
js/test_bootstrap.js \
|
|
|
|
js/testbinary.proto \
|
2015-12-22 22:36:04 +00:00
|
|
|
js/testempty.proto
|
|
|
|
|
2018-03-26 19:59:28 +00:00
|
|
|
all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(objectivec_EXTRA_DIST) $(php_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) $(js_EXTRA_DIST)
|
2014-12-02 22:15:26 +00:00
|
|
|
|
2015-08-23 17:45:14 +00:00
|
|
|
EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \
|
|
|
|
autogen.sh \
|
|
|
|
generate_descriptor_proto.sh \
|
|
|
|
README.md \
|
|
|
|
LICENSE \
|
|
|
|
CONTRIBUTORS.txt \
|
|
|
|
CHANGES.txt \
|
|
|
|
update_file_lists.sh \
|
2015-08-27 00:48:08 +00:00
|
|
|
BUILD \
|
|
|
|
WORKSPACE \
|
2015-08-23 17:45:14 +00:00
|
|
|
cmake/CMakeLists.txt \
|
|
|
|
cmake/README.md \
|
2018-08-25 00:09:50 +00:00
|
|
|
cmake/conformance.cmake \
|
2016-07-19 23:15:42 +00:00
|
|
|
cmake/examples.cmake \
|
2015-08-23 17:45:14 +00:00
|
|
|
cmake/extract_includes.bat.in \
|
|
|
|
cmake/install.cmake \
|
|
|
|
cmake/libprotobuf.cmake \
|
|
|
|
cmake/libprotobuf-lite.cmake \
|
|
|
|
cmake/libprotoc.cmake \
|
|
|
|
cmake/protobuf-config-version.cmake.in \
|
|
|
|
cmake/protobuf-config.cmake.in \
|
2017-08-24 21:11:37 +00:00
|
|
|
cmake/protobuf-lite.pc.cmake \
|
2015-08-23 17:45:14 +00:00
|
|
|
cmake/protobuf-module.cmake.in \
|
2016-07-19 23:15:42 +00:00
|
|
|
cmake/protobuf-options.cmake \
|
2017-08-24 21:11:37 +00:00
|
|
|
cmake/protobuf.pc.cmake \
|
2015-08-23 17:45:14 +00:00
|
|
|
cmake/protoc.cmake \
|
|
|
|
cmake/tests.cmake \
|
2018-04-28 08:53:54 +00:00
|
|
|
cmake/version.rc.in \
|
2015-08-23 17:45:14 +00:00
|
|
|
editors/README.txt \
|
|
|
|
editors/proto.vim \
|
|
|
|
editors/protobuf-mode.el \
|
2017-09-11 19:48:53 +00:00
|
|
|
examples/AddPerson.java \
|
|
|
|
examples/BUILD \
|
2016-07-20 00:20:31 +00:00
|
|
|
examples/CMakeLists.txt \
|
2017-09-11 19:48:53 +00:00
|
|
|
examples/ListPeople.java \
|
2015-08-23 17:45:14 +00:00
|
|
|
examples/Makefile \
|
2017-09-11 19:48:53 +00:00
|
|
|
examples/README.md \
|
|
|
|
examples/WORKSPACE \
|
2015-08-23 17:45:14 +00:00
|
|
|
examples/add_person.cc \
|
2015-12-22 22:36:04 +00:00
|
|
|
examples/add_person.go \
|
2017-09-11 19:48:53 +00:00
|
|
|
examples/add_person.py \
|
2015-12-22 22:36:04 +00:00
|
|
|
examples/add_person_test.go \
|
2017-09-11 19:48:53 +00:00
|
|
|
examples/addressbook.proto \
|
2015-08-23 17:45:14 +00:00
|
|
|
examples/list_people.cc \
|
2015-12-22 22:36:04 +00:00
|
|
|
examples/list_people.go \
|
|
|
|
examples/list_people.py \
|
|
|
|
examples/list_people_test.go \
|
|
|
|
protobuf.bzl \
|
2017-06-28 22:22:19 +00:00
|
|
|
python/release/wheel/build_wheel_manylinux.sh \
|
|
|
|
python/release/wheel/Dockerfile \
|
|
|
|
python/release/wheel/protobuf_optimized_pip.sh \
|
|
|
|
python/release/wheel/README.md \
|
2015-12-22 22:36:04 +00:00
|
|
|
six.BUILD \
|
|
|
|
util/python/BUILD
|
2014-12-02 22:15:26 +00:00
|
|
|
|
2017-06-28 22:22:19 +00:00
|
|
|
|
2008-07-10 02:12:20 +00:00
|
|
|
# Deletes all the files generated by autogen.sh.
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
|
|
aclocal.m4 \
|
2015-12-10 20:34:34 +00:00
|
|
|
ar-lib \
|
2008-07-10 02:12:20 +00:00
|
|
|
config.guess \
|
|
|
|
config.sub \
|
|
|
|
configure \
|
|
|
|
depcomp \
|
|
|
|
install-sh \
|
|
|
|
ltmain.sh \
|
|
|
|
Makefile.in \
|
|
|
|
missing \
|
|
|
|
mkinstalldirs \
|
|
|
|
config.h.in \
|
2009-07-31 21:46:11 +00:00
|
|
|
stamp.h.in \
|
|
|
|
m4/ltsugar.m4 \
|
|
|
|
m4/libtool.m4 \
|
|
|
|
m4/ltversion.m4 \
|
|
|
|
m4/lt~obsolete.m4 \
|
|
|
|
m4/ltoptions.m4
|