Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Side by Side Diff: third_party/protobuf/src/Makefile.am

Issue 21208003: Update protobuf to r428, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 ## Process this file with automake to produce Makefile.in 1 ## Process this file with automake to produce Makefile.in
2 2
3 if HAVE_ZLIB 3 if HAVE_ZLIB
4 GZCHECKPROGRAMS = zcgzip zcgunzip 4 GZCHECKPROGRAMS = zcgzip zcgunzip
5 GZHEADERS = google/protobuf/io/gzip_stream.h 5 GZHEADERS = google/protobuf/io/gzip_stream.h
6 GZTESTS = google/protobuf/io/gzip_stream_unittest.sh 6 GZTESTS = google/protobuf/io/gzip_stream_unittest.sh
7 else 7 else
8 GZCHECKPROGRAMS = 8 GZCHECKPROGRAMS =
9 GZHEADERS = 9 GZHEADERS =
10 GZTESTS = 10 GZTESTS =
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 google/protobuf/stubs/atomicops_internals_x86_gcc.h \ 45 google/protobuf/stubs/atomicops_internals_x86_gcc.h \
46 google/protobuf/stubs/atomicops_internals_x86_msvc.h \ 46 google/protobuf/stubs/atomicops_internals_x86_msvc.h \
47 google/protobuf/stubs/common.h \ 47 google/protobuf/stubs/common.h \
48 google/protobuf/stubs/platform_macros.h \ 48 google/protobuf/stubs/platform_macros.h \
49 google/protobuf/stubs/once.h \ 49 google/protobuf/stubs/once.h \
50 google/protobuf/descriptor.h \ 50 google/protobuf/descriptor.h \
51 google/protobuf/descriptor.pb.h \ 51 google/protobuf/descriptor.pb.h \
52 google/protobuf/descriptor_database.h \ 52 google/protobuf/descriptor_database.h \
53 google/protobuf/dynamic_message.h \ 53 google/protobuf/dynamic_message.h \
54 google/protobuf/extension_set.h \ 54 google/protobuf/extension_set.h \
55 google/protobuf/generated_enum_reflection.h \
55 google/protobuf/generated_message_util.h \ 56 google/protobuf/generated_message_util.h \
56 google/protobuf/generated_message_reflection.h \ 57 google/protobuf/generated_message_reflection.h \
57 google/protobuf/message.h \ 58 google/protobuf/message.h \
58 google/protobuf/message_lite.h \ 59 google/protobuf/message_lite.h \
59 google/protobuf/reflection_ops.h \ 60 google/protobuf/reflection_ops.h \
60 google/protobuf/repeated_field.h \ 61 google/protobuf/repeated_field.h \
61 google/protobuf/service.h \ 62 google/protobuf/service.h \
62 google/protobuf/text_format.h \ 63 google/protobuf/text_format.h \
63 google/protobuf/unknown_field_set.h \ 64 google/protobuf/unknown_field_set.h \
64 google/protobuf/wire_format.h \ 65 google/protobuf/wire_format.h \
(...skipping 19 matching lines...) Expand all
84 lib_LTLIBRARIES = libprotobuf-lite.la libprotobuf.la libprotoc.la 85 lib_LTLIBRARIES = libprotobuf-lite.la libprotobuf.la libprotoc.la
85 86
86 libprotobuf_lite_la_LIBADD = $(PTHREAD_LIBS) 87 libprotobuf_lite_la_LIBADD = $(PTHREAD_LIBS)
87 libprotobuf_lite_la_LDFLAGS = -version-info 7:0:0 -export-dynamic -no-undefined 88 libprotobuf_lite_la_LDFLAGS = -version-info 7:0:0 -export-dynamic -no-undefined
88 libprotobuf_lite_la_SOURCES = \ 89 libprotobuf_lite_la_SOURCES = \
89 google/protobuf/stubs/atomicops_internals_x86_gcc.cc \ 90 google/protobuf/stubs/atomicops_internals_x86_gcc.cc \
90 google/protobuf/stubs/common.cc \ 91 google/protobuf/stubs/common.cc \
91 google/protobuf/stubs/once.cc \ 92 google/protobuf/stubs/once.cc \
92 google/protobuf/stubs/hash.h \ 93 google/protobuf/stubs/hash.h \
93 google/protobuf/stubs/map-util.h \ 94 google/protobuf/stubs/map-util.h \
94 google/protobuf/stubs/stl_util-inl.h \ 95 google/protobuf/stubs/stl_util.h \
96 google/protobuf/stubs/stringprintf.cc \
97 google/protobuf/stubs/stringprintf.h \
98 google/protobuf/stubs/template_util.h \
99 google/protobuf/stubs/type_traits.h \
95 google/protobuf/extension_set.cc \ 100 google/protobuf/extension_set.cc \
96 google/protobuf/generated_message_util.cc \ 101 google/protobuf/generated_message_util.cc \
97 google/protobuf/message_lite.cc \ 102 google/protobuf/message_lite.cc \
98 google/protobuf/repeated_field.cc \ 103 google/protobuf/repeated_field.cc \
99 google/protobuf/wire_format_lite.cc \ 104 google/protobuf/wire_format_lite.cc \
100 google/protobuf/io/coded_stream.cc \ 105 google/protobuf/io/coded_stream.cc \
101 google/protobuf/io/coded_stream_inl.h \ 106 google/protobuf/io/coded_stream_inl.h \
102 google/protobuf/io/zero_copy_stream.cc \ 107 google/protobuf/io/zero_copy_stream.cc \
103 google/protobuf/io/zero_copy_stream_impl_lite.cc 108 google/protobuf/io/zero_copy_stream_impl_lite.cc
104 109
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 google/protobuf/compiler/cpp/cpp_field.h \ 156 google/protobuf/compiler/cpp/cpp_field.h \
152 google/protobuf/compiler/cpp/cpp_file.cc \ 157 google/protobuf/compiler/cpp/cpp_file.cc \
153 google/protobuf/compiler/cpp/cpp_file.h \ 158 google/protobuf/compiler/cpp/cpp_file.h \
154 google/protobuf/compiler/cpp/cpp_generator.cc \ 159 google/protobuf/compiler/cpp/cpp_generator.cc \
155 google/protobuf/compiler/cpp/cpp_helpers.cc \ 160 google/protobuf/compiler/cpp/cpp_helpers.cc \
156 google/protobuf/compiler/cpp/cpp_helpers.h \ 161 google/protobuf/compiler/cpp/cpp_helpers.h \
157 google/protobuf/compiler/cpp/cpp_message.cc \ 162 google/protobuf/compiler/cpp/cpp_message.cc \
158 google/protobuf/compiler/cpp/cpp_message.h \ 163 google/protobuf/compiler/cpp/cpp_message.h \
159 google/protobuf/compiler/cpp/cpp_message_field.cc \ 164 google/protobuf/compiler/cpp/cpp_message_field.cc \
160 google/protobuf/compiler/cpp/cpp_message_field.h \ 165 google/protobuf/compiler/cpp/cpp_message_field.h \
166 google/protobuf/compiler/cpp/cpp_options.h \
161 google/protobuf/compiler/cpp/cpp_primitive_field.cc \ 167 google/protobuf/compiler/cpp/cpp_primitive_field.cc \
162 google/protobuf/compiler/cpp/cpp_primitive_field.h \ 168 google/protobuf/compiler/cpp/cpp_primitive_field.h \
163 google/protobuf/compiler/cpp/cpp_service.cc \ 169 google/protobuf/compiler/cpp/cpp_service.cc \
164 google/protobuf/compiler/cpp/cpp_service.h \ 170 google/protobuf/compiler/cpp/cpp_service.h \
165 google/protobuf/compiler/cpp/cpp_string_field.cc \ 171 google/protobuf/compiler/cpp/cpp_string_field.cc \
166 google/protobuf/compiler/cpp/cpp_string_field.h \ 172 google/protobuf/compiler/cpp/cpp_string_field.h \
167 google/protobuf/compiler/java/java_enum.cc \ 173 google/protobuf/compiler/java/java_enum.cc \
168 google/protobuf/compiler/java/java_enum.h \ 174 google/protobuf/compiler/java/java_enum.h \
169 google/protobuf/compiler/java/java_enum_field.cc \ 175 google/protobuf/compiler/java/java_enum_field.cc \
170 google/protobuf/compiler/java/java_enum_field.h \ 176 google/protobuf/compiler/java/java_enum_field.h \
171 google/protobuf/compiler/java/java_extension.cc \ 177 google/protobuf/compiler/java/java_extension.cc \
172 google/protobuf/compiler/java/java_extension.h \ 178 google/protobuf/compiler/java/java_extension.h \
173 google/protobuf/compiler/java/java_field.cc \ 179 google/protobuf/compiler/java/java_field.cc \
174 google/protobuf/compiler/java/java_field.h \ 180 google/protobuf/compiler/java/java_field.h \
175 google/protobuf/compiler/java/java_file.cc \ 181 google/protobuf/compiler/java/java_file.cc \
176 google/protobuf/compiler/java/java_file.h \ 182 google/protobuf/compiler/java/java_file.h \
177 google/protobuf/compiler/java/java_generator.cc \ 183 google/protobuf/compiler/java/java_generator.cc \
178 google/protobuf/compiler/java/java_helpers.cc \ 184 google/protobuf/compiler/java/java_helpers.cc \
179 google/protobuf/compiler/java/java_helpers.h \ 185 google/protobuf/compiler/java/java_helpers.h \
180 google/protobuf/compiler/java/java_message.cc \ 186 google/protobuf/compiler/java/java_message.cc \
181 google/protobuf/compiler/java/java_message.h \ 187 google/protobuf/compiler/java/java_message.h \
182 google/protobuf/compiler/java/java_message_field.cc \ 188 google/protobuf/compiler/java/java_message_field.cc \
183 google/protobuf/compiler/java/java_message_field.h \ 189 google/protobuf/compiler/java/java_message_field.h \
184 google/protobuf/compiler/java/java_primitive_field.cc \ 190 google/protobuf/compiler/java/java_primitive_field.cc \
185 google/protobuf/compiler/java/java_primitive_field.h \ 191 google/protobuf/compiler/java/java_primitive_field.h \
186 google/protobuf/compiler/java/java_service.cc \ 192 google/protobuf/compiler/java/java_service.cc \
187 google/protobuf/compiler/java/java_service.h \ 193 google/protobuf/compiler/java/java_service.h \
188 google/protobuf/compiler/java/java_string_field.cc \ 194 google/protobuf/compiler/java/java_string_field.cc \
189 google/protobuf/compiler/java/java_string_field.h \ 195 google/protobuf/compiler/java/java_string_field.h \
196 google/protobuf/compiler/java/java_doc_comment.cc \
197 google/protobuf/compiler/java/java_doc_comment.h \
190 google/protobuf/compiler/python/python_generator.cc 198 google/protobuf/compiler/python/python_generator.cc
191 199
192 bin_PROGRAMS = protoc 200 bin_PROGRAMS = protoc
193 protoc_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la 201 protoc_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la
194 protoc_SOURCES = google/protobuf/compiler/main.cc 202 protoc_SOURCES = google/protobuf/compiler/main.cc
195 203
196 # Tests ============================================================== 204 # Tests ==============================================================
197 205
198 protoc_inputs = \ 206 protoc_inputs = \
199 google/protobuf/unittest.proto \ 207 google/protobuf/unittest.proto \
200 google/protobuf/unittest_empty.proto \ 208 google/protobuf/unittest_empty.proto \
201 google/protobuf/unittest_import.proto \ 209 google/protobuf/unittest_import.proto \
210 google/protobuf/unittest_import_public.proto \
202 google/protobuf/unittest_mset.proto \ 211 google/protobuf/unittest_mset.proto \
203 google/protobuf/unittest_optimize_for.proto \ 212 google/protobuf/unittest_optimize_for.proto \
204 google/protobuf/unittest_embed_optimize_for.proto \ 213 google/protobuf/unittest_embed_optimize_for.proto \
205 google/protobuf/unittest_custom_options.proto \ 214 google/protobuf/unittest_custom_options.proto \
206 google/protobuf/unittest_lite.proto \ 215 google/protobuf/unittest_lite.proto \
207 google/protobuf/unittest_import_lite.proto \ 216 google/protobuf/unittest_import_lite.proto \
217 google/protobuf/unittest_import_public_lite.proto \
208 google/protobuf/unittest_lite_imports_nonlite.proto \ 218 google/protobuf/unittest_lite_imports_nonlite.proto \
209 google/protobuf/unittest_no_generic_services.proto \ 219 google/protobuf/unittest_no_generic_services.proto \
210 google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto 220 google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto
211 221
212 EXTRA_DIST = \ 222 EXTRA_DIST = \
213 $(protoc_inputs) \ 223 $(protoc_inputs) \
214 solaris/libstdc++.la \ 224 solaris/libstdc++.la \
215 google/protobuf/io/gzip_stream.h \ 225 google/protobuf/io/gzip_stream.h \
216 google/protobuf/io/gzip_stream_unittest.sh \ 226 google/protobuf/io/gzip_stream_unittest.sh \
217 google/protobuf/testdata/golden_message \ 227 google/protobuf/testdata/golden_message \
218 google/protobuf/testdata/golden_packed_fields_message \ 228 google/protobuf/testdata/golden_packed_fields_message \
219 google/protobuf/testdata/text_format_unittest_data.txt \ 229 google/protobuf/testdata/text_format_unittest_data.txt \
220 google/protobuf/testdata/text_format_unittest_extensions_data.txt \ 230 google/protobuf/testdata/text_format_unittest_extensions_data.txt \
221 google/protobuf/package_info.h \ 231 google/protobuf/package_info.h \
222 google/protobuf/io/package_info.h \ 232 google/protobuf/io/package_info.h \
223 google/protobuf/compiler/package_info.h \ 233 google/protobuf/compiler/package_info.h \
224 google/protobuf/compiler/zip_output_unittest.sh \ 234 google/protobuf/compiler/zip_output_unittest.sh \
225 google/protobuf/unittest_enormous_descriptor.proto 235 google/protobuf/unittest_enormous_descriptor.proto
226 236
227 protoc_lite_outputs = \ 237 protoc_lite_outputs = \
228 google/protobuf/unittest_lite.pb.cc \ 238 google/protobuf/unittest_lite.pb.cc \
229 google/protobuf/unittest_lite.pb.h \ 239 google/protobuf/unittest_lite.pb.h \
230 google/protobuf/unittest_import_lite.pb.cc \ 240 google/protobuf/unittest_import_lite.pb.cc \
231 google/protobuf/unittest_import_lite.pb.h 241 google/protobuf/unittest_import_lite.pb.h \
242 google/protobuf/unittest_import_public_lite.pb.cc \
243 google/protobuf/unittest_import_public_lite.pb.h
232 244
233 protoc_outputs = \ 245 protoc_outputs = \
234 $(protoc_lite_outputs) \ 246 $(protoc_lite_outputs) \
235 google/protobuf/unittest.pb.cc \ 247 google/protobuf/unittest.pb.cc \
236 google/protobuf/unittest.pb.h \ 248 google/protobuf/unittest.pb.h \
237 google/protobuf/unittest_empty.pb.cc \ 249 google/protobuf/unittest_empty.pb.cc \
238 google/protobuf/unittest_empty.pb.h \ 250 google/protobuf/unittest_empty.pb.h \
239 google/protobuf/unittest_import.pb.cc \ 251 google/protobuf/unittest_import.pb.cc \
240 google/protobuf/unittest_import.pb.h \ 252 google/protobuf/unittest_import.pb.h \
253 google/protobuf/unittest_import_public.pb.cc \
254 google/protobuf/unittest_import_public.pb.h \
241 google/protobuf/unittest_mset.pb.cc \ 255 google/protobuf/unittest_mset.pb.cc \
242 google/protobuf/unittest_mset.pb.h \ 256 google/protobuf/unittest_mset.pb.h \
243 google/protobuf/unittest_optimize_for.pb.cc \ 257 google/protobuf/unittest_optimize_for.pb.cc \
244 google/protobuf/unittest_optimize_for.pb.h \ 258 google/protobuf/unittest_optimize_for.pb.h \
245 google/protobuf/unittest_embed_optimize_for.pb.cc \ 259 google/protobuf/unittest_embed_optimize_for.pb.cc \
246 google/protobuf/unittest_embed_optimize_for.pb.h \ 260 google/protobuf/unittest_embed_optimize_for.pb.h \
247 google/protobuf/unittest_custom_options.pb.cc \ 261 google/protobuf/unittest_custom_options.pb.cc \
248 google/protobuf/unittest_custom_options.pb.h \ 262 google/protobuf/unittest_custom_options.pb.h \
249 google/protobuf/unittest_lite_imports_nonlite.pb.cc \ 263 google/protobuf/unittest_lite_imports_nonlite.pb.cc \
250 google/protobuf/unittest_lite_imports_nonlite.pb.h \ 264 google/protobuf/unittest_lite_imports_nonlite.pb.h \
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 -I$(top_builddir)/gtest/include 305 -I$(top_builddir)/gtest/include
292 # Disable optimization for tests unless the user explicitly asked for it, 306 # Disable optimization for tests unless the user explicitly asked for it,
293 # since test_util.cc takes forever to compile with optimization (with GCC). 307 # since test_util.cc takes forever to compile with optimization (with GCC).
294 # See configure.ac for more info. 308 # See configure.ac for more info.
295 protobuf_test_CXXFLAGS = $(NO_OPT_CXXFLAGS) 309 protobuf_test_CXXFLAGS = $(NO_OPT_CXXFLAGS)
296 protobuf_test_SOURCES = \ 310 protobuf_test_SOURCES = \
297 google/protobuf/stubs/common_unittest.cc \ 311 google/protobuf/stubs/common_unittest.cc \
298 google/protobuf/stubs/once_unittest.cc \ 312 google/protobuf/stubs/once_unittest.cc \
299 google/protobuf/stubs/strutil_unittest.cc \ 313 google/protobuf/stubs/strutil_unittest.cc \
300 google/protobuf/stubs/structurally_valid_unittest.cc \ 314 google/protobuf/stubs/structurally_valid_unittest.cc \
315 google/protobuf/stubs/stringprintf_unittest.cc \
316 google/protobuf/stubs/template_util_unittest.cc \
317 google/protobuf/stubs/type_traits_unittest.cc \
301 google/protobuf/descriptor_database_unittest.cc \ 318 google/protobuf/descriptor_database_unittest.cc \
302 google/protobuf/descriptor_unittest.cc \ 319 google/protobuf/descriptor_unittest.cc \
303 google/protobuf/dynamic_message_unittest.cc \ 320 google/protobuf/dynamic_message_unittest.cc \
304 google/protobuf/extension_set_unittest.cc \ 321 google/protobuf/extension_set_unittest.cc \
305 google/protobuf/generated_message_reflection_unittest.cc \ 322 google/protobuf/generated_message_reflection_unittest.cc \
306 google/protobuf/message_unittest.cc \ 323 google/protobuf/message_unittest.cc \
307 google/protobuf/reflection_ops_unittest.cc \ 324 google/protobuf/reflection_ops_unittest.cc \
308 google/protobuf/repeated_field_unittest.cc \ 325 google/protobuf/repeated_field_unittest.cc \
326 google/protobuf/repeated_field_reflection_unittest.cc \
309 google/protobuf/text_format_unittest.cc \ 327 google/protobuf/text_format_unittest.cc \
310 google/protobuf/unknown_field_set_unittest.cc \ 328 google/protobuf/unknown_field_set_unittest.cc \
311 google/protobuf/wire_format_unittest.cc \ 329 google/protobuf/wire_format_unittest.cc \
312 google/protobuf/io/coded_stream_unittest.cc \ 330 google/protobuf/io/coded_stream_unittest.cc \
313 google/protobuf/io/printer_unittest.cc \ 331 google/protobuf/io/printer_unittest.cc \
314 google/protobuf/io/tokenizer_unittest.cc \ 332 google/protobuf/io/tokenizer_unittest.cc \
315 google/protobuf/io/zero_copy_stream_unittest.cc \ 333 google/protobuf/io/zero_copy_stream_unittest.cc \
316 google/protobuf/compiler/command_line_interface_unittest.cc \ 334 google/protobuf/compiler/command_line_interface_unittest.cc \
317 google/protobuf/compiler/importer_unittest.cc \ 335 google/protobuf/compiler/importer_unittest.cc \
318 google/protobuf/compiler/mock_code_generator.cc \ 336 google/protobuf/compiler/mock_code_generator.cc \
319 google/protobuf/compiler/mock_code_generator.h \ 337 google/protobuf/compiler/mock_code_generator.h \
320 google/protobuf/compiler/parser_unittest.cc \ 338 google/protobuf/compiler/parser_unittest.cc \
321 google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc \ 339 google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc \
340 google/protobuf/compiler/cpp/cpp_unittest.h \
322 google/protobuf/compiler/cpp/cpp_unittest.cc \ 341 google/protobuf/compiler/cpp/cpp_unittest.cc \
323 google/protobuf/compiler/cpp/cpp_plugin_unittest.cc \ 342 google/protobuf/compiler/cpp/cpp_plugin_unittest.cc \
324 google/protobuf/compiler/java/java_plugin_unittest.cc \ 343 google/protobuf/compiler/java/java_plugin_unittest.cc \
344 google/protobuf/compiler/java/java_doc_comment_unittest.cc \
325 google/protobuf/compiler/python/python_plugin_unittest.cc \ 345 google/protobuf/compiler/python/python_plugin_unittest.cc \
326 $(COMMON_TEST_SOURCES) 346 $(COMMON_TEST_SOURCES)
327 nodist_protobuf_test_SOURCES = $(protoc_outputs) 347 nodist_protobuf_test_SOURCES = $(protoc_outputs)
328 348
329 # Run cpp_unittest again with PROTOBUF_TEST_NO_DESCRIPTORS defined. 349 # Run cpp_unittest again with PROTOBUF_TEST_NO_DESCRIPTORS defined.
330 protobuf_lazy_descriptor_test_LDADD = $(PTHREAD_LIBS) libprotobuf.la \ 350 protobuf_lazy_descriptor_test_LDADD = $(PTHREAD_LIBS) libprotobuf.la \
331 $(top_builddir)/gtest/lib/libgtest.la \ 351 $(top_builddir)/gtest/lib/libgtest.la \
332 $(top_builddir)/gtest/lib/libgtest_main.la 352 $(top_builddir)/gtest/lib/libgtest_main.la
333 protobuf_lazy_descriptor_test_CPPFLAGS = -I$(top_srcdir)/gtest/include \ 353 protobuf_lazy_descriptor_test_CPPFLAGS = -I$(top_srcdir)/gtest/include \
334 -I$(top_builddir)/gtest/include \ 354 -I$(top_builddir)/gtest/include \
(...skipping 27 matching lines...) Expand all
362 if HAVE_ZLIB 382 if HAVE_ZLIB
363 zcgzip_LDADD = $(PTHREAD_LIBS) libprotobuf.la 383 zcgzip_LDADD = $(PTHREAD_LIBS) libprotobuf.la
364 zcgzip_SOURCES = google/protobuf/testing/zcgzip.cc 384 zcgzip_SOURCES = google/protobuf/testing/zcgzip.cc
365 385
366 zcgunzip_LDADD = $(PTHREAD_LIBS) libprotobuf.la 386 zcgunzip_LDADD = $(PTHREAD_LIBS) libprotobuf.la
367 zcgunzip_SOURCES = google/protobuf/testing/zcgunzip.cc 387 zcgunzip_SOURCES = google/protobuf/testing/zcgunzip.cc
368 endif 388 endif
369 389
370 TESTS = protobuf-test protobuf-lazy-descriptor-test protobuf-lite-test \ 390 TESTS = protobuf-test protobuf-lazy-descriptor-test protobuf-lite-test \
371 google/protobuf/compiler/zip_output_unittest.sh $(GZTESTS) 391 google/protobuf/compiler/zip_output_unittest.sh $(GZTESTS)
OLDNEW
« no previous file with comments | « third_party/protobuf/python/setup.py ('k') | third_party/protobuf/src/google/protobuf/compiler/command_line_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698