OLD | NEW |
1 ## Process this file with automake to produce Makefile.in | 1 ## Process this file with automake to produce Makefile.in |
2 | 2 |
3 ACLOCAL_AMFLAGS = -I m4 | 3 ACLOCAL_AMFLAGS = -I m4 |
4 | 4 |
5 AUTOMAKE_OPTIONS = foreign | 5 AUTOMAKE_OPTIONS = foreign |
6 | 6 |
7 # Build . before src so that our all-local and clean-local hooks kicks in at | 7 # Build . before src so that our all-local and clean-local hooks kicks in at |
8 # the right time. | 8 # the right time. |
9 SUBDIRS = . src | 9 SUBDIRS = . src |
10 | 10 |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 echo "Cleaning any ObjC pyc files"; \ | 44 echo "Cleaning any ObjC pyc files"; \ |
45 rm -f objectivec/DevTools/*.pyc; \ | 45 rm -f objectivec/DevTools/*.pyc; \ |
46 fi | 46 fi |
47 | 47 |
48 pkgconfigdir = $(libdir)/pkgconfig | 48 pkgconfigdir = $(libdir)/pkgconfig |
49 pkgconfig_DATA = protobuf.pc protobuf-lite.pc | 49 pkgconfig_DATA = protobuf.pc protobuf-lite.pc |
50 | 50 |
51 csharp_EXTRA_DIST= \ | 51 csharp_EXTRA_DIST= \ |
52 csharp/.gitignore \ | 52 csharp/.gitignore \ |
53 csharp/CHANGES.txt \ | 53 csharp/CHANGES.txt \ |
| 54 csharp/Google.Protobuf.Tools.nuspec \ |
54 csharp/README.md \ | 55 csharp/README.md \ |
55 csharp/build_packages.bat \ | 56 csharp/build_packages.bat \ |
| 57 csharp/build_tools.sh \ |
56 csharp/buildall.sh \ | 58 csharp/buildall.sh \ |
57 csharp/generate_protos.sh \ | 59 csharp/generate_protos.sh \ |
58 csharp/keys/Google.Protobuf.public.snk \ | 60 csharp/keys/Google.Protobuf.public.snk \ |
| 61 csharp/keys/Google.Protobuf.snk \ |
59 csharp/keys/README.md \ | 62 csharp/keys/README.md \ |
60 csharp/protos/unittest_issues.proto \ | 63 csharp/protos/unittest_issues.proto \ |
61 csharp/src/AddressBook/AddPerson.cs \ | 64 csharp/src/AddressBook/AddPerson.cs \ |
62 csharp/src/AddressBook/AddressBook.csproj \ | |
63 csharp/src/AddressBook/Addressbook.cs \ | 65 csharp/src/AddressBook/Addressbook.cs \ |
| 66 csharp/src/AddressBook/AddressBook.xproj \ |
64 csharp/src/AddressBook/ListPeople.cs \ | 67 csharp/src/AddressBook/ListPeople.cs \ |
65 csharp/src/AddressBook/Program.cs \ | 68 csharp/src/AddressBook/Program.cs \ |
66 csharp/src/AddressBook/Properties/AssemblyInfo.cs \ | |
67 csharp/src/AddressBook/SampleUsage.cs \ | 69 csharp/src/AddressBook/SampleUsage.cs \ |
68 csharp/src/AddressBook/app.config \ | 70 csharp/src/AddressBook/project.json \ |
69 csharp/src/Google.Protobuf.Conformance/App.config \ | |
70 csharp/src/Google.Protobuf.Conformance/Conformance.cs \ | 71 csharp/src/Google.Protobuf.Conformance/Conformance.cs \ |
71 csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.csproj \ | 72 csharp/src/Google.Protobuf.Conformance/Google.Protobuf.Conformance.xproj \ |
72 csharp/src/Google.Protobuf.Conformance/Program.cs \ | 73 csharp/src/Google.Protobuf.Conformance/Program.cs \ |
73 csharp/src/Google.Protobuf.Conformance/Properties/AssemblyInfo.cs \ | 74 csharp/src/Google.Protobuf.Conformance/project.json \ |
74 csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.csproj \ | 75 csharp/src/Google.Protobuf.JsonDump/Google.Protobuf.JsonDump.xproj \ |
75 csharp/src/Google.Protobuf.JsonDump/Program.cs \ | 76 csharp/src/Google.Protobuf.JsonDump/Program.cs \ |
76 csharp/src/Google.Protobuf.JsonDump/Properties/AssemblyInfo.cs \ | 77 csharp/src/Google.Protobuf.JsonDump/project.json \ |
77 csharp/src/Google.Protobuf.JsonDump/app.config \ | |
78 csharp/src/Google.Protobuf.Test/ByteStringTest.cs \ | 78 csharp/src/Google.Protobuf.Test/ByteStringTest.cs \ |
79 csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \ | 79 csharp/src/Google.Protobuf.Test/CodedInputStreamExtensions.cs \ |
80 csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \ | 80 csharp/src/Google.Protobuf.Test/CodedInputStreamTest.cs \ |
81 csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \ | 81 csharp/src/Google.Protobuf.Test/CodedOutputStreamTest.cs \ |
82 csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \ | 82 csharp/src/Google.Protobuf.Test/Collections/MapFieldTest.cs \ |
83 csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \ | 83 csharp/src/Google.Protobuf.Test/Collections/RepeatedFieldTest.cs \ |
84 csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \ | 84 csharp/src/Google.Protobuf.Test/Compatibility/PropertyInfoExtensionsTest.cs \ |
85 csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs \ | 85 csharp/src/Google.Protobuf.Test/Compatibility/TypeExtensionsTest.cs \ |
86 csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \ | 86 csharp/src/Google.Protobuf.Test/DeprecatedMemberTest.cs \ |
87 csharp/src/Google.Protobuf.Test/EqualityTester.cs \ | 87 csharp/src/Google.Protobuf.Test/EqualityTester.cs \ |
88 csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \ | 88 csharp/src/Google.Protobuf.Test/FieldCodecTest.cs \ |
89 csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \ | 89 csharp/src/Google.Protobuf.Test/GeneratedMessageTest.cs \ |
90 csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.csproj \ | 90 csharp/src/Google.Protobuf.Test/Google.Protobuf.Test.xproj \ |
91 csharp/src/Google.Protobuf.Test/IssuesTest.cs \ | 91 csharp/src/Google.Protobuf.Test/IssuesTest.cs \ |
92 csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \ | 92 csharp/src/Google.Protobuf.Test/JsonFormatterTest.cs \ |
93 csharp/src/Google.Protobuf.Test/JsonParserTest.cs \ | 93 csharp/src/Google.Protobuf.Test/JsonParserTest.cs \ |
94 csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs \ | 94 csharp/src/Google.Protobuf.Test/JsonTokenizerTest.cs \ |
95 csharp/src/Google.Protobuf.Test/Properties/AppManifest.xml \ | |
96 csharp/src/Google.Protobuf.Test/Properties/AssemblyInfo.cs \ | |
97 csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \ | 95 csharp/src/Google.Protobuf.Test/Reflection/DescriptorsTest.cs \ |
98 csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs \ | 96 csharp/src/Google.Protobuf.Test/Reflection/FieldAccessTest.cs \ |
99 csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs \ | 97 csharp/src/Google.Protobuf.Test/Reflection/TypeRegistryTest.cs \ |
100 csharp/src/Google.Protobuf.Test/SampleEnum.cs \ | 98 csharp/src/Google.Protobuf.Test/SampleEnum.cs \ |
101 csharp/src/Google.Protobuf.Test/SampleMessages.cs \ | 99 csharp/src/Google.Protobuf.Test/SampleMessages.cs \ |
102 csharp/src/Google.Protobuf.Test/TestCornerCases.cs \ | 100 csharp/src/Google.Protobuf.Test/TestCornerCases.cs \ |
| 101 csharp/src/Google.Protobuf.Test/TestProtos/ForeignMessagePartial.cs \ |
103 csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs \ | 102 csharp/src/Google.Protobuf.Test/TestProtos/MapUnittestProto3.cs \ |
104 csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs \ | 103 csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportProto3.cs \ |
105 csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs \ | 104 csharp/src/Google.Protobuf.Test/TestProtos/UnittestImportPublicProto3.cs \ |
106 csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs \ | 105 csharp/src/Google.Protobuf.Test/TestProtos/UnittestIssues.cs \ |
107 csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs \ | 106 csharp/src/Google.Protobuf.Test/TestProtos/UnittestProto3.cs \ |
108 csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs \ | 107 csharp/src/Google.Protobuf.Test/TestProtos/UnittestWellKnownTypes.cs \ |
109 csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \ | 108 csharp/src/Google.Protobuf.Test/WellKnownTypes/AnyTest.cs \ |
110 csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \ | 109 csharp/src/Google.Protobuf.Test/WellKnownTypes/DurationTest.cs \ |
| 110 csharp/src/Google.Protobuf.Test/WellKnownTypes/FieldMaskTest.cs \ |
111 csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \ | 111 csharp/src/Google.Protobuf.Test/WellKnownTypes/TimestampTest.cs \ |
112 csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \ | 112 csharp/src/Google.Protobuf.Test/WellKnownTypes/WrappersTest.cs \ |
113 csharp/src/Google.Protobuf.Test/packages.config \ | 113 csharp/src/Google.Protobuf.Test/project.json \ |
114 csharp/src/Google.Protobuf.sln \ | 114 csharp/src/Google.Protobuf.sln \ |
115 csharp/src/Google.Protobuf/ByteArray.cs \ | 115 csharp/src/Google.Protobuf/ByteArray.cs \ |
116 csharp/src/Google.Protobuf/ByteString.cs \ | 116 csharp/src/Google.Protobuf/ByteString.cs \ |
117 csharp/src/Google.Protobuf/CodedInputStream.cs \ | 117 csharp/src/Google.Protobuf/CodedInputStream.cs \ |
118 csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \ | 118 csharp/src/Google.Protobuf/CodedOutputStream.ComputeSize.cs \ |
119 csharp/src/Google.Protobuf/CodedOutputStream.cs \ | 119 csharp/src/Google.Protobuf/CodedOutputStream.cs \ |
120 csharp/src/Google.Protobuf/Collections/MapField.cs \ | 120 csharp/src/Google.Protobuf/Collections/MapField.cs \ |
121 csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \ | 121 csharp/src/Google.Protobuf/Collections/ReadOnlyDictionary.cs \ |
122 csharp/src/Google.Protobuf/Collections/RepeatedField.cs \ | 122 csharp/src/Google.Protobuf/Collections/RepeatedField.cs \ |
123 csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \ | 123 csharp/src/Google.Protobuf/Compatibility/PropertyInfoExtensions.cs \ |
124 csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \ | 124 csharp/src/Google.Protobuf/Compatibility/TypeExtensions.cs \ |
125 csharp/src/Google.Protobuf/FieldCodec.cs \ | 125 csharp/src/Google.Protobuf/FieldCodec.cs \ |
126 csharp/src/Google.Protobuf/FrameworkPortability.cs \ | 126 csharp/src/Google.Protobuf/FrameworkPortability.cs \ |
127 csharp/src/Google.Protobuf/Google.Protobuf.csproj \ | 127 csharp/src/Google.Protobuf/Google.Protobuf.xproj \ |
128 csharp/src/Google.Protobuf/Google.Protobuf.nuspec \ | 128 csharp/src/Google.Protobuf/ICustomDiagnosticMessage.cs \ |
129 csharp/src/Google.Protobuf/IDeepCloneable.cs \ | 129 csharp/src/Google.Protobuf/IDeepCloneable.cs \ |
130 csharp/src/Google.Protobuf/IMessage.cs \ | 130 csharp/src/Google.Protobuf/IMessage.cs \ |
131 csharp/src/Google.Protobuf/InvalidJsonException.cs \ | 131 csharp/src/Google.Protobuf/InvalidJsonException.cs \ |
132 csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \ | 132 csharp/src/Google.Protobuf/InvalidProtocolBufferException.cs \ |
133 csharp/src/Google.Protobuf/JsonFormatter.cs \ | 133 csharp/src/Google.Protobuf/JsonFormatter.cs \ |
134 csharp/src/Google.Protobuf/JsonParser.cs \ | 134 csharp/src/Google.Protobuf/JsonParser.cs \ |
135 csharp/src/Google.Protobuf/JsonToken.cs \ | 135 csharp/src/Google.Protobuf/JsonToken.cs \ |
136 csharp/src/Google.Protobuf/JsonTokenizer.cs \ | 136 csharp/src/Google.Protobuf/JsonTokenizer.cs \ |
137 csharp/src/Google.Protobuf/LimitedInputStream.cs \ | 137 csharp/src/Google.Protobuf/LimitedInputStream.cs \ |
138 csharp/src/Google.Protobuf/MessageExtensions.cs \ | 138 csharp/src/Google.Protobuf/MessageExtensions.cs \ |
(...skipping 27 matching lines...) Expand all Loading... |
166 csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \ | 166 csharp/src/Google.Protobuf/Reflection/ServiceDescriptor.cs \ |
167 csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \ | 167 csharp/src/Google.Protobuf/Reflection/SingleFieldAccessor.cs \ |
168 csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs \ | 168 csharp/src/Google.Protobuf/Reflection/TypeRegistry.cs \ |
169 csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \ | 169 csharp/src/Google.Protobuf/WellKnownTypes/Any.cs \ |
170 csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \ | 170 csharp/src/Google.Protobuf/WellKnownTypes/AnyPartial.cs \ |
171 csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \ | 171 csharp/src/Google.Protobuf/WellKnownTypes/Api.cs \ |
172 csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \ | 172 csharp/src/Google.Protobuf/WellKnownTypes/Duration.cs \ |
173 csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \ | 173 csharp/src/Google.Protobuf/WellKnownTypes/DurationPartial.cs \ |
174 csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \ | 174 csharp/src/Google.Protobuf/WellKnownTypes/Empty.cs \ |
175 csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \ | 175 csharp/src/Google.Protobuf/WellKnownTypes/FieldMask.cs \ |
| 176 csharp/src/Google.Protobuf/WellKnownTypes/FieldMaskPartial.cs \ |
176 csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \ | 177 csharp/src/Google.Protobuf/WellKnownTypes/SourceContext.cs \ |
177 csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \ | 178 csharp/src/Google.Protobuf/WellKnownTypes/Struct.cs \ |
178 csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \ | 179 csharp/src/Google.Protobuf/WellKnownTypes/TimeExtensions.cs \ |
179 csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \ | 180 csharp/src/Google.Protobuf/WellKnownTypes/Timestamp.cs \ |
180 csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \ | 181 csharp/src/Google.Protobuf/WellKnownTypes/TimestampPartial.cs \ |
181 csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \ | 182 csharp/src/Google.Protobuf/WellKnownTypes/Type.cs \ |
182 csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs \ | 183 csharp/src/Google.Protobuf/WellKnownTypes/ValuePartial.cs \ |
183 csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \ | 184 csharp/src/Google.Protobuf/WellKnownTypes/Wrappers.cs \ |
184 csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs \ | 185 csharp/src/Google.Protobuf/WellKnownTypes/WrappersPartial.cs \ |
185 csharp/src/Google.Protobuf/WireFormat.cs \ | 186 csharp/src/Google.Protobuf/WireFormat.cs \ |
186 csharp/src/Google.Protobuf/packages.config \ | 187 csharp/src/Google.Protobuf/project.json \ |
187 csharp/src/packages/repositories.config | 188 csharp/src/packages/repositories.config |
188 | 189 |
189 java_EXTRA_DIST=
\ | 190 java_EXTRA_DIST=
\ |
190 java/README.md
\ | 191 java/README.md
\ |
191 java/core/generate-sources-build.xml
\ | 192 java/core/generate-sources-build.xml
\ |
192 java/core/generate-test-sources-build.xml
\ | 193 java/core/generate-test-sources-build.xml
\ |
193 java/core/pom.xml
\ | 194 java/core/pom.xml
\ |
194 java/core/src/main/java/com/google/protobuf/AbstractMessage.java
\ | 195 java/core/src/main/java/com/google/protobuf/AbstractMessage.java
\ |
195 java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java
\ | 196 java/core/src/main/java/com/google/protobuf/AbstractMessageLite.java
\ |
196 java/core/src/main/java/com/google/protobuf/AbstractParser.java
\ | 197 java/core/src/main/java/com/google/protobuf/AbstractParser.java
\ |
197 java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java
\ | 198 java/core/src/main/java/com/google/protobuf/AbstractProtobufList.java
\ |
198 java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java
\ | 199 java/core/src/main/java/com/google/protobuf/BlockingRpcChannel.java
\ |
199 java/core/src/main/java/com/google/protobuf/BlockingService.java
\ | 200 java/core/src/main/java/com/google/protobuf/BlockingService.java
\ |
200 java/core/src/main/java/com/google/protobuf/BooleanArrayList.java
\ | 201 java/core/src/main/java/com/google/protobuf/BooleanArrayList.java
\ |
201 java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java
\ | 202 java/core/src/main/java/com/google/protobuf/ByteBufferWriter.java
\ |
202 java/core/src/main/java/com/google/protobuf/ByteOutput.java
\ | 203 java/core/src/main/java/com/google/protobuf/ByteOutput.java
\ |
203 java/core/src/main/java/com/google/protobuf/ByteString.java
\ | 204 java/core/src/main/java/com/google/protobuf/ByteString.java
\ |
204 java/core/src/main/java/com/google/protobuf/CodedInputStream.java
\ | 205 java/core/src/main/java/com/google/protobuf/CodedInputStream.java
\ |
205 java/core/src/main/java/com/google/protobuf/CodedOutputStream.java
\ | 206 java/core/src/main/java/com/google/protobuf/CodedOutputStream.java
\ |
206 java/core/src/main/java/com/google/protobuf/Descriptors.java
\ | 207 java/core/src/main/java/com/google/protobuf/Descriptors.java
\ |
207 java/core/src/main/java/com/google/protobuf/DoubleArrayList.java
\ | 208 java/core/src/main/java/com/google/protobuf/DoubleArrayList.java
\ |
208 java/core/src/main/java/com/google/protobuf/DynamicMessage.java
\ | 209 java/core/src/main/java/com/google/protobuf/DynamicMessage.java
\ |
| 210 java/core/src/main/java/com/google/protobuf/ExperimentalApi.java
\ |
209 java/core/src/main/java/com/google/protobuf/Extension.java
\ | 211 java/core/src/main/java/com/google/protobuf/Extension.java
\ |
210 java/core/src/main/java/com/google/protobuf/ExtensionLite.java
\ | 212 java/core/src/main/java/com/google/protobuf/ExtensionLite.java
\ |
211 java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java
\ | 213 java/core/src/main/java/com/google/protobuf/ExtensionRegistry.java
\ |
| 214 java/core/src/main/java/com/google/protobuf/ExtensionRegistryFactory.java
\ |
212 java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java
\ | 215 java/core/src/main/java/com/google/protobuf/ExtensionRegistryLite.java
\ |
213 java/core/src/main/java/com/google/protobuf/FieldSet.java
\ | 216 java/core/src/main/java/com/google/protobuf/FieldSet.java
\ |
214 java/core/src/main/java/com/google/protobuf/FloatArrayList.java
\ | 217 java/core/src/main/java/com/google/protobuf/FloatArrayList.java
\ |
215 java/core/src/main/java/com/google/protobuf/GeneratedMessage.java
\ | 218 java/core/src/main/java/com/google/protobuf/GeneratedMessage.java
\ |
216 java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java
\ | 219 java/core/src/main/java/com/google/protobuf/GeneratedMessageLite.java
\ |
| 220 java/core/src/main/java/com/google/protobuf/GeneratedMessageV3.java
\ |
217 java/core/src/main/java/com/google/protobuf/IntArrayList.java
\ | 221 java/core/src/main/java/com/google/protobuf/IntArrayList.java
\ |
218 java/core/src/main/java/com/google/protobuf/Internal.java
\ | 222 java/core/src/main/java/com/google/protobuf/Internal.java
\ |
219 java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.jav
a \ | 223 java/core/src/main/java/com/google/protobuf/InvalidProtocolBufferException.jav
a \ |
220 java/core/src/main/java/com/google/protobuf/LazyField.java
\ | 224 java/core/src/main/java/com/google/protobuf/LazyField.java
\ |
221 java/core/src/main/java/com/google/protobuf/LazyFieldLite.java
\ | 225 java/core/src/main/java/com/google/protobuf/LazyFieldLite.java
\ |
222 java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java
\ | 226 java/core/src/main/java/com/google/protobuf/LazyStringArrayList.java
\ |
223 java/core/src/main/java/com/google/protobuf/LazyStringList.java
\ | 227 java/core/src/main/java/com/google/protobuf/LazyStringList.java
\ |
224 java/core/src/main/java/com/google/protobuf/LongArrayList.java
\ | 228 java/core/src/main/java/com/google/protobuf/LongArrayList.java
\ |
225 java/core/src/main/java/com/google/protobuf/MapEntry.java
\ | 229 java/core/src/main/java/com/google/protobuf/MapEntry.java
\ |
226 java/core/src/main/java/com/google/protobuf/MapEntryLite.java
\ | 230 java/core/src/main/java/com/google/protobuf/MapEntryLite.java
\ |
227 java/core/src/main/java/com/google/protobuf/MapField.java
\ | 231 java/core/src/main/java/com/google/protobuf/MapField.java
\ |
228 java/core/src/main/java/com/google/protobuf/MapFieldLite.java
\ | 232 java/core/src/main/java/com/google/protobuf/MapFieldLite.java
\ |
229 java/core/src/main/java/com/google/protobuf/Message.java
\ | 233 java/core/src/main/java/com/google/protobuf/Message.java
\ |
230 java/core/src/main/java/com/google/protobuf/MessageLite.java
\ | 234 java/core/src/main/java/com/google/protobuf/MessageLite.java
\ |
231 java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java
\ | 235 java/core/src/main/java/com/google/protobuf/MessageLiteOrBuilder.java
\ |
232 java/core/src/main/java/com/google/protobuf/MessageLiteToString.java
\ | 236 java/core/src/main/java/com/google/protobuf/MessageLiteToString.java
\ |
233 java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java
\ | 237 java/core/src/main/java/com/google/protobuf/MessageOrBuilder.java
\ |
234 java/core/src/main/java/com/google/protobuf/MessageReflection.java
\ | 238 java/core/src/main/java/com/google/protobuf/MessageReflection.java
\ |
235 java/core/src/main/java/com/google/protobuf/MutabilityOracle.java
\ | 239 java/core/src/main/java/com/google/protobuf/MutabilityOracle.java
\ |
236 java/core/src/main/java/com/google/protobuf/NioByteString.java
\ | 240 java/core/src/main/java/com/google/protobuf/NioByteString.java
\ |
237 java/core/src/main/java/com/google/protobuf/Parser.java
\ | 241 java/core/src/main/java/com/google/protobuf/Parser.java
\ |
238 java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java
\ | 242 java/core/src/main/java/com/google/protobuf/ProtobufArrayList.java
\ |
239 java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java
\ | 243 java/core/src/main/java/com/google/protobuf/ProtocolMessageEnum.java
\ |
240 java/core/src/main/java/com/google/protobuf/ProtocolStringList.java
\ | 244 java/core/src/main/java/com/google/protobuf/ProtocolStringList.java
\ |
241 java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java
\ | 245 java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilder.java
\ |
| 246 java/core/src/main/java/com/google/protobuf/RepeatedFieldBuilderV3.java
\ |
242 java/core/src/main/java/com/google/protobuf/RopeByteString.java
\ | 247 java/core/src/main/java/com/google/protobuf/RopeByteString.java
\ |
243 java/core/src/main/java/com/google/protobuf/RpcCallback.java
\ | 248 java/core/src/main/java/com/google/protobuf/RpcCallback.java
\ |
244 java/core/src/main/java/com/google/protobuf/RpcChannel.java
\ | 249 java/core/src/main/java/com/google/protobuf/RpcChannel.java
\ |
245 java/core/src/main/java/com/google/protobuf/RpcController.java
\ | 250 java/core/src/main/java/com/google/protobuf/RpcController.java
\ |
246 java/core/src/main/java/com/google/protobuf/RpcUtil.java
\ | 251 java/core/src/main/java/com/google/protobuf/RpcUtil.java
\ |
247 java/core/src/main/java/com/google/protobuf/Service.java
\ | 252 java/core/src/main/java/com/google/protobuf/Service.java
\ |
248 java/core/src/main/java/com/google/protobuf/ServiceException.java
\ | 253 java/core/src/main/java/com/google/protobuf/ServiceException.java
\ |
249 java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java
\ | 254 java/core/src/main/java/com/google/protobuf/SingleFieldBuilder.java
\ |
| 255 java/core/src/main/java/com/google/protobuf/SingleFieldBuilderV3.java
\ |
250 java/core/src/main/java/com/google/protobuf/SmallSortedMap.java
\ | 256 java/core/src/main/java/com/google/protobuf/SmallSortedMap.java
\ |
251 java/core/src/main/java/com/google/protobuf/TextFormat.java
\ | 257 java/core/src/main/java/com/google/protobuf/TextFormat.java
\ |
252 java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java
\ | 258 java/core/src/main/java/com/google/protobuf/TextFormatEscaper.java
\ |
253 java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java
\ | 259 java/core/src/main/java/com/google/protobuf/TextFormatParseInfoTree.java
\ |
254 java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java
\ | 260 java/core/src/main/java/com/google/protobuf/TextFormatParseLocation.java
\ |
255 java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java
\ | 261 java/core/src/main/java/com/google/protobuf/UninitializedMessageException.java
\ |
256 java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java
\ | 262 java/core/src/main/java/com/google/protobuf/UnknownFieldSet.java
\ |
257 java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java
\ | 263 java/core/src/main/java/com/google/protobuf/UnknownFieldSetLite.java
\ |
258 java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java
\ | 264 java/core/src/main/java/com/google/protobuf/UnmodifiableLazyStringList.java
\ |
259 java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java
\ | 265 java/core/src/main/java/com/google/protobuf/UnsafeByteOperations.java
\ |
| 266 java/core/src/main/java/com/google/protobuf/UnsafeUtil.java
\ |
260 java/core/src/main/java/com/google/protobuf/Utf8.java
\ | 267 java/core/src/main/java/com/google/protobuf/Utf8.java
\ |
261 java/core/src/main/java/com/google/protobuf/WireFormat.java
\ | 268 java/core/src/main/java/com/google/protobuf/WireFormat.java
\ |
262 java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java
\ | 269 java/core/src/test/java/com/google/protobuf/AbstractMessageTest.java
\ |
263 java/core/src/test/java/com/google/protobuf/AnyTest.java
\ | 270 java/core/src/test/java/com/google/protobuf/AnyTest.java
\ |
264 java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java
\ | 271 java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java
\ |
265 java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java
\ | 272 java/core/src/test/java/com/google/protobuf/BoundedByteStringTest.java
\ |
266 java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java
\ | 273 java/core/src/test/java/com/google/protobuf/ByteBufferWriterTest.java
\ |
267 java/core/src/test/java/com/google/protobuf/ByteStringTest.java
\ | 274 java/core/src/test/java/com/google/protobuf/ByteStringTest.java
\ |
268 java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java
\ | 275 java/core/src/test/java/com/google/protobuf/CheckUtf8Test.java
\ |
269 java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java
\ | 276 java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java
\ |
270 java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java
\ | 277 java/core/src/test/java/com/google/protobuf/CodedOutputStreamTest.java
\ |
271 java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java
\ | 278 java/core/src/test/java/com/google/protobuf/DeprecatedFieldTest.java
\ |
272 java/core/src/test/java/com/google/protobuf/DescriptorsTest.java
\ | 279 java/core/src/test/java/com/google/protobuf/DescriptorsTest.java
\ |
273 java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java
\ | 280 java/core/src/test/java/com/google/protobuf/DoubleArrayListTest.java
\ |
274 java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java
\ | 281 java/core/src/test/java/com/google/protobuf/DynamicMessageTest.java
\ |
275 java/core/src/test/java/com/google/protobuf/EnumTest.java
\ | 282 java/core/src/test/java/com/google/protobuf/EnumTest.java
\ |
| 283 java/core/src/test/java/com/google/protobuf/ExtensionRegistryFactoryTest.java
\ |
276 java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java
\ | 284 java/core/src/test/java/com/google/protobuf/FieldPresenceTest.java
\ |
277 java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java
\ | 285 java/core/src/test/java/com/google/protobuf/FloatArrayListTest.java
\ |
278 java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java
\ | 286 java/core/src/test/java/com/google/protobuf/ForceFieldBuildersPreRun.java
\ |
279 java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java
\ | 287 java/core/src/test/java/com/google/protobuf/GeneratedMessageTest.java
\ |
280 java/core/src/test/java/com/google/protobuf/IntArrayListTest.java
\ | 288 java/core/src/test/java/com/google/protobuf/IntArrayListTest.java
\ |
281 java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java
\ | 289 java/core/src/test/java/com/google/protobuf/IsValidUtf8Test.java
\ |
282 java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java
\ | 290 java/core/src/test/java/com/google/protobuf/IsValidUtf8TestUtil.java
\ |
283 java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java
\ | 291 java/core/src/test/java/com/google/protobuf/LazyFieldLiteTest.java
\ |
284 java/core/src/test/java/com/google/protobuf/LazyFieldTest.java
\ | 292 java/core/src/test/java/com/google/protobuf/LazyFieldTest.java
\ |
285 java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java
\ | 293 java/core/src/test/java/com/google/protobuf/LazyMessageLiteTest.java
\ |
286 java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java
\ | 294 java/core/src/test/java/com/google/protobuf/LazyStringArrayListTest.java
\ |
287 java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java
\ | 295 java/core/src/test/java/com/google/protobuf/LazyStringEndToEndTest.java
\ |
288 java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java
\ | 296 java/core/src/test/java/com/google/protobuf/LiteEqualsAndHashTest.java
\ |
289 java/core/src/test/java/com/google/protobuf/LiteTest.java
\ | 297 java/core/src/test/java/com/google/protobuf/LiteTest.java
\ |
290 java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java
\ | 298 java/core/src/test/java/com/google/protobuf/LiteralByteStringTest.java
\ |
291 java/core/src/test/java/com/google/protobuf/LongArrayListTest.java
\ | 299 java/core/src/test/java/com/google/protobuf/LongArrayListTest.java
\ |
292 java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java
\ | 300 java/core/src/test/java/com/google/protobuf/MapForProto2LiteTest.java
\ |
293 java/core/src/test/java/com/google/protobuf/MapForProto2Test.java
\ | 301 java/core/src/test/java/com/google/protobuf/MapForProto2Test.java
\ |
294 java/core/src/test/java/com/google/protobuf/MapTest.java
\ | 302 java/core/src/test/java/com/google/protobuf/MapTest.java
\ |
295 java/core/src/test/java/com/google/protobuf/MessageTest.java
\ | 303 java/core/src/test/java/com/google/protobuf/MessageTest.java
\ |
296 java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java
\ | 304 java/core/src/test/java/com/google/protobuf/NestedBuildersTest.java
\ |
297 java/core/src/test/java/com/google/protobuf/NioByteStringTest.java
\ | 305 java/core/src/test/java/com/google/protobuf/NioByteStringTest.java
\ |
| 306 java/core/src/test/java/com/google/protobuf/ParseExceptionsTest.java
\ |
298 java/core/src/test/java/com/google/protobuf/ParserTest.java
\ | 307 java/core/src/test/java/com/google/protobuf/ParserTest.java
\ |
299 java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java
\ | 308 java/core/src/test/java/com/google/protobuf/ProtobufArrayListTest.java
\ |
300 java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderTest.java
\ | 309 java/core/src/test/java/com/google/protobuf/RepeatedFieldBuilderV3Test.java
\ |
301 java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java
\ | 310 java/core/src/test/java/com/google/protobuf/RopeByteStringSubstringTest.java
\ |
302 java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java
\ | 311 java/core/src/test/java/com/google/protobuf/RopeByteStringTest.java
\ |
303 java/core/src/test/java/com/google/protobuf/ServiceTest.java
\ | 312 java/core/src/test/java/com/google/protobuf/ServiceTest.java
\ |
304 java/core/src/test/java/com/google/protobuf/SingleFieldBuilderTest.java
\ | 313 java/core/src/test/java/com/google/protobuf/SingleFieldBuilderV3Test.java
\ |
305 java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java
\ | 314 java/core/src/test/java/com/google/protobuf/SmallSortedMapTest.java
\ |
306 java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java
\ | 315 java/core/src/test/java/com/google/protobuf/TestBadIdentifiers.java
\ |
307 java/core/src/test/java/com/google/protobuf/TestUtil.java
\ | 316 java/core/src/test/java/com/google/protobuf/TestUtil.java
\ |
| 317 java/core/src/test/java/com/google/protobuf/TestUtilLite.java
\ |
308 java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java
\ | 318 java/core/src/test/java/com/google/protobuf/TextFormatParseInfoTreeTest.java
\ |
309 java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java
\ | 319 java/core/src/test/java/com/google/protobuf/TextFormatParseLocationTest.java
\ |
310 java/core/src/test/java/com/google/protobuf/TextFormatTest.java
\ | 320 java/core/src/test/java/com/google/protobuf/TextFormatTest.java
\ |
311 java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java
\ | 321 java/core/src/test/java/com/google/protobuf/UnknownEnumValueTest.java
\ |
312 java/core/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java
\ | 322 java/core/src/test/java/com/google/protobuf/UnknownFieldSetLiteTest.java
\ |
313 java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java
\ | 323 java/core/src/test/java/com/google/protobuf/UnknownFieldSetTest.java
\ |
314 java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.jav
a \ | 324 java/core/src/test/java/com/google/protobuf/UnmodifiableLazyStringListTest.jav
a \ |
315 java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java
\ | 325 java/core/src/test/java/com/google/protobuf/WellKnownTypesTest.java
\ |
316 java/core/src/test/java/com/google/protobuf/WireFormatTest.java
\ | 326 java/core/src/test/java/com/google/protobuf/WireFormatTest.java
\ |
317 java/core/src/test/proto/com/google/protobuf/any_test.proto
\ | 327 java/core/src/test/proto/com/google/protobuf/any_test.proto
\ |
(...skipping 11 matching lines...) Expand all Loading... |
329 java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto
\ | 339 java/core/src/test/proto/com/google/protobuf/non_nested_extension.proto
\ |
330 java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto
\ | 340 java/core/src/test/proto/com/google/protobuf/non_nested_extension_lite.proto
\ |
331 java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto
\ | 341 java/core/src/test/proto/com/google/protobuf/outer_class_name_test.proto
\ |
332 java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto
\ | 342 java/core/src/test/proto/com/google/protobuf/outer_class_name_test2.proto
\ |
333 java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto
\ | 343 java/core/src/test/proto/com/google/protobuf/outer_class_name_test3.proto
\ |
334 java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto
\ | 344 java/core/src/test/proto/com/google/protobuf/test_bad_identifiers.proto
\ |
335 java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto
\ | 345 java/core/src/test/proto/com/google/protobuf/test_check_utf8.proto
\ |
336 java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto
\ | 346 java/core/src/test/proto/com/google/protobuf/test_check_utf8_size.proto
\ |
337 java/core/src/test/proto/com/google/protobuf/test_custom_options.proto
\ | 347 java/core/src/test/proto/com/google/protobuf/test_custom_options.proto
\ |
338 java/core/src/test/proto/com/google/protobuf/test_extra_interfaces.proto
\ | 348 java/core/src/test/proto/com/google/protobuf/test_extra_interfaces.proto
\ |
| 349 java/lite/generate-sources-build.xml
\ |
| 350 java/lite/generate-test-sources-build.xml
\ |
339 java/lite/pom.xml
\ | 351 java/lite/pom.xml
\ |
340 java/pom.xml
\ | 352 java/pom.xml
\ |
341 java/util/pom.xml
\ | 353 java/util/pom.xml
\ |
| 354 java/util/src/main/java/com/google/protobuf/util/Durations.java
\ |
342 java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java
\ | 355 java/util/src/main/java/com/google/protobuf/util/FieldMaskTree.java
\ |
343 java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java
\ | 356 java/util/src/main/java/com/google/protobuf/util/FieldMaskUtil.java
\ |
344 java/util/src/main/java/com/google/protobuf/util/JsonFormat.java
\ | 357 java/util/src/main/java/com/google/protobuf/util/JsonFormat.java
\ |
345 java/util/src/main/java/com/google/protobuf/util/TimeUtil.java
\ | 358 java/util/src/main/java/com/google/protobuf/util/TimeUtil.java
\ |
| 359 java/util/src/main/java/com/google/protobuf/util/Timestamps.java
\ |
346 java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java
\ | 360 java/util/src/test/java/com/google/protobuf/util/FieldMaskTreeTest.java
\ |
347 java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java
\ | 361 java/util/src/test/java/com/google/protobuf/util/FieldMaskUtilTest.java
\ |
348 java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java
\ | 362 java/util/src/test/java/com/google/protobuf/util/JsonFormatTest.java
\ |
349 java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java
\ | 363 java/util/src/test/java/com/google/protobuf/util/TimeUtilTest.java
\ |
350 java/util/src/test/proto/com/google/protobuf/util/json_test.proto | 364 java/util/src/test/proto/com/google/protobuf/util/json_test.proto |
351 | 365 |
352 javanano_EXTRA_DIST=
\ | 366 javanano_EXTRA_DIST=
\ |
353 javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java
\ | 367 javanano/src/main/java/com/google/protobuf/nano/CodedOutputByteBufferNano.java
\ |
354 javanano/src/main/java/com/google/protobuf/nano/FieldData.java
\ | 368 javanano/src/main/java/com/google/protobuf/nano/FieldData.java
\ |
355 javanano/src/main/java/com/google/protobuf/nano/FieldArray.java
\ | 369 javanano/src/main/java/com/google/protobuf/nano/FieldArray.java
\ |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 objectivec/GPBUtilities.h \ | 468 objectivec/GPBUtilities.h \ |
455 objectivec/GPBUtilities.m \ | 469 objectivec/GPBUtilities.m \ |
456 objectivec/GPBUtilities_PackagePrivate.h \ | 470 objectivec/GPBUtilities_PackagePrivate.h \ |
457 objectivec/GPBWellKnownTypes.h \ | 471 objectivec/GPBWellKnownTypes.h \ |
458 objectivec/GPBWellKnownTypes.m \ | 472 objectivec/GPBWellKnownTypes.m \ |
459 objectivec/GPBWireFormat.h \ | 473 objectivec/GPBWireFormat.h \ |
460 objectivec/GPBWireFormat.m \ | 474 objectivec/GPBWireFormat.m \ |
461 objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \ | 475 objectivec/ProtocolBuffers_iOS.xcodeproj/project.pbxproj \ |
462 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworksp
acedata \ | 476 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/contents.xcworksp
acedata \ |
463 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/Work
spaceSettings.xcsettings \ | 477 objectivec/ProtocolBuffers_iOS.xcodeproj/project.xcworkspace/xcshareddata/Work
spaceSettings.xcsettings \ |
464 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C
727100C4ADB7.xcbaseline/FFE465CA-0E74-40E8-9F09-500B66B7DCB2.plist \ | |
465 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcbaselines/8BBEA4A5147C
727100C4ADB7.xcbaseline/Info.plist \ | |
466 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTes
ts.xcscheme \ | 478 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/PerformanceTes
ts.xcscheme \ |
467 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffer
s.xcscheme \ | 479 objectivec/ProtocolBuffers_iOS.xcodeproj/xcshareddata/xcschemes/ProtocolBuffer
s.xcscheme \ |
468 objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \ | 480 objectivec/ProtocolBuffers_OSX.xcodeproj/project.pbxproj \ |
469 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworksp
acedata \ | 481 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/contents.xcworksp
acedata \ |
470 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/Work
spaceSettings.xcsettings \ | 482 objectivec/ProtocolBuffers_OSX.xcodeproj/project.xcworkspace/xcshareddata/Work
spaceSettings.xcsettings \ |
471 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTes
ts.xcscheme \ | 483 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/PerformanceTes
ts.xcscheme \ |
472 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffer
s.xcscheme \ | 484 objectivec/ProtocolBuffers_OSX.xcodeproj/xcshareddata/xcschemes/ProtocolBuffer
s.xcscheme \ |
473 objectivec/README.md \ | 485 objectivec/README.md \ |
| 486 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/pro
ject.pbxproj \ |
| 487 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/pro
ject.xcworkspace/contents.xcworkspacedata \ |
| 488 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester.xcodeproj/xcs
hareddata/xcschemes/OSXCocoaPodsTester.xcscheme \ |
| 489 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.h
\ |
| 490 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/AppDelegate.m
\ |
| 491 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Assets.xcasse
ts/AppIcon.appiconset/Contents.json \ |
| 492 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Base.lproj/Ma
inMenu.xib \ |
| 493 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/Info.plist \ |
| 494 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/OSXCocoaPodsTester/main.m \ |
| 495 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-framework \ |
| 496 objectivec/Tests/CocoaPods/OSXCocoaPodsTester/Podfile-static \ |
| 497 objectivec/Tests/CocoaPods/README.md \ |
| 498 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-framework \ |
| 499 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/Podfile-static \ |
| 500 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/pro
ject.pbxproj \ |
| 501 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/pro
ject.xcworkspace/contents.xcworkspacedata \ |
| 502 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester.xcodeproj/xcs
hareddata/xcschemes/iOSCocoaPodsTester.xcscheme \ |
| 503 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.h
\ |
| 504 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/AppDelegate.m
\ |
| 505 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Assets.xcasse
ts/AppIcon.appiconset/Contents.json \ |
| 506 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/La
unchScreen.storyboard \ |
| 507 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Base.lproj/Ma
in.storyboard \ |
| 508 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/Info.plist \ |
| 509 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewControlle
r.h \ |
| 510 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/ViewControlle
r.m \ |
| 511 objectivec/Tests/CocoaPods/iOSCocoaPodsTester/iOSCocoaPodsTester/main.m \ |
| 512 objectivec/Tests/CocoaPods/run_tests.sh \ |
474 objectivec/Tests/golden_message \ | 513 objectivec/Tests/golden_message \ |
475 objectivec/Tests/golden_packed_fields_message \ | 514 objectivec/Tests/golden_packed_fields_message \ |
476 objectivec/Tests/GPBARCUnittestProtos.m \ | 515 objectivec/Tests/GPBARCUnittestProtos.m \ |
477 objectivec/Tests/GPBArrayTests.m \ | 516 objectivec/Tests/GPBArrayTests.m \ |
478 objectivec/Tests/GPBCodedInputStreamTests.m \ | 517 objectivec/Tests/GPBCodedInputStreamTests.m \ |
479 objectivec/Tests/GPBCodedOuputStreamTests.m \ | 518 objectivec/Tests/GPBCodedOuputStreamTests.m \ |
480 objectivec/Tests/GPBConcurrencyTests.m \ | 519 objectivec/Tests/GPBConcurrencyTests.m \ |
481 objectivec/Tests/GPBDescriptorTests.m \ | 520 objectivec/Tests/GPBDescriptorTests.m \ |
482 objectivec/Tests/GPBDictionaryTests+Bool.m \ | 521 objectivec/Tests/GPBDictionaryTests+Bool.m \ |
483 objectivec/Tests/GPBDictionaryTests+Int32.m \ | 522 objectivec/Tests/GPBDictionaryTests+Int32.m \ |
484 objectivec/Tests/GPBDictionaryTests+Int64.m \ | 523 objectivec/Tests/GPBDictionaryTests+Int64.m \ |
485 objectivec/Tests/GPBDictionaryTests+String.m \ | 524 objectivec/Tests/GPBDictionaryTests+String.m \ |
486 objectivec/Tests/GPBDictionaryTests+UInt32.m \ | 525 objectivec/Tests/GPBDictionaryTests+UInt32.m \ |
487 objectivec/Tests/GPBDictionaryTests+UInt64.m \ | 526 objectivec/Tests/GPBDictionaryTests+UInt64.m \ |
488 objectivec/Tests/GPBDictionaryTests.pddm \ | 527 objectivec/Tests/GPBDictionaryTests.pddm \ |
489 objectivec/Tests/GPBMessageTests+Merge.m \ | 528 objectivec/Tests/GPBMessageTests+Merge.m \ |
490 objectivec/Tests/GPBMessageTests+Runtime.m \ | 529 objectivec/Tests/GPBMessageTests+Runtime.m \ |
491 objectivec/Tests/GPBMessageTests+Serialization.m \ | 530 objectivec/Tests/GPBMessageTests+Serialization.m \ |
492 objectivec/Tests/GPBMessageTests.m \ | 531 objectivec/Tests/GPBMessageTests.m \ |
493 objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \ | 532 objectivec/Tests/GPBObjectiveCPlusPlusTest.mm \ |
494 objectivec/Tests/GPBPerfTests.m \ | 533 objectivec/Tests/GPBPerfTests.m \ |
495 objectivec/Tests/GPBSwiftTests.swift \ | 534 objectivec/Tests/GPBSwiftTests.swift \ |
496 objectivec/Tests/GPBTestUtilities.h \ | 535 objectivec/Tests/GPBTestUtilities.h \ |
497 objectivec/Tests/GPBTestUtilities.m \ | 536 objectivec/Tests/GPBTestUtilities.m \ |
498 objectivec/Tests/GPBUnittestProtos.m \ | 537 objectivec/Tests/GPBUnittestProtos.m \ |
| 538 objectivec/Tests/GPBUnittestProtos2.m \ |
499 objectivec/Tests/GPBUnknownFieldSetTest.m \ | 539 objectivec/Tests/GPBUnknownFieldSetTest.m \ |
500 objectivec/Tests/GPBUtilitiesTests.m \ | 540 objectivec/Tests/GPBUtilitiesTests.m \ |
501 objectivec/Tests/GPBWellKnownTypesTest.m \ | 541 objectivec/Tests/GPBWellKnownTypesTest.m \ |
502 objectivec/Tests/GPBWireFormatTests.m \ | 542 objectivec/Tests/GPBWireFormatTests.m \ |
503 objectivec/Tests/iOSTestHarness/AppDelegate.m \ | 543 objectivec/Tests/iOSTestHarness/AppDelegate.m \ |
504 objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings \ | 544 objectivec/Tests/iOSTestHarness/en.lproj/InfoPlist.strings \ |
505 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.js
on \ | 545 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/Contents.js
on \ |
506 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png
\ | 546 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6.png
\ |
507 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6_2x.pn
g \ | 547 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad6_2x.pn
g \ |
508 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png
\ | 548 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7.png
\ |
509 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7_2x.pn
g \ | 549 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPad7_2x.pn
g \ |
510 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png
\ | 550 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6.png
\ |
511 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6_2x.
png \ | 551 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone6_2x.
png \ |
512 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_2x.
png \ | 552 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_2x.
png \ |
513 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_3x.
png \ | 553 objectivec/Tests/iOSTestHarness/Images.xcassets/AppIcon.appiconset/iPhone7_3x.
png \ |
514 objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Conten
ts.json \ | 554 objectivec/Tests/iOSTestHarness/Images.xcassets/LaunchImage.launchimage/Conten
ts.json \ |
515 objectivec/Tests/iOSTestHarness/Info.plist \ | 555 objectivec/Tests/iOSTestHarness/Info.plist \ |
516 objectivec/Tests/iOSTestHarness/LaunchScreen.xib \ | 556 objectivec/Tests/iOSTestHarness/LaunchScreen.xib \ |
517 objectivec/Tests/text_format_map_unittest_data.txt \ | 557 objectivec/Tests/text_format_map_unittest_data.txt \ |
518 objectivec/Tests/text_format_unittest_data.txt \ | 558 objectivec/Tests/text_format_unittest_data.txt \ |
519 objectivec/Tests/unittest_cycle.proto \ | 559 objectivec/Tests/unittest_cycle.proto \ |
| 560 objectivec/Tests/unittest_extension_chain_a.proto \ |
| 561 objectivec/Tests/unittest_extension_chain_b.proto \ |
| 562 objectivec/Tests/unittest_extension_chain_c.proto \ |
| 563 objectivec/Tests/unittest_extension_chain_d.proto \ |
| 564 objectivec/Tests/unittest_extension_chain_e.proto \ |
| 565 objectivec/Tests/unittest_extension_chain_f.proto \ |
| 566 objectivec/Tests/unittest_extension_chain_g.proto \ |
520 objectivec/Tests/unittest_objc.proto \ | 567 objectivec/Tests/unittest_objc.proto \ |
521 objectivec/Tests/unittest_objc_startup.proto \ | 568 objectivec/Tests/unittest_objc_startup.proto \ |
522 objectivec/Tests/unittest_runtime_proto2.proto \ | 569 objectivec/Tests/unittest_runtime_proto2.proto \ |
523 objectivec/Tests/unittest_runtime_proto3.proto \ | 570 objectivec/Tests/unittest_runtime_proto3.proto \ |
524 objectivec/Tests/UnitTests-Bridging-Header.h \ | 571 objectivec/Tests/UnitTests-Bridging-Header.h \ |
525 objectivec/Tests/UnitTests-Info.plist \ | 572 objectivec/Tests/UnitTests-Info.plist \ |
526 Protobuf.podspec | 573 Protobuf.podspec |
527 | 574 |
| 575 php_EXTRA_DIST= \ |
| 576 php/src/phpdoc.dist.xml \ |
| 577 php/src/Google/Protobuf/Internal/DescriptorPool.php \ |
| 578 php/src/Google/Protobuf/Internal/OneofField.php \ |
| 579 php/src/Google/Protobuf/Internal/MapEntry.php \ |
| 580 php/src/Google/Protobuf/Internal/InputStream.php \ |
| 581 php/src/Google/Protobuf/Internal/OutputStream.php \ |
| 582 php/src/Google/Protobuf/Internal/MessageBuilderContext.php \ |
| 583 php/src/Google/Protobuf/Internal/MapField.php \ |
| 584 php/src/Google/Protobuf/Internal/RepeatedField.php \ |
| 585 php/src/Google/Protobuf/Internal/Message.php \ |
| 586 php/src/Google/Protobuf/Internal/GPBWire.php \ |
| 587 php/src/Google/Protobuf/Internal/GPBType.php \ |
| 588 php/src/Google/Protobuf/Internal/GPBLabel.php \ |
| 589 php/src/Google/Protobuf/Internal/EnumBuilderContext.php \ |
| 590 php/src/Google/Protobuf/Internal/GPBUtil.php \ |
| 591 php/src/Google/Protobuf/descriptor_internal.pb.php \ |
| 592 php/src/Google/Protobuf/descriptor.php \ |
| 593 php/tests/encode_decode_test.php \ |
| 594 php/tests/test.sh \ |
| 595 php/tests/generated_class_test.php \ |
| 596 php/tests/array_test.php \ |
| 597 php/tests/php_implementation_test.php \ |
| 598 php/tests/test_include.proto \ |
| 599 php/tests/test_include.pb.php \ |
| 600 php/tests/map_field_test.php \ |
| 601 php/tests/test_base.php \ |
| 602 php/tests/test_no_namespace.proto \ |
| 603 php/tests/test_no_namespace.pb.php \ |
| 604 php/tests/test_util.php \ |
| 605 php/tests/test.proto \ |
| 606 php/tests/test.pb.php \ |
| 607 php/tests/memory_leak_test.php \ |
| 608 php/README.md \ |
| 609 php/ext/google/protobuf/utf8.h \ |
| 610 php/ext/google/protobuf/message.c \ |
| 611 php/ext/google/protobuf/utf8.c \ |
| 612 php/ext/google/protobuf/package.xml \ |
| 613 php/ext/google/protobuf/upb.h \ |
| 614 php/ext/google/protobuf/array.c \ |
| 615 php/ext/google/protobuf/encode_decode.c \ |
| 616 php/ext/google/protobuf/protobuf.h \ |
| 617 php/ext/google/protobuf/type_check.c \ |
| 618 php/ext/google/protobuf/def.c \ |
| 619 php/ext/google/protobuf/storage.c \ |
| 620 php/ext/google/protobuf/map.c \ |
| 621 php/ext/google/protobuf/config.m4 \ |
| 622 php/ext/google/protobuf/upb.c \ |
| 623 php/ext/google/protobuf/protobuf.c \ |
| 624 phpunit.xml \ |
| 625 composer.json |
| 626 |
528 python_EXTRA_DIST= \ | 627 python_EXTRA_DIST= \ |
529 python/MANIFEST.in \ | 628 python/MANIFEST.in \ |
530 python/google/__init__.py \ | 629 python/google/__init__.py \ |
531 python/google/protobuf/__init__.py \ | 630 python/google/protobuf/__init__.py \ |
532 python/google/protobuf/descriptor.py \ | 631 python/google/protobuf/descriptor.py \ |
533 python/google/protobuf/descriptor_database.py \ | 632 python/google/protobuf/descriptor_database.py \ |
534 python/google/protobuf/descriptor_pool.py \ | 633 python/google/protobuf/descriptor_pool.py \ |
535 python/google/protobuf/internal/__init__.py \ | 634 python/google/protobuf/internal/__init__.py \ |
536 python/google/protobuf/internal/_parameterized.py \ | 635 python/google/protobuf/internal/_parameterized.py \ |
537 python/google/protobuf/internal/any_test.proto \ | 636 python/google/protobuf/internal/any_test.proto \ |
538 python/google/protobuf/internal/any_test.proto \ | 637 python/google/protobuf/internal/any_test.proto \ |
539 python/google/protobuf/internal/api_implementation.cc \ | 638 python/google/protobuf/internal/api_implementation.cc \ |
540 python/google/protobuf/internal/api_implementation.py \ | 639 python/google/protobuf/internal/api_implementation.py \ |
541 python/google/protobuf/internal/containers.py \ | 640 python/google/protobuf/internal/containers.py \ |
542 python/google/protobuf/internal/decoder.py \ | 641 python/google/protobuf/internal/decoder.py \ |
543 python/google/protobuf/internal/descriptor_database_test.py \ | 642 python/google/protobuf/internal/descriptor_database_test.py \ |
544 python/google/protobuf/internal/descriptor_pool_test.py \ | 643 python/google/protobuf/internal/descriptor_pool_test.py \ |
545 python/google/protobuf/internal/descriptor_pool_test1.proto \ | 644 python/google/protobuf/internal/descriptor_pool_test1.proto \ |
546 python/google/protobuf/internal/descriptor_pool_test2.proto \ | 645 python/google/protobuf/internal/descriptor_pool_test2.proto \ |
547 python/google/protobuf/internal/descriptor_test.py \ | 646 python/google/protobuf/internal/descriptor_test.py \ |
548 python/google/protobuf/internal/encoder.py \ | 647 python/google/protobuf/internal/encoder.py \ |
549 python/google/protobuf/internal/enum_type_wrapper.py \ | 648 python/google/protobuf/internal/enum_type_wrapper.py \ |
550 python/google/protobuf/internal/factory_test1.proto \ | 649 python/google/protobuf/internal/factory_test1.proto \ |
551 python/google/protobuf/internal/factory_test2.proto \ | 650 python/google/protobuf/internal/factory_test2.proto \ |
| 651 python/google/protobuf/internal/file_options_test.proto \ |
552 python/google/protobuf/internal/generator_test.py \ | 652 python/google/protobuf/internal/generator_test.py \ |
553 python/google/protobuf/internal/import_test_package/__init__.py \ | 653 python/google/protobuf/internal/import_test_package/__init__.py \ |
554 python/google/protobuf/internal/import_test_package/inner.proto \ | 654 python/google/protobuf/internal/import_test_package/inner.proto \ |
555 python/google/protobuf/internal/import_test_package/outer.proto \ | 655 python/google/protobuf/internal/import_test_package/outer.proto \ |
556 python/google/protobuf/internal/json_format_test.py \ | 656 python/google/protobuf/internal/json_format_test.py \ |
557 python/google/protobuf/internal/message_factory_test.py \ | 657 python/google/protobuf/internal/message_factory_test.py \ |
558 python/google/protobuf/internal/message_listener.py \ | 658 python/google/protobuf/internal/message_listener.py \ |
559 python/google/protobuf/internal/message_set_extensions.proto \ | 659 python/google/protobuf/internal/message_set_extensions.proto \ |
560 python/google/protobuf/internal/message_test.py \ | 660 python/google/protobuf/internal/message_test.py \ |
561 python/google/protobuf/internal/missing_enum_values.proto \ | 661 python/google/protobuf/internal/missing_enum_values.proto \ |
562 python/google/protobuf/internal/more_extensions.proto \ | 662 python/google/protobuf/internal/more_extensions.proto \ |
563 python/google/protobuf/internal/more_extensions_dynamic.proto \ | 663 python/google/protobuf/internal/more_extensions_dynamic.proto \ |
564 python/google/protobuf/internal/more_messages.proto \ | 664 python/google/protobuf/internal/more_messages.proto \ |
565 python/google/protobuf/internal/packed_field_test.proto \ | 665 python/google/protobuf/internal/packed_field_test.proto \ |
566 python/google/protobuf/internal/proto_builder_test.py \ | 666 python/google/protobuf/internal/proto_builder_test.py \ |
567 python/google/protobuf/internal/python_message.py \ | 667 python/google/protobuf/internal/python_message.py \ |
568 python/google/protobuf/internal/reflection_test.py \ | 668 python/google/protobuf/internal/reflection_test.py \ |
569 python/google/protobuf/internal/service_reflection_test.py \ | 669 python/google/protobuf/internal/service_reflection_test.py \ |
570 python/google/protobuf/internal/symbol_database_test.py \ | 670 python/google/protobuf/internal/symbol_database_test.py \ |
571 python/google/protobuf/internal/test_bad_identifiers.proto \ | 671 python/google/protobuf/internal/test_bad_identifiers.proto \ |
572 python/google/protobuf/internal/test_util.py \ | 672 python/google/protobuf/internal/test_util.py \ |
| 673 python/google/protobuf/internal/testing_refleaks.py \ |
573 python/google/protobuf/internal/text_encoding_test.py \ | 674 python/google/protobuf/internal/text_encoding_test.py \ |
574 python/google/protobuf/internal/text_format_test.py \ | 675 python/google/protobuf/internal/text_format_test.py \ |
575 python/google/protobuf/internal/type_checkers.py \ | 676 python/google/protobuf/internal/type_checkers.py \ |
576 python/google/protobuf/internal/unknown_fields_test.py \ | 677 python/google/protobuf/internal/unknown_fields_test.py \ |
577 python/google/protobuf/internal/well_known_types.py \ | 678 python/google/protobuf/internal/well_known_types.py \ |
578 python/google/protobuf/internal/well_known_types.py \ | 679 python/google/protobuf/internal/well_known_types.py \ |
579 python/google/protobuf/internal/well_known_types_test.py \ | 680 python/google/protobuf/internal/well_known_types_test.py \ |
580 python/google/protobuf/internal/well_known_types_test.py \ | 681 python/google/protobuf/internal/well_known_types_test.py \ |
581 python/google/protobuf/internal/wire_format.py \ | 682 python/google/protobuf/internal/wire_format.py \ |
582 python/google/protobuf/internal/wire_format_test.py \ | 683 python/google/protobuf/internal/wire_format_test.py \ |
(...skipping 11 matching lines...) Expand all Loading... |
594 python/google/protobuf/pyext/descriptor_database.cc \ | 695 python/google/protobuf/pyext/descriptor_database.cc \ |
595 python/google/protobuf/pyext/descriptor_database.h \ | 696 python/google/protobuf/pyext/descriptor_database.h \ |
596 python/google/protobuf/pyext/descriptor_pool.cc \ | 697 python/google/protobuf/pyext/descriptor_pool.cc \ |
597 python/google/protobuf/pyext/descriptor_pool.h \ | 698 python/google/protobuf/pyext/descriptor_pool.h \ |
598 python/google/protobuf/pyext/extension_dict.cc \ | 699 python/google/protobuf/pyext/extension_dict.cc \ |
599 python/google/protobuf/pyext/extension_dict.h \ | 700 python/google/protobuf/pyext/extension_dict.h \ |
600 python/google/protobuf/pyext/map_container.cc \ | 701 python/google/protobuf/pyext/map_container.cc \ |
601 python/google/protobuf/pyext/map_container.h \ | 702 python/google/protobuf/pyext/map_container.h \ |
602 python/google/protobuf/pyext/message.cc \ | 703 python/google/protobuf/pyext/message.cc \ |
603 python/google/protobuf/pyext/message.h \ | 704 python/google/protobuf/pyext/message.h \ |
| 705 python/google/protobuf/pyext/message_factory.cc \ |
| 706 python/google/protobuf/pyext/message_factory.h \ |
| 707 python/google/protobuf/pyext/message_module.cc \ |
604 python/google/protobuf/pyext/proto2_api_test.proto \ | 708 python/google/protobuf/pyext/proto2_api_test.proto \ |
605 python/google/protobuf/pyext/python.proto \ | 709 python/google/protobuf/pyext/python.proto \ |
606 python/google/protobuf/pyext/python_protobuf.h \ | 710 python/google/protobuf/pyext/python_protobuf.h \ |
607 python/google/protobuf/pyext/repeated_composite_container.cc \ | 711 python/google/protobuf/pyext/repeated_composite_container.cc \ |
608 python/google/protobuf/pyext/repeated_composite_container.h \ | 712 python/google/protobuf/pyext/repeated_composite_container.h \ |
609 python/google/protobuf/pyext/repeated_scalar_container.cc \ | 713 python/google/protobuf/pyext/repeated_scalar_container.cc \ |
610 python/google/protobuf/pyext/repeated_scalar_container.h \ | 714 python/google/protobuf/pyext/repeated_scalar_container.h \ |
611 python/google/protobuf/pyext/scoped_pyobject_ptr.h \ | 715 python/google/protobuf/pyext/scoped_pyobject_ptr.h \ |
612 python/google/protobuf/reflection.py \ | 716 python/google/protobuf/reflection.py \ |
613 python/google/protobuf/service.py \ | 717 python/google/protobuf/service.py \ |
614 python/google/protobuf/service_reflection.py \ | 718 python/google/protobuf/service_reflection.py \ |
615 python/google/protobuf/symbol_database.py \ | 719 python/google/protobuf/symbol_database.py \ |
616 python/google/protobuf/text_encoding.py \ | 720 python/google/protobuf/text_encoding.py \ |
617 python/google/protobuf/text_format.py \ | 721 python/google/protobuf/text_format.py \ |
618 python/mox.py \ | 722 python/mox.py \ |
| 723 python/setup.cfg \ |
619 python/setup.py \ | 724 python/setup.py \ |
620 python/stubout.py \ | 725 python/stubout.py \ |
621 python/tox.ini \ | 726 python/tox.ini \ |
622 python/README.md | 727 python/README.md |
623 | 728 |
624 ruby_EXTRA_DIST= \ | 729 ruby_EXTRA_DIST= \ |
625 ruby/Gemfile \ | 730 ruby/Gemfile \ |
626 ruby/Gemfile.lock \ | |
627 ruby/.gitignore \ | 731 ruby/.gitignore \ |
628 ruby/README.md \ | 732 ruby/README.md \ |
629 ruby/Rakefile \ | 733 ruby/Rakefile \ |
630 ruby/ext/google/protobuf_c/defs.c \ | 734 ruby/ext/google/protobuf_c/defs.c \ |
631 ruby/ext/google/protobuf_c/encode_decode.c \ | 735 ruby/ext/google/protobuf_c/encode_decode.c \ |
632 ruby/ext/google/protobuf_c/extconf.rb \ | 736 ruby/ext/google/protobuf_c/extconf.rb \ |
633 ruby/ext/google/protobuf_c/map.c \ | 737 ruby/ext/google/protobuf_c/map.c \ |
634 ruby/ext/google/protobuf_c/message.c \ | 738 ruby/ext/google/protobuf_c/message.c \ |
635 ruby/ext/google/protobuf_c/protobuf.c \ | 739 ruby/ext/google/protobuf_c/protobuf.c \ |
636 ruby/ext/google/protobuf_c/protobuf.h \ | 740 ruby/ext/google/protobuf_c/protobuf.h \ |
637 ruby/ext/google/protobuf_c/repeated_field.c \ | 741 ruby/ext/google/protobuf_c/repeated_field.c \ |
638 ruby/ext/google/protobuf_c/storage.c \ | 742 ruby/ext/google/protobuf_c/storage.c \ |
639 ruby/ext/google/protobuf_c/upb.c \ | 743 ruby/ext/google/protobuf_c/upb.c \ |
640 ruby/ext/google/protobuf_c/upb.h \ | 744 ruby/ext/google/protobuf_c/upb.h \ |
641 ruby/google-protobuf.gemspec \ | 745 ruby/google-protobuf.gemspec \ |
642 ruby/lib/google/protobuf/message_exts.rb \ | 746 ruby/lib/google/protobuf/message_exts.rb \ |
643 ruby/lib/google/protobuf/repeated_field.rb \ | 747 ruby/lib/google/protobuf/repeated_field.rb \ |
| 748 ruby/lib/google/protobuf/well_known_types.rb \ |
644 ruby/lib/google/protobuf.rb \ | 749 ruby/lib/google/protobuf.rb \ |
645 ruby/pom.xml \ | 750 ruby/pom.xml \ |
646 ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \ | 751 ruby/src/main/java/com/google/protobuf/jruby/RubyBuilder.java \ |
647 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \ | 752 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptor.java \ |
648 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \ | 753 ruby/src/main/java/com/google/protobuf/jruby/RubyDescriptorPool.java \ |
649 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \ | 754 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumBuilderContext.java \ |
650 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \ | 755 ruby/src/main/java/com/google/protobuf/jruby/RubyEnumDescriptor.java \ |
651 ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \ | 756 ruby/src/main/java/com/google/protobuf/jruby/RubyEnum.java \ |
652 ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \ | 757 ruby/src/main/java/com/google/protobuf/jruby/RubyFieldDescriptor.java \ |
653 ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \ | 758 ruby/src/main/java/com/google/protobuf/jruby/RubyMap.java \ |
654 ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \ | 759 ruby/src/main/java/com/google/protobuf/jruby/RubyMessageBuilderContext.java \ |
655 ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \ | 760 ruby/src/main/java/com/google/protobuf/jruby/RubyMessage.java \ |
656 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \ | 761 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofBuilderContext.java \ |
657 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \ | 762 ruby/src/main/java/com/google/protobuf/jruby/RubyOneofDescriptor.java \ |
658 ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \ | 763 ruby/src/main/java/com/google/protobuf/jruby/RubyProtobuf.java \ |
659 ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \ | 764 ruby/src/main/java/com/google/protobuf/jruby/RubyRepeatedField.java \ |
660 ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \ | 765 ruby/src/main/java/com/google/protobuf/jruby/SentinelOuterClass.java \ |
661 ruby/src/main/java/com/google/protobuf/jruby/Utils.java \ | 766 ruby/src/main/java/com/google/protobuf/jruby/Utils.java \ |
662 ruby/src/main/java/google/ProtobufJavaService.java \ | 767 ruby/src/main/java/google/ProtobufJavaService.java \ |
663 ruby/src/main/sentinel.proto \ | 768 ruby/src/main/sentinel.proto \ |
664 ruby/tests/basic.rb \ | 769 ruby/tests/basic.rb \ |
665 ruby/tests/repeated_field_test.rb \ | 770 ruby/tests/repeated_field_test.rb \ |
666 ruby/tests/stress.rb \ | 771 ruby/tests/stress.rb \ |
667 ruby/tests/generated_code.proto \ | 772 ruby/tests/generated_code.proto \ |
| 773 ruby/tests/test_import.proto \ |
668 ruby/tests/generated_code_test.rb \ | 774 ruby/tests/generated_code_test.rb \ |
| 775 ruby/tests/well_known_types_test.rb \ |
669 ruby/travis-test.sh | 776 ruby/travis-test.sh |
670 | 777 |
671 js_EXTRA_DIST= \ | 778 js_EXTRA_DIST= \ |
672 js/README.md \ | 779 js/README.md \ |
673 js/binary/arith.js \ | 780 js/binary/arith.js \ |
674 js/binary/arith_test.js \ | 781 js/binary/arith_test.js \ |
675 js/binary/constants.js \ | 782 js/binary/constants.js \ |
676 js/binary/decoder.js \ | 783 js/binary/decoder.js \ |
677 js/binary/decoder_test.js \ | 784 js/binary/decoder_test.js \ |
678 js/binary/proto_test.js \ | 785 js/binary/encoder.js \ |
679 js/binary/reader.js \ | 786 js/binary/proto_test.js \ |
680 js/binary/reader_test.js \ | 787 js/binary/reader.js \ |
681 js/binary/utils.js \ | 788 js/binary/reader_test.js \ |
682 js/binary/utils_test.js \ | 789 js/binary/utils.js \ |
683 js/binary/writer.js \ | 790 js/binary/utils_test.js \ |
684 js/binary/writer_test.js \ | 791 js/binary/writer.js \ |
685 js/data.proto \ | 792 js/binary/writer_test.js \ |
686 js/debug.js \ | 793 js/commonjs/export.js \ |
687 js/debug_test.js \ | 794 js/commonjs/export_asserts.js \ |
688 js/gulpfile.js \ | 795 js/commonjs/export_testdeps.js \ |
689 js/jasmine.json \ | 796 js/commonjs/import_test.js \ |
690 js/message.js \ | 797 js/commonjs/jasmine.json \ |
691 js/message_test.js \ | 798 js/commonjs/rewrite_tests_for_commonjs.js \ |
692 js/node_loader.js \ | 799 js/commonjs/test6/test6.proto \ |
693 js/package.json \ | 800 js/commonjs/test7/test7.proto \ |
694 js/proto3_test.js \ | 801 js/data.proto \ |
695 js/proto3_test.proto \ | 802 js/debug.js \ |
696 js/test.proto \ | 803 js/debug_test.js \ |
697 js/test2.proto \ | 804 js/gulpfile.js \ |
698 js/test3.proto \ | 805 js/jasmine.json \ |
699 js/test4.proto \ | 806 js/map.js \ |
700 js/test5.proto \ | 807 js/maps_test.js \ |
701 js/test_bootstrap.js \ | 808 js/message.js \ |
702 js/testbinary.proto \ | 809 js/message_test.js \ |
| 810 js/node_loader.js \ |
| 811 js/package.json \ |
| 812 js/proto3_test.js \ |
| 813 js/proto3_test.proto \ |
| 814 js/test.proto \ |
| 815 js/test2.proto \ |
| 816 js/test3.proto \ |
| 817 js/test4.proto \ |
| 818 js/test5.proto \ |
| 819 js/test_bootstrap.js \ |
| 820 js/testbinary.proto \ |
703 js/testempty.proto | 821 js/testempty.proto |
704 | 822 |
705 all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(javanano_EXTRA_DIST) $(
objectivec_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST) $(js_EXTRA_DIST) | 823 all_EXTRA_DIST=$(csharp_EXTRA_DIST) $(java_EXTRA_DIST) $(javanano_EXTRA_DIST) $(
objectivec_EXTRA_DIST) $(php_EXTRA_DIST) $(python_EXTRA_DIST) $(ruby_EXTRA_DIST)
$(js_EXTRA_DIST) |
706 | 824 |
707 EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \ | 825 EXTRA_DIST = $(@DIST_LANG@_EXTRA_DIST) \ |
708 autogen.sh \ | 826 autogen.sh \ |
709 generate_descriptor_proto.sh \ | 827 generate_descriptor_proto.sh \ |
710 README.md \ | 828 README.md \ |
711 LICENSE \ | 829 LICENSE \ |
712 CONTRIBUTORS.txt \ | 830 CONTRIBUTORS.txt \ |
713 CHANGES.txt \ | 831 CHANGES.txt \ |
714 update_file_lists.sh \ | 832 update_file_lists.sh \ |
715 BUILD \ | 833 BUILD \ |
716 gmock.BUILD \ | 834 gmock.BUILD \ |
717 WORKSPACE \ | 835 WORKSPACE \ |
718 cmake/CMakeLists.txt \ | 836 cmake/CMakeLists.txt \ |
719 cmake/README.md \ | 837 cmake/README.md \ |
| 838 cmake/examples.cmake \ |
720 cmake/extract_includes.bat.in \ | 839 cmake/extract_includes.bat.in \ |
721 cmake/install.cmake \ | 840 cmake/install.cmake \ |
722 cmake/libprotobuf.cmake \ | 841 cmake/libprotobuf.cmake \ |
723 cmake/libprotobuf-lite.cmake \ | 842 cmake/libprotobuf-lite.cmake \ |
724 cmake/libprotoc.cmake \ | 843 cmake/libprotoc.cmake \ |
725 cmake/protobuf-config-version.cmake.in \ | 844 cmake/protobuf-config-version.cmake.in \ |
726 cmake/protobuf-config.cmake.in \ | 845 cmake/protobuf-config.cmake.in \ |
727 cmake/protobuf-module.cmake.in \ | 846 cmake/protobuf-module.cmake.in \ |
| 847 cmake/protobuf-options.cmake \ |
728 cmake/protoc.cmake \ | 848 cmake/protoc.cmake \ |
729 cmake/tests.cmake \ | 849 cmake/tests.cmake \ |
730 editors/README.txt \ | 850 editors/README.txt \ |
731 editors/proto.vim \ | 851 editors/proto.vim \ |
732 editors/protobuf-mode.el \ | 852 editors/protobuf-mode.el \ |
| 853 examples/CMakeLists.txt \ |
733 examples/README.txt \ | 854 examples/README.txt \ |
734 examples/Makefile \ | 855 examples/Makefile \ |
735 examples/addressbook.proto \ | 856 examples/addressbook.proto \ |
736 examples/add_person.cc \ | 857 examples/add_person.cc \ |
737 examples/add_person.go \ | 858 examples/add_person.go \ |
738 examples/add_person_test.go \ | 859 examples/add_person_test.go \ |
739 examples/list_people.cc \ | 860 examples/list_people.cc \ |
740 examples/list_people.go \ | 861 examples/list_people.go \ |
741 examples/AddPerson.java \ | 862 examples/AddPerson.java \ |
| 863 examples/CMakeLists.txt \ |
742 examples/ListPeople.java \ | 864 examples/ListPeople.java \ |
743 examples/add_person.py \ | 865 examples/add_person.py \ |
744 examples/list_people.py \ | 866 examples/list_people.py \ |
745 examples/list_people_test.go \ | 867 examples/list_people_test.go \ |
746 protobuf.bzl \ | 868 protobuf.bzl \ |
747 six.BUILD \ | 869 six.BUILD \ |
748 util/python/BUILD | 870 util/python/BUILD |
749 | 871 |
750 # Deletes all the files generated by autogen.sh. | 872 # Deletes all the files generated by autogen.sh. |
751 MAINTAINERCLEANFILES = \ | 873 MAINTAINERCLEANFILES = \ |
752 aclocal.m4 \ | 874 aclocal.m4 \ |
753 ar-lib \ | 875 ar-lib \ |
754 config.guess \ | 876 config.guess \ |
755 config.sub \ | 877 config.sub \ |
756 configure \ | 878 configure \ |
757 depcomp \ | 879 depcomp \ |
758 install-sh \ | 880 install-sh \ |
759 ltmain.sh \ | 881 ltmain.sh \ |
760 Makefile.in \ | 882 Makefile.in \ |
761 missing \ | 883 missing \ |
762 mkinstalldirs \ | 884 mkinstalldirs \ |
763 config.h.in \ | 885 config.h.in \ |
764 stamp.h.in \ | 886 stamp.h.in \ |
765 m4/ltsugar.m4 \ | 887 m4/ltsugar.m4 \ |
766 m4/libtool.m4 \ | 888 m4/libtool.m4 \ |
767 m4/ltversion.m4 \ | 889 m4/ltversion.m4 \ |
768 m4/lt~obsolete.m4 \ | 890 m4/lt~obsolete.m4 \ |
769 m4/ltoptions.m4 | 891 m4/ltoptions.m4 |
OLD | NEW |