OLD | NEW |
(Empty) | |
| 1 ## Process this file with automake to produce Makefile.in |
| 2 |
| 3 ACLOCAL_AMFLAGS = -I m4 |
| 4 |
| 5 AUTOMAKE_OPTIONS = foreign |
| 6 |
| 7 # Build . before src so that our all-local and clean-local hooks kicks in at |
| 8 # the right time. |
| 9 SUBDIRS = . src |
| 10 |
| 11 # Always include gmock in distributions. |
| 12 DIST_SUBDIRS = $(subdirs) src conformance |
| 13 |
| 14 # Build gmock before we build protobuf tests. We don't add gmock to SUBDIRS |
| 15 # because then "make check" would also build and run all of gmock's own tests, |
| 16 # which takes a lot of time and is generally not useful to us. Also, we don't |
| 17 # want "make install" to recurse into gmock since we don't want to overwrite |
| 18 # the installed version of gmock if there is one. |
| 19 check-local: |
| 20 @echo "Making lib/libgmock.a lib/libgmock_main.a in gmock" |
| 21 @cd gmock && $(MAKE) $(AM_MAKEFLAGS) lib/libgmock.la lib/libgmock_main.l
a |
| 22 @cd gmock/gtest && $(MAKE) $(AM_MAKEFLAGS) lib/libgtest.la lib/libgtest_
main.la |
| 23 |
| 24 # We would like to clean gmock when "make clean" is invoked. But we have to |
| 25 # be careful because clean-local is also invoked during "make distclean", but |
| 26 # "make distclean" already recurses into gmock because it's listed among the |
| 27 # DIST_SUBDIRS. distclean will delete gmock/Makefile, so if we then try to |
| 28 # cd to the directory again and "make clean" it will fail. So, check that the |
| 29 # Makefile exists before recursing. |
| 30 clean-local: |
| 31 @if test -e gmock/Makefile; then \ |
| 32 echo "Making clean in gmock"; \ |
| 33 cd gmock && $(MAKE) $(AM_MAKEFLAGS) clean; \ |
| 34 fi; \ |
| 35 if test -e conformance/Makefile; then \ |
| 36 echo "Making clean in conformance"; \ |
| 37 cd conformance && $(MAKE) $(AM_MAKEFLAGS) clean; \ |
| 38 fi |
| 39 |
| 40 pkgconfigdir = $(libdir)/pkgconfig |
| 41 pkgconfig_DATA = protobuf.pc protobuf-lite.pc |
| 42 |
| 43 csharp_EXTRA_DIST= \ |
| 44 csharp/CHANGES.txt \ |
| 45 csharp/README.md \ |
| 46 csharp/build_packages.bat \ |
| 47 csharp/buildall.sh \ |
| 48 csharp/generate_protos.sh \ |
| 49 csharp/keys/Google.Protobuf.public.snk \ |
| 50 csharp/keys/README.md \ |
| 51 csharp/protos/unittest_issues.proto \ |
| 52 csharp/src/AddressBook/AddPerson.cs \ |
| 53 csharp/src/AddressBook/AddressBook.csproj \ |
| 54 csharp/src/AddressBook/Addressbook.cs \ |
| 55 csharp/src/AddressBook/ListPeople.cs \ |
| 56 csharp/src/AddressBook/Program.cs \ |
| 57 csharp/src/AddressBook/Properties/AssemblyInfo.cs \ |
| 58 csharp/src/AddressBook/SampleUsage.cs \ |
| 59 csharp/src/AddressBook/app.config \ |
| 60 csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \ |
| 61 csharp/src/Google.Protobuf.JsonDump/Program.cs \ |
| 62 csharp/src/Google.Protobuf.JsonDump/Properties/AssemblyInfo.cs \ |
| 63 csharp/src/Google.Protobuf.JsonDump/app.config \ |
| 64 csharp/src/Google.Protobuf.Test/ByteStringTest.cs \ |
| 65 csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \ |
| 66 csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \ |
| 67 csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \ |
| 68 csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \ |
| 69 csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \ |
| 70 csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \ |
| 71 csharp/src/Google.Protobuf.Test/EqualityTester.cs \ |
| 72 csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \ |
| 73 csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \ |
| 74 csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \ |
| 75 csharp/src/Google.Protobuf.Test/IssuesTest.cs \ |
| 76 csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \ |
| 77 csharp/src/Google.Protobuf.Test/Properties/AppManifest.xml \ |
| 78 csharp/src/Google.Protobuf.Test/Properties/AssemblyInfo.cs \ |
| 79 csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \ |
| 80 csharp/src/Google.Protobuf.Test/SampleEnum.cs \ |
| 81 csharp/src/Google.Protobuf.Test/SampleMessages.cs \ |
| 82 csharp/src/Google.Protobuf.Test/TestCornerCases.cs \ |
| 83 csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs \ |
| 84 csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs \ |
| 85 csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs \ |
| 86 csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs \ |
| 87 csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs \ |
| 88 csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs \ |
| 89 csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \ |
| 90 csharp/src/Google.Protobuf.Test/packages.config \ |
| 91 csharp/src/Google.Protobuf.sln \ |
| 92 csharp/src/Google.Protobuf/ByteArray.cs \ |
| 93 csharp/src/Google.Protobuf/ByteString.cs \ |
| 94 csharp/src/Google.Protobuf/CodedInputStream.cs \ |
| 95 csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \ |
| 96 csharp/src/Google.Protobuf/CodedOutputStream.cs \ |
| 97 csharp/src/Google.Protobuf/Collections/MapField.cs \ |
| 98 csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \ |
| 99 csharp/src/Google.Protobuf/Collections/RepeatedField.cs \ |
| 100 csharp/src/Google.Protobuf/FieldCodec.cs \ |
| 101 csharp/src/Google.Protobuf/FrameworkPortability.cs \ |
| 102 csharp/src/Google.Protobuf/Google.Protobuf.csproj \ |
| 103 csharp/src/Google.Protobuf/Google.Protobuf.nuspec \ |
| 104 csharp/src/Google.Protobuf/IMessage.cs \ |
| 105 csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \ |
| 106 csharp/src/Google.Protobuf/JsonFormatter.cs \ |
| 107 csharp/src/Google.Protobuf/LimitedInputStream.cs \ |
| 108 csharp/src/Google.Protobuf/MessageExtensions.cs \ |
| 109 csharp/src/Google.Protobuf/MessageParser.cs \ |
| 110 csharp/src/Google.Protobuf/Preconditions.cs \ |
| 111 csharp/src/Google.Protobuf/Properties/AssemblyInfo.cs \ |
| 112 csharp/src/Google.Protobuf/Reflection/DescriptorBase.cs \ |
| 113 csharp/src/Google.Protobuf/Reflection/DescriptorPool.cs \ |
| 114 csharp/src/Google.Protobuf/Reflection/DescriptorProtoFile.cs \ |
| 115 csharp/src/Google.Protobuf/Reflection/DescriptorUtil.cs \ |
| 116 csharp/src/Google.Protobuf/Reflection/DescriptorValidationException.cs \ |
| 117 csharp/src/Google.Protobuf/Reflection/EnumDescriptor.cs \ |
| 118 csharp/src/Google.Protobuf/Reflection/EnumValueDescriptor.cs \ |
| 119 csharp/src/Google.Protobuf/Reflection/FieldAccessorBase.cs \ |
| 120 csharp/src/Google.Protobuf/Reflection/FieldDescriptor.cs \ |
| 121 csharp/src/Google.Protobuf/Reflection/FieldType.cs \ |
| 122 csharp/src/Google.Protobuf/Reflection/FileDescriptor.cs \ |
| 123 csharp/src/Google.Protobuf/Reflection/GeneratedCodeInfo.cs \ |
| 124 csharp/src/Google.Protobuf/Reflection/IDescriptor.cs \ |
| 125 csharp/src/Google.Protobuf/Reflection/IFieldAccessor.cs \ |
| 126 csharp/src/Google.Protobuf/Reflection/MapFieldAccessor.cs \ |
| 127 csharp/src/Google.Protobuf/Reflection/MessageDescriptor.cs \ |
| 128 csharp/src/Google.Protobuf/Reflection/MethodDescriptor.cs \ |
| 129 csharp/src/Google.Protobuf/Reflection/OneofAccessor.cs \ |
| 130 csharp/src/Google.Protobuf/Reflection/OneofDescriptor.cs \ |
| 131 csharp/src/Google.Protobuf/Reflection/PackageDescriptor.cs \ |
| 132 csharp/src/Google.Protobuf/Reflection/PartialClasses.cs \ |
| 133 csharp/src/Google.Protobuf/Reflection/ReflectionUtil.cs \ |
| 134 csharp/src/Google.Protobuf/Reflection/RepeatedFieldAccessor.cs \ |
| 135 csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \ |
| 136 csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \ |
| 137 csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \ |
| 138 csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \ |
| 139 csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \ |
| 140 csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \ |
| 141 csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \ |
| 142 csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \ |
| 143 csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \ |
| 144 csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \ |
| 145 csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \ |
| 146 csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \ |
| 147 csharp/src/Google.Protobuf/WireFormat.cs \ |
| 148 csharp/src/packages/repositories.config |
| 149 |
| 150 java_EXTRA_DIST= \ |
| 151 java/src/main/java/com/google/protobuf/AbstractMessage.java \ |
| 152 java/src/main/java/com/google/protobuf/AbstractMessageLite.java \ |
| 153 java/src/main/java/com/google/protobuf/AbstractParser.java \ |
| 154 java/src/main/java/com/google/protobuf/AbstractProtobufList.java \ |
| 155 java/src/main/java/com/google/protobuf/BlockingRpcChannel.java \ |
| 156 java/src/main/java/com/google/protobuf/BlockingService.java \ |
| 157 java/src/main/java/com/google/protobuf/BoundedByteString.java \ |
| 158 java/src/main/java/com/google/protobuf/BooleanArrayList.java \ |
| 159 java/src/main/java/com/google/protobuf/ByteString.java \ |
| 160 java/src/main/java/com/google/protobuf/CodedInputStream.java \ |
| 161 java/src/main/java/com/google/protobuf/CodedOutputStream.java \ |
| 162 java/src/main/java/com/google/protobuf/Descriptors.java \ |
| 163 java/src/main/java/com/google/protobuf/DoubleArrayList.java \ |
| 164 java/src/main/java/com/google/protobuf/DynamicMessage.java \ |
| 165 java/src/main/java/com/google/protobuf/Extension.java \ |
| 166 java/src/main/java/com/google/protobuf/ExtensionLite.java \ |
| 167 java/src/main/java/com/google/protobuf/ExtensionRegistry.java \ |
| 168 java/src/main/java/com/google/protobuf/ExtensionRegistryLite.java \ |
| 169 java/src/main/java/com/google/protobuf/FieldSet.java \ |
| 170 java/src/main/java/com/google/protobuf/FloatArrayList.java \ |
| 171 java/src/main/java/com/google/protobuf/GeneratedMessage.java \ |
| 172 java/src/main/java/com/google/protobuf/GeneratedMessageLite.java \ |
| 173 java/src/main/java/com/google/protobuf/Internal.java \ |
| 174 java/src/main/java/com/google/protobuf/IntArrayList.java \ |
| 175 java/src/main/java/com/google/protobuf/InvalidProtocolBufferException.java \ |
| 176 java/src/main/java/com/google/protobuf/LazyField.java \ |
| 177 java/src/main/java/com/google/protobuf/LazyFieldLite.java \ |
| 178 java/src/main/java/com/google/protobuf/LazyStringArrayList.java \ |
| 179 java/src/main/java/com/google/protobuf/LazyStringList.java \ |
| 180 java/src/main/java/com/google/protobuf/LiteralByteString.java \ |
| 181 java/src/main/java/com/google/protobuf/LongArrayList.java \ |
| 182 java/src/main/java/com/google/protobuf/MapEntry.java \ |
| 183 java/src/main/java/com/google/protobuf/MapEntryLite.java \ |
| 184 java/src/main/java/com/google/protobuf/MapField.java \ |
| 185 java/src/main/java/com/google/protobuf/MapFieldLite.java \ |
| 186 java/src/main/java/com/google/protobuf/Message.java \ |
| 187 java/src/main/java/com/google/protobuf/MessageLite.java \ |
| 188 java/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java \ |
| 189 java/src/main/java/com/google/protobuf/MessageOrBuilder.java \ |
| 190 java/src/main/java/com/google/protobuf/MessageReflection.java \ |
| 191 java/src/main/java/com/google/protobuf/MutabilityOracle.java \ |
| 192 java/src/main/java/com/google/protobuf/Parser.java \ |
| 193 java/src/main/java/com/google/protobuf/ProtobufArrayList.java \ |
| 194 java/src/main/java/com/google/protobuf/ProtocolMessageEnum.java \ |
| 195 java/src/main/java/com/google/protobuf/ProtocolStringList.java \ |
| 196 java/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java \ |
| 197 java/src/main/java/com/google/protobuf/RopeByteString.java \ |
| 198 java/src/main/java/com/google/protobuf/RpcCallback.java \ |
| 199 java/src/main/java/com/google/protobuf/RpcChannel.java \ |
| 200 java/src/main/java/com/google/protobuf/RpcController.java \ |
| 201 java/src/main/java/com/google/protobuf/RpcUtil.java \ |
| 202 java/src/main/java/com/google/protobuf/ServiceException.java \ |
| 203 java/src/main/java/com/google/protobuf/Service.java \ |
| 204 java/src/main/java/com/google/protobuf/SingleFieldBuilder.java \ |
| 205 java/src/main/java/com/google/protobuf/SmallSortedMap.java \ |
| 206 java/src/main/java/com/google/protobuf/TextFormat.java \ |
| 207 java/src/main/java/com/google/protobuf/UninitializedMessageException.java \ |
| 208 java/src/main/java/com/google/protobuf/UnknownFieldSet.java \ |
| 209 java/src/main/java/com/google/protobuf/UnknownFieldSetLite.java \ |
| 210 java/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java \ |
| 211 java/src/main/java/com/google/protobuf/Utf8.java \ |
| 212 java/src/test/java/com/google/protobuf/WellKnownTypesTest.java \ |
| 213 java/src/main/java/com/google/protobuf/WireFormat.java \ |
| 214 java/src/test/java/com/google/protobuf/AbstractMessageTest.java \ |
| 215 java/src/test/java/com/google/protobuf/BoundedByteStringTest.java \ |
| 216 java/src/test/java/com/google/protobuf/BooleanArrayListTest.java \ |
| 217 java/src/test/java/com/google/protobuf/ByteStringTest.java \ |
| 218 java/src/test/java/com/google/protobuf/CheckUtf8Test.java \ |
| 219 java/src/test/java/com/google/protobuf/CodedInputStreamTest.java \ |
| 220 java/src/test/java/com/google/protobuf/CodedOutputStreamTest.java \ |
| 221 java/src/test/java/com/google/protobuf/DeprecatedFieldTest.java \ |
| 222 java/src/test/java/com/google/protobuf/DescriptorsTest.java \ |
| 223 java/src/test/java/com/google/protobuf/DoubleArrayListTest.java \ |
| 224 java/src/test/java/com/google/protobuf/DynamicMessageTest.java \ |
| 225 java/src/test/java/com/google/protobuf/FieldPresenceTest.java \ |
| 226 java/src/test/java/com/google/protobuf/FloatArrayListTest.java \ |
| 227 java/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java \ |
| 228 java/src/test/java/com/google/protobuf/GeneratedMessageTest.java \ |
| 229 java/src/test/java/com/google/protobuf/IntArrayListTest.java \ |
| 230 java/src/test/java/com/google/protobuf/IsValidUtf8Test.java \ |
| 231 java/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java \ |
| 232 java/src/test/java/com/google/protobuf/LazyFieldLiteTest.java \ |
| 233 java/src/test/java/com/google/protobuf/LazyFieldTest.java \ |
| 234 java/src/test/java/com/google/protobuf/LazyMessageLiteTest.java \ |
| 235 java/src/test/java/com/google/protobuf/LazyStringArrayListTest.java \ |
| 236 java/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java \ |
| 237 java/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java \ |
| 238 java/src/test/java/com/google/protobuf/LiteralByteStringTest.java \ |
| 239 java/src/test/java/com/google/protobuf/LiteTest.java \ |
| 240 java/src/test/java/com/google/protobuf/LongArrayListTest.java \ |
| 241 java/src/test/java/com/google/protobuf/MapForProto2LiteTest.java \ |
| 242 java/src/test/java/com/google/protobuf/MapForProto2Test.java \ |
| 243 java/src/test/java/com/google/protobuf/MapTest.java \ |
| 244 java/src/test/java/com/google/protobuf/MessageTest.java \ |
| 245 java/src/test/java/com/google/protobuf/NestedBuildersTest.java \ |
| 246 java/src/test/java/com/google/protobuf/ParserTest.java \ |
| 247 java/src/test/java/com/google/protobuf/ProtobufArrayListTest.java \ |
| 248 java/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java \ |
| 249 java/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java \ |
| 250 java/src/test/java/com/google/protobuf/RopeByteStringTest.java \ |
| 251 java/src/test/java/com/google/protobuf/ServiceTest.java \ |
| 252 java/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java \ |
| 253 java/src/test/java/com/google/protobuf/SmallSortedMapTest.java \ |
| 254 java/src/test/java/com/google/protobuf/TestBadIdentifiers.java \ |
| 255 java/src/test/java/com/google/protobuf/TestUtil.java \ |
| 256 java/src/test/java/com/google/protobuf/TextFormatTest.java \ |
| 257 java/src/test/java/com/google/protobuf/UnknownEnumValueTest.java \ |
| 258 java/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java \ |
| 259 java/src/test/java/com/google/protobuf/UnknownFieldSetTest.java \ |
| 260 java/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.java \ |
| 261 java/src/test/java/com/google/protobuf/WireFormatTest.java \ |
| 262 java/src/test/java/com/google/protobuf/field_presence_test.proto \ |
| 263 java/src/test/java/com/google/protobuf/lazy_fields_lite.proto \ |
| 264 java/src/test/java/com/google/protobuf/lite_equals_and_hash.proto \ |
| 265 java/src/test/java/com/google/protobuf/map_for_proto2_lite_test.proto \ |
| 266 java/src/test/java/com/google/protobuf/map_for_proto2_test.proto \ |
| 267 java/src/test/java/com/google/protobuf/map_initialization_order_test.proto \ |
| 268 java/src/test/java/com/google/protobuf/map_test.proto \ |
| 269 java/src/test/java/com/google/protobuf/multiple_files_test.proto \ |
| 270 java/src/test/java/com/google/protobuf/nested_builders_test.proto \ |
| 271 java/src/test/java/com/google/protobuf/nested_extension_lite.proto \ |
| 272 java/src/test/java/com/google/protobuf/nested_extension.proto \ |
| 273 java/src/test/java/com/google/protobuf/non_nested_extension_lite.proto \ |
| 274 java/src/test/java/com/google/protobuf/non_nested_extension.proto \ |
| 275 java/src/test/java/com/google/protobuf/outer_class_name_test2.proto \ |
| 276 java/src/test/java/com/google/protobuf/outer_class_name_test3.proto \ |
| 277 java/src/test/java/com/google/protobuf/outer_class_name_test.proto \ |
| 278 java/src/test/java/com/google/protobuf/test_bad_identifiers.proto \ |
| 279 java/src/test/java/com/google/protobuf/test_check_utf8.proto \ |
| 280 java/src/test/java/com/google/protobuf/test_check_utf8_size.proto \ |
| 281 java/src/test/java/com/google/protobuf/test_custom_options.proto \ |
| 282 java/src/test/java/com/google/protobuf/test_extra_interfaces.proto \ |
| 283 java/pom.xml \ |
| 284 java/README.md |
| 285 |
| 286 javanano_EXTRA_DIST=
\ |
| 287 javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java
\ |
| 288 javanano/src/main/java/com/google/protobuf/nano/FieldData.java
\ |
| 289 javanano/src/main/java/com/google/protobuf/nano/FieldArray.java
\ |
| 290 javanano/src/main/java/com/google/protobuf/nano/WireFormatNano.java
\ |
| 291 javanano/src/main/java/com/google/protobuf/nano/Extension.java
\ |
| 292 javanano/src/main/java/com/google/protobuf/nano/CodedInputByteBufferNano.java
\ |
| 293 javanano/src/main/java/com/google/protobuf/nano/UnknownFieldData.java
\ |
| 294 javanano/src/main/java/com/google/protobuf/nano/MessageNano.java
\ |
| 295 javanano/src/main/java/com/google/protobuf/nano/InternalNano.java
\ |
| 296 javanano/src/main/java/com/google/protobuf/nano/InvalidProtocolBufferNanoExcep
tion.java \ |
| 297 javanano/src/main/java/com/google/protobuf/nano/MapFactories.java
\ |
| 298 javanano/src/main/java/com/google/protobuf/nano/ExtendableMessageNano.java
\ |
| 299 javanano/src/main/java/com/google/protobuf/nano/MessageNanoPrinter.java
\ |
| 300 javanano/src/test/java/com/google/protobuf/nano/unittest_accessors_nano.proto
\ |
| 301 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_nano.proto
\ |
| 302 javanano/src/test/java/com/google/protobuf/nano/unittest_reference_types_nano.
proto \ |
| 303 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_repeated_na
no.proto \ |
| 304 javanano/src/test/java/com/google/protobuf/nano/unittest_has_nano.proto
\ |
| 305 javanano/src/test/java/com/google/protobuf/nano/unittest_nano.proto
\ |
| 306 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nameclash_na
no.proto \ |
| 307 javanano/src/test/java/com/google/protobuf/nano/unittest_single_nano.proto
\ |
| 308 javanano/src/test/java/com/google/protobuf/nano/NanoTest.java
\ |
| 309 javanano/src/test/java/com/google/protobuf/nano/unittest_simple_nano.proto
\ |
| 310 javanano/src/test/java/com/google/protobuf/nano/unittest_import_nano.proto
\ |
| 311 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_merge_nano.p
roto \ |
| 312 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_nano.proto
\ |
| 313 javanano/src/test/java/com/google/protobuf/nano/unittest_repeated_packables_na
no.proto \ |
| 314 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_singular_na
no.proto \ |
| 315 javanano/src/test/java/com/google/protobuf/nano/unittest_recursive_nano.proto
\ |
| 316 javanano/src/test/java/com/google/protobuf/nano/unittest_extension_packed_nano
.proto \ |
| 317 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_validity_nano.pr
oto \ |
| 318 javanano/src/test/java/com/google/protobuf/nano/unittest_stringutf8_nano.proto
\ |
| 319 javanano/src/test/java/com/google/protobuf/nano/unittest_multiple_nano.proto
\ |
| 320 javanano/src/test/java/com/google/protobuf/nano/unittest_enum_class_multiple_n
ano.proto \ |
| 321 javanano/src/test/java/com/google/protobuf/nano/map_test.proto
\ |
| 322 javanano/README.md
\ |
| 323 javanano/pom.xml |
| 324 |
| 325 objectivec_EXTRA_DIST= \ |
| 326 objectivec/DevTools/check_version_stamps.sh \ |
| 327 objectivec/DevTools/full_mac_build.sh \ |
| 328 objectivec/DevTools/pddm.py \ |
| 329 objectivec/DevTools/pddm_tests.py \ |
| 330 objectivec/generate_descriptors_proto.sh \ |
| 331 objectivec/google/protobuf/Any.pbobjc.h \ |
| 332 objectivec/google/protobuf/Any.pbobjc.m \ |
| 333 objectivec/google/protobuf/Api.pbobjc.h \ |
| 334 objectivec/google/protobuf/Api.pbobjc.m \ |
| 335 objectivec/google/protobuf/Descriptor.pbobjc.h \ |
| 336 objectivec/google/protobuf/Descriptor.pbobjc.m \ |
| 337 objectivec/google/protobuf/Duration.pbobjc.h \ |
| 338 objectivec/google/protobuf/Duration.pbobjc.m \ |
| 339 objectivec/google/protobuf/Empty.pbobjc.h \ |
| 340 objectivec/google/protobuf/Empty.pbobjc.m \ |
| 341 objectivec/google/protobuf/FieldMask.pbobjc.h \ |
| 342 objectivec/google/protobuf/FieldMask.pbobjc.m \ |
| 343 objectivec/google/protobuf/SourceContext.pbobjc.h \ |
| 344 objectivec/google/protobuf/SourceContext.pbobjc.m \ |
| 345 objectivec/google/protobuf/Struct.pbobjc.h \ |
| 346 objectivec/google/protobuf/Struct.pbobjc.m \ |
| 347 objectivec/google/protobuf/Timestamp.pbobjc.h \ |
| 348 objectivec/google/protobuf/Timestamp.pbobjc.m \ |
| 349 objectivec/google/protobuf/Type.pbobjc.h \ |
| 350 objectivec/google/protobuf/Type.pbobjc.m \ |
| 351 objectivec/google/protobuf/Wrappers.pbobjc.h \ |
| 352 objectivec/google/protobuf/Wrappers.pbobjc.m \ |
| 353 objectivec/GPBArray.h \ |
| 354 objectivec/GPBArray.m \ |
| 355 objectivec/GPBArray_PackagePrivate.h \ |
| 356 objectivec/GPBBootstrap.h \ |
| 357 objectivec/GPBCodedInputStream.h \ |
| 358 objectivec/GPBCodedInputStream.m \ |
| 359 objectivec/GPBCodedInputStream_PackagePrivate.h \ |
| 360 objectivec/GPBCodedOutputStream.h \ |
| 361 objectivec/GPBCodedOutputStream.m \ |
| 362 objectivec/GPBDescriptor.h \ |
| 363 objectivec/GPBDescriptor.m \ |
| 364 objectivec/GPBDescriptor_PackagePrivate.h \ |
| 365 objectivec/GPBDictionary.h \ |
| 366 objectivec/GPBDictionary.m \ |
| 367 objectivec/GPBDictionary_PackagePrivate.h \ |
| 368 objectivec/GPBExtensionInternals.h \ |
| 369 objectivec/GPBExtensionInternals.m \ |
| 370 objectivec/GPBExtensionRegistry.h \ |
| 371 objectivec/GPBExtensionRegistry.m \ |
| 372 objectivec/GPBMessage.h \ |
| 373 objectivec/GPBMessage.m \ |
| 374 objectivec/GPBMessage_PackagePrivate.h \ |
| 375 objectivec/GPBProtocolBuffers.h \ |
| 376 objectivec/GPBProtocolBuffers.m \ |
| 377 objectivec/GPBProtocolBuffers_RuntimeSupport.h \ |
| 378 objectivec/GPBRootObject.h \ |
| 379 objectivec/GPBRootObject.m \ |
| 380 objectivec/GPBRootObject_PackagePrivate.h \ |
| 381 objectivec/GPBRuntimeTypes.h \ |
| 382 objectivec/GPBUnknownField.h \ |
| 383 objectivec/GPBUnknownField.m \ |
| 384 objectivec/GPBUnknownField_PackagePrivate.h \ |
| 385 objectivec/GPBUnknownFieldSet.h \ |
| 386 objectivec/GPBUnknownFieldSet.m \ |
| 387 objectivec/GPBUnknownFieldSet_PackagePrivate.h \ |
| 388 objectivec/GPBUtilities.h \ |
| 389 objectivec/GPBUtilities.m \ |
| 390 objectivec/GPBUtilities_PackagePrivate.h \ |
| 391 objectivec/GPBWellKnownTypes.h \ |
| 392 objectivec/GPBWellKnownTypes.m \ |
| 393 objectivec/GPBWireFormat.h \ |
| 394 objectivec/GPBWireFormat.m \ |
| 395 objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \ |
| 396 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworksp
acedata \ |
| 397 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/Work
spaceSettings.xcsettings \ |
| 398 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C
727100C4ADB7.xcbaseline/FFE465CA-0E74-40E8-9F09-500B66B7DCB2.plist \ |
| 399 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C
727100C4ADB7.xcbaseline/Info.plist \ |
| 400 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTes
ts.xcscheme \ |
| 401 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffer
s.xcscheme \ |
| 402 objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \ |
| 403 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworksp
acedata \ |
| 404 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/Work
spaceSettings.xcsettings \ |
| 405 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTes
ts.xcscheme \ |
| 406 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffer
s.xcscheme \ |
| 407 objectivec/README.md \ |
| 408 objectivec/Tests/golden_message \ |
| 409 objectivec/Tests/golden_packed_fields_message \ |
| 410 objectivec/Tests/GPBARCUnittestProtos.m \ |
| 411 objectivec/Tests/GPBArrayTests.m \ |
| 412 objectivec/Tests/GPBCodedInputStreamTests.m \ |
| 413 objectivec/Tests/GPBCodedOuputStreamTests.m \ |
| 414 objectivec/Tests/GPBConcurrencyTests.m \ |
| 415 objectivec/Tests/GPBDescriptorTests.m \ |
| 416 objectivec/Tests/GPBDictionaryTests+Bool.m \ |
| 417 objectivec/Tests/GPBDictionaryTests+Int32.m \ |
| 418 objectivec/Tests/GPBDictionaryTests+Int64.m \ |
| 419 objectivec/Tests/GPBDictionaryTests+String.m \ |
| 420 objectivec/Tests/GPBDictionaryTests+UInt32.m \ |
| 421 objectivec/Tests/GPBDictionaryTests+UInt64.m \ |
| 422 objectivec/Tests/GPBDictionaryTests.pddm \ |
| 423 objectivec/Tests/GPBMessageTests+Merge.m \ |
| 424 objectivec/Tests/GPBMessageTests+Runtime.m \ |
| 425 objectivec/Tests/GPBMessageTests+Serialization.m \ |
| 426 objectivec/Tests/GPBMessageTests.m \ |
| 427 objectivec/Tests/GPBPerfTests.m \ |
| 428 objectivec/Tests/GPBStringTests.m \ |
| 429 objectivec/Tests/GPBSwiftTests.swift \ |
| 430 objectivec/Tests/GPBTestUtilities.h \ |
| 431 objectivec/Tests/GPBTestUtilities.m \ |
| 432 objectivec/Tests/GPBUnittestProtos.m \ |
| 433 objectivec/Tests/GPBUnknownFieldSetTest.m \ |
| 434 objectivec/Tests/GPBUtilitiesTests.m \ |
| 435 objectivec/Tests/GPBWellKnownTypesTest.m \ |
| 436 objectivec/Tests/GPBWireFormatTests.m \ |
| 437 objectivec/Tests/iOSTestHarness/AppDelegate.m \ |
| 438 objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings \ |
| 439 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.js
on \ |
| 440 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png
\ |
| 441 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6_2x.pn
g \ |
| 442 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png
\ |
| 443 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7_2x.pn
g \ |
| 444 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png
\ |
| 445 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6_2x.
png \ |
| 446 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_2x.
png \ |
| 447 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_3x.
png \ |
| 448 objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Conten
ts.json \ |
| 449 objectivec/Tests/iOSTestHarness/Info.plist \ |
| 450 objectivec/Tests/iOSTestHarness/LaunchScreen.xib \ |
| 451 objectivec/Tests/text_format_map_unittest_data.txt \ |
| 452 objectivec/Tests/text_format_unittest_data.txt \ |
| 453 objectivec/Tests/unittest_cycle.proto \ |
| 454 objectivec/Tests/unittest_objc.proto \ |
| 455 objectivec/Tests/unittest_runtime_proto2.proto \ |
| 456 objectivec/Tests/unittest_runtime_proto3.proto \ |
| 457 objectivec/Tests/UnitTests-Bridging-Header.h \ |
| 458 objectivec/Tests/UnitTests-Info.plist \ |
| 459 Protobuf.podspec |
| 460 |
| 461 python_EXTRA_DIST= \ |
| 462 python/MANIFEST.in \ |
| 463 python/google/protobuf/internal/api_implementation.cc \ |
| 464 python/google/protobuf/internal/api_implementation.py \ |
| 465 python/google/protobuf/internal/containers.py \ |
| 466 python/google/protobuf/internal/decoder.py \ |
| 467 python/google/protobuf/internal/descriptor_database_test.py \ |
| 468 python/google/protobuf/internal/descriptor_pool_test.py \ |
| 469 python/google/protobuf/internal/descriptor_pool_test1.proto \ |
| 470 python/google/protobuf/internal/descriptor_pool_test2.proto \ |
| 471 python/google/protobuf/internal/descriptor_test.py \ |
| 472 python/google/protobuf/internal/encoder.py \ |
| 473 python/google/protobuf/internal/enum_type_wrapper.py \ |
| 474 python/google/protobuf/internal/factory_test1.proto \ |
| 475 python/google/protobuf/internal/factory_test2.proto \ |
| 476 python/google/protobuf/internal/generator_test.py \ |
| 477 python/google/protobuf/internal/message_factory_test.py \ |
| 478 python/google/protobuf/internal/message_listener.py \ |
| 479 python/google/protobuf/internal/message_test.py \ |
| 480 python/google/protobuf/internal/missing_enum_values.proto \ |
| 481 python/google/protobuf/internal/more_extensions.proto \ |
| 482 python/google/protobuf/internal/more_extensions_dynamic.proto \ |
| 483 python/google/protobuf/internal/more_messages.proto \ |
| 484 python/google/protobuf/internal/_parameterized.py \ |
| 485 python/google/protobuf/internal/proto_builder_test.py \ |
| 486 python/google/protobuf/internal/python_message.py \ |
| 487 python/google/protobuf/internal/reflection_test.py \ |
| 488 python/google/protobuf/internal/service_reflection_test.py \ |
| 489 python/google/protobuf/internal/symbol_database_test.py \ |
| 490 python/google/protobuf/internal/test_bad_identifiers.proto \ |
| 491 python/google/protobuf/internal/test_util.py \ |
| 492 python/google/protobuf/internal/text_encoding_test.py \ |
| 493 python/google/protobuf/internal/text_format_test.py \ |
| 494 python/google/protobuf/internal/type_checkers.py \ |
| 495 python/google/protobuf/internal/unknown_fields_test.py \ |
| 496 python/google/protobuf/internal/wire_format.py \ |
| 497 python/google/protobuf/internal/wire_format_test.py \ |
| 498 python/google/protobuf/internal/__init__.py \ |
| 499 python/google/protobuf/internal/import_test_package/__init__.py \ |
| 500 python/google/protobuf/internal/import_test_package/inner.proto \ |
| 501 python/google/protobuf/internal/import_test_package/outer.proto \ |
| 502 python/google/protobuf/pyext/README \ |
| 503 python/google/protobuf/pyext/cpp_message.py \ |
| 504 python/google/protobuf/pyext/descriptor.h \ |
| 505 python/google/protobuf/pyext/descriptor.cc \ |
| 506 python/google/protobuf/pyext/descriptor_pool.h \ |
| 507 python/google/protobuf/pyext/descriptor_pool.cc \ |
| 508 python/google/protobuf/pyext/descriptor_containers.h \ |
| 509 python/google/protobuf/pyext/descriptor_containers.cc \ |
| 510 python/google/protobuf/pyext/extension_dict.h \ |
| 511 python/google/protobuf/pyext/extension_dict.cc \ |
| 512 python/google/protobuf/pyext/message.h \ |
| 513 python/google/protobuf/pyext/message.cc \ |
| 514 python/google/protobuf/pyext/message_map_container.cc \ |
| 515 python/google/protobuf/pyext/message_map_container.h \ |
| 516 python/google/protobuf/pyext/proto2_api_test.proto \ |
| 517 python/google/protobuf/pyext/python.proto \ |
| 518 python/google/protobuf/pyext/python_protobuf.h \ |
| 519 python/google/protobuf/pyext/repeated_composite_container.h \ |
| 520 python/google/protobuf/pyext/repeated_composite_container.cc \ |
| 521 python/google/protobuf/pyext/repeated_scalar_container.h \ |
| 522 python/google/protobuf/pyext/repeated_scalar_container.cc \ |
| 523 python/google/protobuf/pyext/scalar_map_container.cc \ |
| 524 python/google/protobuf/pyext/scalar_map_container.h \ |
| 525 python/google/protobuf/pyext/scoped_pyobject_ptr.h \ |
| 526 python/google/protobuf/pyext/__init__.py \ |
| 527 python/google/protobuf/descriptor.py \ |
| 528 python/google/protobuf/descriptor_database.py \ |
| 529 python/google/protobuf/descriptor_pool.py \ |
| 530 python/google/protobuf/message.py \ |
| 531 python/google/protobuf/message_factory.py \ |
| 532 python/google/protobuf/proto_builder.py \ |
| 533 python/google/protobuf/reflection.py \ |
| 534 python/google/protobuf/service.py \ |
| 535 python/google/protobuf/service_reflection.py \ |
| 536 python/google/protobuf/symbol_database.py \ |
| 537 python/google/protobuf/text_encoding.py \ |
| 538 python/google/protobuf/text_format.py \ |
| 539 python/google/protobuf/__init__.py \ |
| 540 python/google/__init__.py \ |
| 541 python/ez_setup.py \ |
| 542 python/setup.py \ |
| 543 python/mox.py \ |
| 544 python/stubout.py \ |
| 545 python/README.md |
| 546 |
| 547 ruby_EXTRA_DIST= \ |
| 548 ruby/Gemfile \ |
| 549 ruby/Gemfile.lock \ |
| 550 ruby/.gitignore \ |
| 551 ruby/README.md \ |
| 552 ruby/Rakefile \ |
| 553 ruby/ext/google/protobuf_c/defs.c \ |
| 554 ruby/ext/google/protobuf_c/encode_decode.c \ |
| 555 ruby/ext/google/protobuf_c/extconf.rb \ |
| 556 ruby/ext/google/protobuf_c/map.c \ |
| 557 ruby/ext/google/protobuf_c/message.c \ |
| 558 ruby/ext/google/protobuf_c/protobuf.c \ |
| 559 ruby/ext/google/protobuf_c/protobuf.h \ |
| 560 ruby/ext/google/protobuf_c/repeated_field.c \ |
| 561 ruby/ext/google/protobuf_c/storage.c \ |
| 562 ruby/ext/google/protobuf_c/upb.c \ |
| 563 ruby/ext/google/protobuf_c/upb.h \ |
| 564 ruby/google-protobuf.gemspec \ |
| 565 ruby/lib/google/protobuf/message_exts.rb \ |
| 566 ruby/lib/google/protobuf/repeated_field.rb \ |
| 567 ruby/lib/google/protobuf.rb \ |
| 568 ruby/pom.xml \ |
| 569 ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \ |
| 570 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \ |
| 571 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \ |
| 572 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \ |
| 573 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \ |
| 574 ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \ |
| 575 ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \ |
| 576 ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \ |
| 577 ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \ |
| 578 ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \ |
| 579 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \ |
| 580 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \ |
| 581 ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \ |
| 582 ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \ |
| 583 ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \ |
| 584 ruby/src/main/java/com/google/protobuf/jruby/Utils.java \ |
| 585 ruby/src/main/java/google/ProtobufJavaService.java \ |
| 586 ruby/src/main/sentinel.proto \ |
| 587 ruby/tests/basic.rb \ |
| 588 ruby/tests/repeated_field_test.rb \ |
| 589 ruby/tests/stress.rb \ |
| 590 ruby/tests/generated_code.proto \ |
| 591 ruby/tests/generated_code.rb \ |
| 592 ruby/tests/generated_code_test.rb \ |
| 593 ruby/travis-test.sh |
| 594 |
| 595 all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(javanano_EXTRA_DIST) $(
objectivec_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) |
| 596 |
| 597 EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \ |
| 598 autogen.sh \ |
| 599 generate_descriptor_proto.sh \ |
| 600 README.md \ |
| 601 INSTALL.txt \ |
| 602 LICENSE \ |
| 603 CONTRIBUTORS.txt \ |
| 604 CHANGES.txt \ |
| 605 update_file_lists.sh \ |
| 606 cmake/CMakeLists.txt \ |
| 607 cmake/libprotobuf.cmake \ |
| 608 cmake/libprotobuf-lite.cmake \ |
| 609 cmake/libprotoc.cmake \ |
| 610 cmake/protoc.cmake \ |
| 611 cmake/README.md \ |
| 612 cmake/tests.cmake \ |
| 613 editors/README.txt \ |
| 614 editors/proto.vim \ |
| 615 editors/protobuf-mode.el \ |
| 616 examples/README.txt \ |
| 617 examples/Makefile \ |
| 618 examples/addressbook.proto \ |
| 619 examples/add_person.cc \ |
| 620 examples/list_people.cc \ |
| 621 examples/AddPerson.java \ |
| 622 examples/ListPeople.java \ |
| 623 examples/add_person.py \ |
| 624 examples/list_people.py |
| 625 |
| 626 # Deletes all the files generated by autogen.sh. |
| 627 MAINTAINERCLEANFILES = \ |
| 628 aclocal.m4 \ |
| 629 config.guess \ |
| 630 config.sub \ |
| 631 configure \ |
| 632 depcomp \ |
| 633 install-sh \ |
| 634 ltmain.sh \ |
| 635 Makefile.in \ |
| 636 missing \ |
| 637 mkinstalldirs \ |
| 638 config.h.in \ |
| 639 stamp.h.in \ |
| 640 m4/ltsugar.m4 \ |
| 641 m4/libtool.m4 \ |
| 642 m4/ltversion.m4 \ |
| 643 m4/lt~obsolete.m4 \ |
| 644 m4/ltoptions.m4 |
OLD | NEW |