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

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

Issue 2590803003: Revert "third_party/protobuf: Update to HEAD (83d681ee2c)" (Closed)
Patch Set: Created 3 years, 12 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
« no previous file with comments | « third_party/protobuf/ruby/travis-test.sh ('k') | third_party/protobuf/src/README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ZLIB_DEF = -DHAVE_ZLIB=1 7 ZLIB_DEF = -DHAVE_ZLIB=1
8 else 8 else
9 GZCHECKPROGRAMS = 9 GZCHECKPROGRAMS =
10 GZHEADERS = 10 GZHEADERS =
11 GZTESTS = 11 GZTESTS =
12 ZLIB_DEF = 12 ZLIB_DEF =
13 endif 13 endif
14 14
15 if HAVE_PTHREAD 15 if HAVE_PTHREAD
16 PTHREAD_DEF = -DHAVE_PTHREAD=1 16 PTHREAD_DEF = -DHAVE_PTHREAD=1
17 else 17 else
18 PTHREAD_DEF = 18 PTHREAD_DEF =
19 endif 19 endif
20 20
21 if GCC 21 if GCC
22 # Turn on all warnings except for sign comparison (we ignore sign comparison 22 # These are good warnings to turn on by default
23 # in Google so our code base have tons of such warnings). 23 NO_OPT_CXXFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_DEF) $(ZLIB_DEF) -Wall -Wwrite-str ings -Woverloaded-virtual -Wno-sign-compare
24 NO_OPT_CXXFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_DEF) $(ZLIB_DEF) -Wall -Wno-sign-c ompare
25 else 24 else
26 NO_OPT_CXXFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_DEF) $(ZLIB_DEF) 25 NO_OPT_CXXFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_DEF) $(ZLIB_DEF)
27 endif 26 endif
28 27
29 AM_CXXFLAGS = $(NO_OPT_CXXFLAGS) $(PROTOBUF_OPT_FLAG) 28 AM_CXXFLAGS = $(NO_OPT_CXXFLAGS) $(PROTOBUF_OPT_FLAG)
30 29
31 AM_LDFLAGS = $(PTHREAD_CFLAGS) 30 AM_LDFLAGS = $(PTHREAD_CFLAGS)
32 31
33 # If I say "dist_include_DATA", automake complains that $(includedir) is not 32 # If I say "dist_include_DATA", automake complains that $(includedir) is not
34 # a "legitimate" directory for DATA. Screw you, automake. 33 # a "legitimate" directory for DATA. Screw you, automake.
35 protodir = $(includedir) 34 protodir = $(includedir)
36
37 # If you are adding new files here, also remember to change the build files for
38 # all other languages, //protoc-artifacts/build-zip.sh and run
39 # //update_file_list.sh for bazel.
40 nobase_dist_proto_DATA = google/protobuf/descriptor.proto \ 35 nobase_dist_proto_DATA = google/protobuf/descriptor.proto \
41 google/protobuf/any.proto \ 36 google/protobuf/any.proto \
42 google/protobuf/api.proto \ 37 google/protobuf/api.proto \
43 google/protobuf/duration.proto \ 38 google/protobuf/duration.proto \
44 google/protobuf/empty.proto \ 39 google/protobuf/empty.proto \
45 google/protobuf/field_mask.proto \ 40 google/protobuf/field_mask.proto \
46 google/protobuf/source_context.proto \ 41 google/protobuf/source_context.proto \
47 google/protobuf/struct.proto \ 42 google/protobuf/struct.proto \
48 google/protobuf/timestamp.proto \ 43 google/protobuf/timestamp.proto \
49 google/protobuf/type.proto \ 44 google/protobuf/type.proto \
50 google/protobuf/wrappers.proto \ 45 google/protobuf/wrappers.proto \
51 google/protobuf/compiler/plugin.proto 46 google/protobuf/compiler/plugin.proto
52 47
53 # Not sure why these don't get cleaned automatically. 48 # Not sure why these don't get cleaned automatically.
54 clean-local: 49 clean-local:
55 rm -f *.loT 50 rm -f *.loT
56 51
57 CLEANFILES = $(protoc_outputs) unittest_proto_middleman \ 52 CLEANFILES = $(protoc_outputs) unittest_proto_middleman \
58 testzip.jar testzip.list testzip.proto testzip.zip \ 53 testzip.jar testzip.list testzip.proto testzip.zip
59 no_warning_test.cc
60 54
61 MAINTAINERCLEANFILES = \ 55 MAINTAINERCLEANFILES = \
62 Makefile.in 56 Makefile.in
63 57
64 nobase_include_HEADERS = \ 58 nobase_include_HEADERS = \
65 google/protobuf/stubs/atomic_sequence_num.h \ 59 google/protobuf/stubs/atomic_sequence_num.h \
66 google/protobuf/stubs/atomicops.h \ 60 google/protobuf/stubs/atomicops.h \
67 google/protobuf/stubs/atomicops_internals_power.h \ 61 google/protobuf/stubs/atomicops_internals_power.h \
68 google/protobuf/stubs/atomicops_internals_ppc_gcc.h \ 62 google/protobuf/stubs/atomicops_internals_arm64_gcc.h \
69 google/protobuf/stubs/atomicops_internals_arm64_gcc.h \ 63 google/protobuf/stubs/atomicops_internals_arm_gcc.h \
70 google/protobuf/stubs/atomicops_internals_arm_gcc.h \ 64 google/protobuf/stubs/atomicops_internals_arm_qnx.h \
71 google/protobuf/stubs/atomicops_internals_arm_qnx.h \ 65 google/protobuf/stubs/atomicops_internals_atomicword_compat.h \
72 google/protobuf/stubs/atomicops_internals_atomicword_compat.h \ 66 google/protobuf/stubs/atomicops_internals_generic_gcc.h \
73 google/protobuf/stubs/atomicops_internals_generic_c11_atomic.h \ 67 google/protobuf/stubs/atomicops_internals_macosx.h \
74 google/protobuf/stubs/atomicops_internals_generic_gcc.h \ 68 google/protobuf/stubs/atomicops_internals_mips_gcc.h \
75 google/protobuf/stubs/atomicops_internals_macosx.h \ 69 google/protobuf/stubs/atomicops_internals_pnacl.h \
76 google/protobuf/stubs/atomicops_internals_mips_gcc.h \ 70 google/protobuf/stubs/atomicops_internals_solaris.h \
77 google/protobuf/stubs/atomicops_internals_solaris.h \ 71 google/protobuf/stubs/atomicops_internals_tsan.h \
78 google/protobuf/stubs/atomicops_internals_tsan.h \ 72 google/protobuf/stubs/atomicops_internals_x86_gcc.h \
79 google/protobuf/stubs/atomicops_internals_x86_gcc.h \ 73 google/protobuf/stubs/atomicops_internals_x86_msvc.h \
80 google/protobuf/stubs/atomicops_internals_x86_msvc.h \ 74 google/protobuf/stubs/callback.h \
81 google/protobuf/stubs/callback.h \ 75 google/protobuf/stubs/bytestream.h \
82 google/protobuf/stubs/bytestream.h \ 76 google/protobuf/stubs/casts.h \
83 google/protobuf/stubs/casts.h \ 77 google/protobuf/stubs/common.h \
84 google/protobuf/stubs/common.h \ 78 google/protobuf/stubs/fastmem.h \
85 google/protobuf/stubs/fastmem.h \ 79 google/protobuf/stubs/hash.h \
86 google/protobuf/stubs/hash.h \ 80 google/protobuf/stubs/logging.h \
87 google/protobuf/stubs/logging.h \ 81 google/protobuf/stubs/macros.h \
88 google/protobuf/stubs/macros.h \ 82 google/protobuf/stubs/mutex.h \
89 google/protobuf/stubs/mutex.h \ 83 google/protobuf/stubs/once.h \
90 google/protobuf/stubs/once.h \ 84 google/protobuf/stubs/platform_macros.h \
91 google/protobuf/stubs/platform_macros.h \ 85 google/protobuf/stubs/port.h \
92 google/protobuf/stubs/port.h \ 86 google/protobuf/stubs/scoped_ptr.h \
93 google/protobuf/stubs/scoped_ptr.h \ 87 google/protobuf/stubs/shared_ptr.h \
94 google/protobuf/stubs/shared_ptr.h \ 88 google/protobuf/stubs/singleton.h \
95 google/protobuf/stubs/singleton.h \ 89 google/protobuf/stubs/status.h \
96 google/protobuf/stubs/status.h \ 90 google/protobuf/stubs/stl_util.h \
97 google/protobuf/stubs/stl_util.h \ 91 google/protobuf/stubs/stringpiece.h \
98 google/protobuf/stubs/stringpiece.h \ 92 google/protobuf/stubs/template_util.h \
99 google/protobuf/stubs/template_util.h \ 93 google/protobuf/stubs/type_traits.h \
100 google/protobuf/stubs/type_traits.h \ 94 google/protobuf/any.pb.h \
101 google/protobuf/any.pb.h \ 95 google/protobuf/api.pb.h \
102 google/protobuf/api.pb.h \ 96 google/protobuf/any.h \
103 google/protobuf/any.h \ 97 google/protobuf/arena.h \
104 google/protobuf/arena.h \ 98 google/protobuf/arenastring.h \
105 google/protobuf/arenastring.h \ 99 google/protobuf/descriptor_database.h \
106 google/protobuf/descriptor_database.h \ 100 google/protobuf/descriptor.h \
107 google/protobuf/descriptor.h \ 101 google/protobuf/descriptor.pb.h \
108 google/protobuf/descriptor.pb.h \ 102 google/protobuf/duration.pb.h \
109 google/protobuf/duration.pb.h \ 103 google/protobuf/dynamic_message.h \
110 google/protobuf/dynamic_message.h \ 104 google/protobuf/empty.pb.h \
111 google/protobuf/empty.pb.h \ 105 google/protobuf/extension_set.h \
112 google/protobuf/extension_set.h \ 106 google/protobuf/field_mask.pb.h \
113 google/protobuf/field_mask.pb.h \ 107 google/protobuf/generated_enum_reflection.h \
114 google/protobuf/generated_enum_reflection.h \ 108 google/protobuf/generated_enum_util.h \
115 google/protobuf/generated_enum_util.h \ 109 google/protobuf/generated_message_reflection.h \
116 google/protobuf/generated_message_reflection.h \ 110 google/protobuf/generated_message_util.h \
117 google/protobuf/generated_message_util.h \ 111 google/protobuf/map_entry.h \
118 google/protobuf/has_bits.h \ 112 google/protobuf/map_entry_lite.h \
119 google/protobuf/map_entry.h \ 113 google/protobuf/map_field.h \
120 google/protobuf/map_entry_lite.h \ 114 google/protobuf/map_field_inl.h \
121 google/protobuf/map_field.h \ 115 google/protobuf/map_field_lite.h \
122 google/protobuf/map_field_inl.h \ 116 google/protobuf/map.h \
123 google/protobuf/map_field_lite.h \ 117 google/protobuf/map_type_handler.h \
124 google/protobuf/map.h \ 118 google/protobuf/message.h \
125 google/protobuf/map_type_handler.h \ 119 google/protobuf/message_lite.h \
126 google/protobuf/message.h \ 120 google/protobuf/metadata.h \
127 google/protobuf/message_lite.h \ 121 google/protobuf/reflection.h \
128 google/protobuf/metadata.h \ 122 google/protobuf/reflection_ops.h \
129 google/protobuf/reflection.h \ 123 google/protobuf/repeated_field.h \
130 google/protobuf/reflection_ops.h \ 124 google/protobuf/repeated_field_reflection.h \
131 google/protobuf/repeated_field.h \ 125 google/protobuf/service.h \
132 google/protobuf/service.h \ 126 google/protobuf/source_context.pb.h \
133 google/protobuf/source_context.pb.h \ 127 google/protobuf/struct.pb.h \
134 google/protobuf/struct.pb.h \ 128 google/protobuf/text_format.h \
135 google/protobuf/text_format.h \ 129 google/protobuf/timestamp.pb.h \
136 google/protobuf/timestamp.pb.h \ 130 google/protobuf/type.pb.h \
137 google/protobuf/type.pb.h \ 131 google/protobuf/unknown_field_set.h \
138 google/protobuf/unknown_field_set.h \ 132 google/protobuf/wire_format.h \
139 google/protobuf/wire_format.h \ 133 google/protobuf/wire_format_lite.h \
140 google/protobuf/wire_format_lite.h \ 134 google/protobuf/wire_format_lite_inl.h \
141 google/protobuf/wire_format_lite_inl.h \ 135 google/protobuf/wrappers.pb.h \
142 google/protobuf/wrappers.pb.h \ 136 google/protobuf/io/coded_stream.h \
143 google/protobuf/io/coded_stream.h \ 137 $(GZHEADERS) \
144 $(GZHEADERS) \ 138 google/protobuf/io/printer.h \
145 google/protobuf/io/printer.h \ 139 google/protobuf/io/strtod.h \
146 google/protobuf/io/strtod.h \ 140 google/protobuf/io/tokenizer.h \
147 google/protobuf/io/tokenizer.h \ 141 google/protobuf/io/zero_copy_stream.h \
148 google/protobuf/io/zero_copy_stream.h \ 142 google/protobuf/io/zero_copy_stream_impl.h \
149 google/protobuf/io/zero_copy_stream_impl.h \ 143 google/protobuf/io/zero_copy_stream_impl_lite.h \
150 google/protobuf/io/zero_copy_stream_impl_lite.h \ 144 google/protobuf/compiler/code_generator.h \
151 google/protobuf/compiler/code_generator.h \ 145 google/protobuf/compiler/command_line_interface.h \
152 google/protobuf/compiler/command_line_interface.h \ 146 google/protobuf/compiler/importer.h \
153 google/protobuf/compiler/importer.h \ 147 google/protobuf/compiler/parser.h \
154 google/protobuf/compiler/parser.h \ 148 google/protobuf/compiler/plugin.h \
155 google/protobuf/compiler/plugin.h \ 149 google/protobuf/compiler/plugin.pb.h \
156 google/protobuf/compiler/plugin.pb.h \ 150 google/protobuf/compiler/cpp/cpp_generator.h \
157 google/protobuf/compiler/cpp/cpp_generator.h \ 151 google/protobuf/compiler/csharp/csharp_generator.h \
158 google/protobuf/compiler/csharp/csharp_generator.h \ 152 google/protobuf/compiler/csharp/csharp_names.h \
159 google/protobuf/compiler/csharp/csharp_names.h \ 153 google/protobuf/compiler/java/java_generator.h \
160 google/protobuf/compiler/java/java_generator.h \ 154 google/protobuf/compiler/java/java_names.h \
161 google/protobuf/compiler/java/java_names.h \ 155 google/protobuf/compiler/javanano/javanano_generator.h \
162 google/protobuf/compiler/javanano/javanano_generator.h \ 156 google/protobuf/compiler/js/js_generator.h \
163 google/protobuf/compiler/js/js_generator.h \ 157 google/protobuf/compiler/objectivec/objectivec_generator.h \
164 google/protobuf/compiler/js/well_known_types_embed.h \ 158 google/protobuf/compiler/objectivec/objectivec_helpers.h \
165 google/protobuf/compiler/objectivec/objectivec_generator.h \ 159 google/protobuf/compiler/python/python_generator.h \
166 google/protobuf/compiler/objectivec/objectivec_helpers.h \ 160 google/protobuf/compiler/ruby/ruby_generator.h \
167 google/protobuf/compiler/php/php_generator.h \ 161 google/protobuf/util/type_resolver.h \
168 google/protobuf/compiler/python/python_generator.h \ 162 google/protobuf/util/field_comparator.h \
169 google/protobuf/compiler/ruby/ruby_generator.h \ 163 google/protobuf/util/field_mask_util.h \
170 google/protobuf/util/type_resolver.h \ 164 google/protobuf/util/json_util.h \
171 google/protobuf/util/field_comparator.h \ 165 google/protobuf/util/time_util.h \
172 google/protobuf/util/field_mask_util.h \ 166 google/protobuf/util/type_resolver_util.h \
173 google/protobuf/util/json_util.h \
174 google/protobuf/util/time_util.h \
175 google/protobuf/util/type_resolver_util.h \
176 google/protobuf/util/message_differencer.h 167 google/protobuf/util/message_differencer.h
177 168
178 lib_LTLIBRARIES = libprotobuf-lite.la libprotobuf.la libprotoc.la 169 lib_LTLIBRARIES = libprotobuf-lite.la libprotobuf.la libprotoc.la
179 170
180 libprotobuf_lite_la_LIBADD = $(PTHREAD_LIBS) 171 libprotobuf_lite_la_LIBADD = $(PTHREAD_LIBS)
181 libprotobuf_lite_la_LDFLAGS = -version-info 11:0:0 -export-dynamic -no-undefined 172 libprotobuf_lite_la_LDFLAGS = -version-info 10:0:0 -export-dynamic -no-undefined
182 libprotobuf_lite_la_SOURCES = \ 173 libprotobuf_lite_la_SOURCES = \
183 google/protobuf/stubs/atomicops_internals_x86_gcc.cc \ 174 google/protobuf/stubs/atomicops_internals_x86_gcc.cc \
184 google/protobuf/stubs/atomicops_internals_x86_msvc.cc \ 175 google/protobuf/stubs/atomicops_internals_x86_msvc.cc \
185 google/protobuf/stubs/bytestream.cc \ 176 google/protobuf/stubs/bytestream.cc \
186 google/protobuf/stubs/bytestream.h \ 177 google/protobuf/stubs/bytestream.h \
187 google/protobuf/stubs/common.cc \ 178 google/protobuf/stubs/common.cc \
188 google/protobuf/stubs/hash.h \ 179 google/protobuf/stubs/hash.h \
189 google/protobuf/stubs/int128.cc \ 180 google/protobuf/stubs/int128.cc \
190 google/protobuf/stubs/int128.h \ 181 google/protobuf/stubs/int128.h \
191 google/protobuf/stubs/map_util.h \ 182 google/protobuf/stubs/map_util.h \
(...skipping 20 matching lines...) Expand all
212 google/protobuf/generated_message_util.cc \ 203 google/protobuf/generated_message_util.cc \
213 google/protobuf/message_lite.cc \ 204 google/protobuf/message_lite.cc \
214 google/protobuf/repeated_field.cc \ 205 google/protobuf/repeated_field.cc \
215 google/protobuf/wire_format_lite.cc \ 206 google/protobuf/wire_format_lite.cc \
216 google/protobuf/io/coded_stream.cc \ 207 google/protobuf/io/coded_stream.cc \
217 google/protobuf/io/coded_stream_inl.h \ 208 google/protobuf/io/coded_stream_inl.h \
218 google/protobuf/io/zero_copy_stream.cc \ 209 google/protobuf/io/zero_copy_stream.cc \
219 google/protobuf/io/zero_copy_stream_impl_lite.cc 210 google/protobuf/io/zero_copy_stream_impl_lite.cc
220 211
221 libprotobuf_la_LIBADD = $(PTHREAD_LIBS) 212 libprotobuf_la_LIBADD = $(PTHREAD_LIBS)
222 libprotobuf_la_LDFLAGS = -version-info 11:0:0 -export-dynamic -no-undefined 213 libprotobuf_la_LDFLAGS = -version-info 10:0:0 -export-dynamic -no-undefined
223 libprotobuf_la_SOURCES = \ 214 libprotobuf_la_SOURCES = \
224 $(libprotobuf_lite_la_SOURCES) \ 215 $(libprotobuf_lite_la_SOURCES) \
225 google/protobuf/any.pb.cc \ 216 google/protobuf/any.pb.cc \
226 google/protobuf/api.pb.cc \ 217 google/protobuf/api.pb.cc \
227 google/protobuf/stubs/mathlimits.cc \ 218 google/protobuf/stubs/mathlimits.cc \
228 google/protobuf/stubs/mathlimits.h \ 219 google/protobuf/stubs/mathlimits.h \
229 google/protobuf/any.cc \ 220 google/protobuf/any.cc \
230 google/protobuf/descriptor.cc \ 221 google/protobuf/descriptor.cc \
231 google/protobuf/descriptor_database.cc \ 222 google/protobuf/descriptor_database.cc \
232 google/protobuf/descriptor.pb.cc \ 223 google/protobuf/descriptor.pb.cc \
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 google/protobuf/util/internal/utility.cc \ 287 google/protobuf/util/internal/utility.cc \
297 google/protobuf/util/internal/utility.h \ 288 google/protobuf/util/internal/utility.h \
298 google/protobuf/util/json_util.cc \ 289 google/protobuf/util/json_util.cc \
299 google/protobuf/util/message_differencer.cc \ 290 google/protobuf/util/message_differencer.cc \
300 google/protobuf/util/time_util.cc \ 291 google/protobuf/util/time_util.cc \
301 google/protobuf/util/type_resolver_util.cc 292 google/protobuf/util/type_resolver_util.cc
302 293
303 nodist_libprotobuf_la_SOURCES = $(nodist_libprotobuf_lite_la_SOURCES) 294 nodist_libprotobuf_la_SOURCES = $(nodist_libprotobuf_lite_la_SOURCES)
304 295
305 libprotoc_la_LIBADD = $(PTHREAD_LIBS) libprotobuf.la 296 libprotoc_la_LIBADD = $(PTHREAD_LIBS) libprotobuf.la
306 libprotoc_la_LDFLAGS = -version-info 11:0:0 -export-dynamic -no-undefined 297 libprotoc_la_LDFLAGS = -version-info 10:0:0 -export-dynamic -no-undefined
307 libprotoc_la_SOURCES = \ 298 libprotoc_la_SOURCES = \
308 google/protobuf/compiler/code_generator.cc \ 299 google/protobuf/compiler/code_generator.cc \
309 google/protobuf/compiler/command_line_interface.cc \ 300 google/protobuf/compiler/command_line_interface.cc \
310 google/protobuf/compiler/plugin.cc \ 301 google/protobuf/compiler/plugin.cc \
311 google/protobuf/compiler/plugin.pb.cc \ 302 google/protobuf/compiler/plugin.pb.cc \
312 google/protobuf/compiler/subprocess.cc \ 303 google/protobuf/compiler/subprocess.cc \
313 google/protobuf/compiler/subprocess.h \ 304 google/protobuf/compiler/subprocess.h \
314 google/protobuf/compiler/zip_writer.cc \ 305 google/protobuf/compiler/zip_writer.cc \
315 google/protobuf/compiler/zip_writer.h \ 306 google/protobuf/compiler/zip_writer.h \
316 google/protobuf/compiler/cpp/cpp_enum.cc \ 307 google/protobuf/compiler/cpp/cpp_enum.cc \
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 google/protobuf/compiler/java/java_message_field.cc \ 368 google/protobuf/compiler/java/java_message_field.cc \
378 google/protobuf/compiler/java/java_message_field.h \ 369 google/protobuf/compiler/java/java_message_field.h \
379 google/protobuf/compiler/java/java_message_field_lite.cc \ 370 google/protobuf/compiler/java/java_message_field_lite.cc \
380 google/protobuf/compiler/java/java_message_field_lite.h \ 371 google/protobuf/compiler/java/java_message_field_lite.h \
381 google/protobuf/compiler/java/java_message.h \ 372 google/protobuf/compiler/java/java_message.h \
382 google/protobuf/compiler/java/java_message_lite.h \ 373 google/protobuf/compiler/java/java_message_lite.h \
383 google/protobuf/compiler/java/java_message_builder.h \ 374 google/protobuf/compiler/java/java_message_builder.h \
384 google/protobuf/compiler/java/java_message_builder_lite.h \ 375 google/protobuf/compiler/java/java_message_builder_lite.h \
385 google/protobuf/compiler/java/java_name_resolver.cc \ 376 google/protobuf/compiler/java/java_name_resolver.cc \
386 google/protobuf/compiler/java/java_name_resolver.h \ 377 google/protobuf/compiler/java/java_name_resolver.h \
387 google/protobuf/compiler/java/java_options.h \
388 google/protobuf/compiler/java/java_primitive_field.cc \ 378 google/protobuf/compiler/java/java_primitive_field.cc \
389 google/protobuf/compiler/java/java_primitive_field.h \ 379 google/protobuf/compiler/java/java_primitive_field.h \
390 google/protobuf/compiler/java/java_primitive_field_lite.cc \ 380 google/protobuf/compiler/java/java_primitive_field_lite.cc \
391 google/protobuf/compiler/java/java_primitive_field_lite.h \ 381 google/protobuf/compiler/java/java_primitive_field_lite.h \
392 google/protobuf/compiler/java/java_shared_code_generator.cc \ 382 google/protobuf/compiler/java/java_shared_code_generator.cc \
393 google/protobuf/compiler/java/java_shared_code_generator.h \ 383 google/protobuf/compiler/java/java_shared_code_generator.h \
394 google/protobuf/compiler/java/java_service.cc \ 384 google/protobuf/compiler/java/java_service.cc \
395 google/protobuf/compiler/java/java_service.h \ 385 google/protobuf/compiler/java/java_service.h \
396 google/protobuf/compiler/java/java_string_field.cc \ 386 google/protobuf/compiler/java/java_string_field.cc \
397 google/protobuf/compiler/java/java_string_field.h \ 387 google/protobuf/compiler/java/java_string_field.h \
398 google/protobuf/compiler/java/java_string_field_lite.cc \ 388 google/protobuf/compiler/java/java_string_field_lite.cc \
399 google/protobuf/compiler/java/java_string_field_lite.h \ 389 google/protobuf/compiler/java/java_string_field_lite.h \
400 google/protobuf/compiler/java/java_doc_comment.cc \ 390 google/protobuf/compiler/java/java_doc_comment.cc \
401 google/protobuf/compiler/java/java_doc_comment.h \ 391 google/protobuf/compiler/java/java_doc_comment.h \
402 google/protobuf/compiler/js/js_generator.cc \ 392 google/protobuf/compiler/js/js_generator.cc \
403 google/protobuf/compiler/js/well_known_types_embed.cc \
404 google/protobuf/compiler/javanano/javanano_enum.cc \ 393 google/protobuf/compiler/javanano/javanano_enum.cc \
405 google/protobuf/compiler/javanano/javanano_enum.h \ 394 google/protobuf/compiler/javanano/javanano_enum.h \
406 google/protobuf/compiler/javanano/javanano_enum_field.cc \ 395 google/protobuf/compiler/javanano/javanano_enum_field.cc \
407 google/protobuf/compiler/javanano/javanano_enum_field.h \ 396 google/protobuf/compiler/javanano/javanano_enum_field.h \
408 google/protobuf/compiler/javanano/javanano_extension.cc \ 397 google/protobuf/compiler/javanano/javanano_extension.cc \
409 google/protobuf/compiler/javanano/javanano_extension.h \ 398 google/protobuf/compiler/javanano/javanano_extension.h \
410 google/protobuf/compiler/javanano/javanano_field.cc \ 399 google/protobuf/compiler/javanano/javanano_field.cc \
411 google/protobuf/compiler/javanano/javanano_field.h \ 400 google/protobuf/compiler/javanano/javanano_field.h \
412 google/protobuf/compiler/javanano/javanano_file.cc \ 401 google/protobuf/compiler/javanano/javanano_file.cc \
413 google/protobuf/compiler/javanano/javanano_file.h \ 402 google/protobuf/compiler/javanano/javanano_file.h \
(...skipping 26 matching lines...) Expand all
440 google/protobuf/compiler/objectivec/objectivec_map_field.cc \ 429 google/protobuf/compiler/objectivec/objectivec_map_field.cc \
441 google/protobuf/compiler/objectivec/objectivec_map_field.h \ 430 google/protobuf/compiler/objectivec/objectivec_map_field.h \
442 google/protobuf/compiler/objectivec/objectivec_message.cc \ 431 google/protobuf/compiler/objectivec/objectivec_message.cc \
443 google/protobuf/compiler/objectivec/objectivec_message.h \ 432 google/protobuf/compiler/objectivec/objectivec_message.h \
444 google/protobuf/compiler/objectivec/objectivec_message_field.cc \ 433 google/protobuf/compiler/objectivec/objectivec_message_field.cc \
445 google/protobuf/compiler/objectivec/objectivec_message_field.h \ 434 google/protobuf/compiler/objectivec/objectivec_message_field.h \
446 google/protobuf/compiler/objectivec/objectivec_oneof.cc \ 435 google/protobuf/compiler/objectivec/objectivec_oneof.cc \
447 google/protobuf/compiler/objectivec/objectivec_oneof.h \ 436 google/protobuf/compiler/objectivec/objectivec_oneof.h \
448 google/protobuf/compiler/objectivec/objectivec_primitive_field.cc \ 437 google/protobuf/compiler/objectivec/objectivec_primitive_field.cc \
449 google/protobuf/compiler/objectivec/objectivec_primitive_field.h \ 438 google/protobuf/compiler/objectivec/objectivec_primitive_field.h \
450 google/protobuf/compiler/php/php_generator.cc \
451 google/protobuf/compiler/python/python_generator.cc \ 439 google/protobuf/compiler/python/python_generator.cc \
452 google/protobuf/compiler/ruby/ruby_generator.cc \ 440 google/protobuf/compiler/ruby/ruby_generator.cc \
453 google/protobuf/compiler/csharp/csharp_doc_comment.cc \ 441 google/protobuf/compiler/csharp/csharp_doc_comment.cc \
454 google/protobuf/compiler/csharp/csharp_doc_comment.h \ 442 google/protobuf/compiler/csharp/csharp_doc_comment.h \
455 google/protobuf/compiler/csharp/csharp_enum.cc \ 443 google/protobuf/compiler/csharp/csharp_enum.cc \
456 google/protobuf/compiler/csharp/csharp_enum.h \ 444 google/protobuf/compiler/csharp/csharp_enum.h \
457 google/protobuf/compiler/csharp/csharp_enum_field.cc \ 445 google/protobuf/compiler/csharp/csharp_enum_field.cc \
458 google/protobuf/compiler/csharp/csharp_enum_field.h \ 446 google/protobuf/compiler/csharp/csharp_enum_field.h \
459 google/protobuf/compiler/csharp/csharp_field_base.cc \ 447 google/protobuf/compiler/csharp/csharp_field_base.cc \
460 google/protobuf/compiler/csharp/csharp_field_base.h \ 448 google/protobuf/compiler/csharp/csharp_field_base.h \
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 google/protobuf/unittest_proto3_arena_lite.proto \ 510 google/protobuf/unittest_proto3_arena_lite.proto \
523 google/protobuf/unittest_proto3_lite.proto \ 511 google/protobuf/unittest_proto3_lite.proto \
524 google/protobuf/unittest_well_known_types.proto \ 512 google/protobuf/unittest_well_known_types.proto \
525 google/protobuf/util/internal/testdata/anys.proto \ 513 google/protobuf/util/internal/testdata/anys.proto \
526 google/protobuf/util/internal/testdata/books.proto \ 514 google/protobuf/util/internal/testdata/books.proto \
527 google/protobuf/util/internal/testdata/default_value.proto \ 515 google/protobuf/util/internal/testdata/default_value.proto \
528 google/protobuf/util/internal/testdata/default_value_test.proto \ 516 google/protobuf/util/internal/testdata/default_value_test.proto \
529 google/protobuf/util/internal/testdata/field_mask.proto \ 517 google/protobuf/util/internal/testdata/field_mask.proto \
530 google/protobuf/util/internal/testdata/maps.proto \ 518 google/protobuf/util/internal/testdata/maps.proto \
531 google/protobuf/util/internal/testdata/oneofs.proto \ 519 google/protobuf/util/internal/testdata/oneofs.proto \
532 google/protobuf/util/internal/testdata/proto3.proto \
533 google/protobuf/util/internal/testdata/struct.proto \ 520 google/protobuf/util/internal/testdata/struct.proto \
534 google/protobuf/util/internal/testdata/timestamp_duration.proto \ 521 google/protobuf/util/internal/testdata/timestamp_duration.proto \
535 google/protobuf/util/internal/testdata/wrappers.proto \
536 google/protobuf/util/json_format_proto3.proto \ 522 google/protobuf/util/json_format_proto3.proto \
537 google/protobuf/util/message_differencer_unittest.proto \ 523 google/protobuf/util/message_differencer_unittest.proto \
538 google/protobuf/compiler/cpp/cpp_test_large_enum_value.proto 524 google/protobuf/compiler/cpp/cpp_test_large_enum_value.proto
539 525
540 EXTRA_DIST = \ 526 EXTRA_DIST = \
541 $(protoc_inputs) \ 527 $(protoc_inputs) \
542 solaris/libstdc++.la \ 528 solaris/libstdc++.la \
543 google/protobuf/io/gzip_stream.h \ 529 google/protobuf/io/gzip_stream.h \
544 google/protobuf/io/gzip_stream_unittest.sh \ 530 google/protobuf/io/gzip_stream_unittest.sh \
545 google/protobuf/testdata/golden_message \ 531 google/protobuf/testdata/golden_message \
546 google/protobuf/testdata/golden_message_maps \
547 google/protobuf/testdata/golden_message_oneof_implemented \ 532 google/protobuf/testdata/golden_message_oneof_implemented \
548 google/protobuf/testdata/golden_message_proto3 \ 533 google/protobuf/testdata/golden_message_proto3 \
549 google/protobuf/testdata/golden_packed_fields_message \ 534 google/protobuf/testdata/golden_packed_fields_message \
550 google/protobuf/testdata/bad_utf8_string \ 535 google/protobuf/testdata/bad_utf8_string \
551 google/protobuf/testdata/map_test_data.txt \ 536 google/protobuf/testdata/map_test_data.txt \
552 google/protobuf/testdata/text_format_unittest_data.txt \ 537 google/protobuf/testdata/text_format_unittest_data.txt \
553 google/protobuf/testdata/text_format_unittest_data_oneof_implemented.txt \ 538 google/protobuf/testdata/text_format_unittest_data_oneof_implemented.txt \
554 google/protobuf/testdata/text_format_unittest_data_pointy.txt \ 539 google/protobuf/testdata/text_format_unittest_data_pointy.txt \
555 google/protobuf/testdata/text_format_unittest_data_pointy_oneof.txt \ 540 google/protobuf/testdata/text_format_unittest_data_pointy_oneof.txt \
556 google/protobuf/testdata/text_format_unittest_extensions_data.txt \ 541 google/protobuf/testdata/text_format_unittest_extensions_data.txt \
557 google/protobuf/testdata/text_format_unittest_extensions_data_pointy.txt \ 542 google/protobuf/testdata/text_format_unittest_extensions_data_pointy.txt \
558 google/protobuf/package_info.h \ 543 google/protobuf/package_info.h \
559 google/protobuf/io/package_info.h \ 544 google/protobuf/io/package_info.h \
560 google/protobuf/util/package_info.h \
561 google/protobuf/compiler/ruby/ruby_generated_code.proto \ 545 google/protobuf/compiler/ruby/ruby_generated_code.proto \
562 google/protobuf/compiler/ruby/ruby_generated_code_pb.rb \ 546 google/protobuf/compiler/ruby/ruby_generated_code.rb \
563 google/protobuf/compiler/package_info.h \ 547 google/protobuf/compiler/package_info.h \
564 google/protobuf/compiler/zip_output_unittest.sh \ 548 google/protobuf/compiler/zip_output_unittest.sh
565 README.md
566 549
567 protoc_lite_outputs = \ 550 protoc_lite_outputs = \
568 google/protobuf/map_lite_unittest.pb.cc \ 551 google/protobuf/map_lite_unittest.pb.cc \
569 google/protobuf/map_lite_unittest.pb.h \ 552 google/protobuf/map_lite_unittest.pb.h \
570 google/protobuf/unittest_lite.pb.cc \ 553 google/protobuf/unittest_lite.pb.cc \
571 google/protobuf/unittest_lite.pb.h \ 554 google/protobuf/unittest_lite.pb.h \
572 google/protobuf/unittest_no_arena_lite.pb.cc \ 555 google/protobuf/unittest_no_arena_lite.pb.cc \
573 google/protobuf/unittest_no_arena_lite.pb.h \ 556 google/protobuf/unittest_no_arena_lite.pb.h \
574 google/protobuf/unittest_import_lite.pb.cc \ 557 google/protobuf/unittest_import_lite.pb.cc \
575 google/protobuf/unittest_import_lite.pb.h \ 558 google/protobuf/unittest_import_lite.pb.h \
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 google/protobuf/util/internal/testdata/default_value.pb.cc \ 624 google/protobuf/util/internal/testdata/default_value.pb.cc \
642 google/protobuf/util/internal/testdata/default_value.pb.h \ 625 google/protobuf/util/internal/testdata/default_value.pb.h \
643 google/protobuf/util/internal/testdata/default_value_test.pb.cc \ 626 google/protobuf/util/internal/testdata/default_value_test.pb.cc \
644 google/protobuf/util/internal/testdata/default_value_test.pb.h \ 627 google/protobuf/util/internal/testdata/default_value_test.pb.h \
645 google/protobuf/util/internal/testdata/field_mask.pb.cc \ 628 google/protobuf/util/internal/testdata/field_mask.pb.cc \
646 google/protobuf/util/internal/testdata/field_mask.pb.h \ 629 google/protobuf/util/internal/testdata/field_mask.pb.h \
647 google/protobuf/util/internal/testdata/maps.pb.cc \ 630 google/protobuf/util/internal/testdata/maps.pb.cc \
648 google/protobuf/util/internal/testdata/maps.pb.h \ 631 google/protobuf/util/internal/testdata/maps.pb.h \
649 google/protobuf/util/internal/testdata/oneofs.pb.cc \ 632 google/protobuf/util/internal/testdata/oneofs.pb.cc \
650 google/protobuf/util/internal/testdata/oneofs.pb.h \ 633 google/protobuf/util/internal/testdata/oneofs.pb.h \
651 google/protobuf/util/internal/testdata/proto3.pb.cc \
652 google/protobuf/util/internal/testdata/proto3.pb.h \
653 google/protobuf/util/internal/testdata/struct.pb.cc \ 634 google/protobuf/util/internal/testdata/struct.pb.cc \
654 google/protobuf/util/internal/testdata/struct.pb.h \ 635 google/protobuf/util/internal/testdata/struct.pb.h \
655 google/protobuf/util/internal/testdata/timestamp_duration.pb.cc \ 636 google/protobuf/util/internal/testdata/timestamp_duration.pb.cc \
656 google/protobuf/util/internal/testdata/timestamp_duration.pb.h \ 637 google/protobuf/util/internal/testdata/timestamp_duration.pb.h \
657 google/protobuf/util/internal/testdata/wrappers.pb.cc \
658 google/protobuf/util/internal/testdata/wrappers.pb.h \
659 google/protobuf/util/json_format_proto3.pb.cc \ 638 google/protobuf/util/json_format_proto3.pb.cc \
660 google/protobuf/util/json_format_proto3.pb.h \ 639 google/protobuf/util/json_format_proto3.pb.h \
661 google/protobuf/util/message_differencer_unittest.pb.cc \ 640 google/protobuf/util/message_differencer_unittest.pb.cc \
662 google/protobuf/util/message_differencer_unittest.pb.h 641 google/protobuf/util/message_differencer_unittest.pb.h
663 642
664 BUILT_SOURCES = $(protoc_outputs) 643 BUILT_SOURCES = $(protoc_outputs)
665 644
666 if USE_EXTERNAL_PROTOC 645 if USE_EXTERNAL_PROTOC
667 646
668 unittest_proto_middleman: $(protoc_inputs) 647 unittest_proto_middleman: $(protoc_inputs)
(...skipping 21 matching lines...) Expand all
690 google/protobuf/map_test_util_impl.h \ 669 google/protobuf/map_test_util_impl.h \
691 google/protobuf/test_util.cc \ 670 google/protobuf/test_util.cc \
692 google/protobuf/test_util.h \ 671 google/protobuf/test_util.h \
693 google/protobuf/testing/googletest.cc \ 672 google/protobuf/testing/googletest.cc \
694 google/protobuf/testing/googletest.h \ 673 google/protobuf/testing/googletest.h \
695 google/protobuf/testing/file.cc \ 674 google/protobuf/testing/file.cc \
696 google/protobuf/testing/file.h 675 google/protobuf/testing/file.h
697 676
698 check_PROGRAMS = protoc protobuf-test protobuf-lazy-descriptor-test \ 677 check_PROGRAMS = protoc protobuf-test protobuf-lazy-descriptor-test \
699 protobuf-lite-test test_plugin protobuf-lite-arena-test \ 678 protobuf-lite-test test_plugin protobuf-lite-arena-test \
700 no-warning-test $(GZCHECKPROGRAMS) 679 $(GZCHECKPROGRAMS)
701 protobuf_test_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la \ 680 protobuf_test_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la \
702 ../gmock/gtest/lib/libgtest.la \ 681 ../gmock/gtest/lib/libgtest.la \
703 ../gmock/lib/libgmock.la \ 682 ../gmock/lib/libgmock.la \
704 ../gmock/lib/libgmock_main.la 683 ../gmock/lib/libgmock_main.la
705 protobuf_test_CPPFLAGS = -I$(srcdir)/../gmock/gtest/include \ 684 protobuf_test_CPPFLAGS = -I$(srcdir)/../gmock/gtest/include \
706 -I$(srcdir)/../gmock/include 685 -I$(srcdir)/../gmock/include
707 # Disable optimization for tests unless the user explicitly asked for it, 686 # Disable optimization for tests unless the user explicitly asked for it,
708 # since test_util.cc takes forever to compile with optimization (with GCC). 687 # since test_util.cc takes forever to compile with optimization (with GCC).
709 # See configure.ac for more info. 688 # See configure.ac for more info.
710 protobuf_test_CXXFLAGS = $(NO_OPT_CXXFLAGS) 689 protobuf_test_CXXFLAGS = $(NO_OPT_CXXFLAGS)
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
843 google/protobuf/compiler/test_plugin.cc 822 google/protobuf/compiler/test_plugin.cc
844 823
845 if HAVE_ZLIB 824 if HAVE_ZLIB
846 zcgzip_LDADD = $(PTHREAD_LIBS) libprotobuf.la 825 zcgzip_LDADD = $(PTHREAD_LIBS) libprotobuf.la
847 zcgzip_SOURCES = google/protobuf/testing/zcgzip.cc 826 zcgzip_SOURCES = google/protobuf/testing/zcgzip.cc
848 827
849 zcgunzip_LDADD = $(PTHREAD_LIBS) libprotobuf.la 828 zcgunzip_LDADD = $(PTHREAD_LIBS) libprotobuf.la
850 zcgunzip_SOURCES = google/protobuf/testing/zcgunzip.cc 829 zcgunzip_SOURCES = google/protobuf/testing/zcgunzip.cc
851 endif 830 endif
852 831
853 # This test target is to ensure all our public header files and generated
854 # code is free from warnings. We have to be more pedantic about these
855 # files because they are compiled by users with different compiler flags.
856 no_warning_test.cc:
857 echo "// Generated from Makefile.am" > no_warning_test.cc
858 for FILE in $(nobase_include_HEADERS); do \
859 if ! echo $${FILE} | grep "atomicops"; then \
860 echo "#include <$${FILE}>" >> no_warning_test.cc; \
861 fi \
862 done
863 echo "#include <gtest/gtest.h>" >> no_warning_test.cc
864 echo "TEST(NoWarningTest, Empty) {}" >> no_warning_test.cc
865
866 no_warning_test_LDADD = $(PTHREAD_LIBS) libprotobuf.la \
867 ../gmock/gtest/lib/libgtest.la \
868 ../gmock/gtest/lib/libgtest_main.la
869 no_warning_test_CPPFLAGS = -I$(srcdir)/../gmock/gtest/include
870 no_warning_test_CXXFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_DEF) $(ZLIB_DEF) \
871 -Wall -Werror
872 nodist_no_warning_test_SOURCES = no_warning_test.cc $(protoc_outputs)
873
874 TESTS = protobuf-test protobuf-lazy-descriptor-test protobuf-lite-test \ 832 TESTS = protobuf-test protobuf-lazy-descriptor-test protobuf-lite-test \
875 google/protobuf/compiler/zip_output_unittest.sh $(GZTESTS) \ 833 google/protobuf/compiler/zip_output_unittest.sh $(GZTESTS) \
876 protobuf-lite-arena-test no-warning-test 834 protobuf-lite-arena-test
OLDNEW
« no previous file with comments | « third_party/protobuf/ruby/travis-test.sh ('k') | third_party/protobuf/src/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698