forked from kwonoj/protobuf-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am.patch
More file actions
1181 lines (1177 loc) · 72.2 KB
/
Makefile.am.patch
File metadata and controls
1181 lines (1177 loc) · 72.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
diff --git a/src/Makefile.am b/src/Makefile.am
index 4bb77452..6dbb80e1 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -161,7 +161,7 @@ nobase_include_HEADERS = \
google/protobuf/util/type_resolver_util.h \
google/protobuf/util/message_differencer.h
-lib_LTLIBRARIES = libprotobuf-lite.la libprotobuf.la libprotoc.la
+lib_LTLIBRARIES = libprotobuf-lite.la libprotobuf.la
libprotobuf_lite_la_LIBADD = $(PTHREAD_LIBS)
libprotobuf_lite_la_LDFLAGS = -version-info 17:0:0 -export-dynamic -no-undefined
@@ -300,585 +300,585 @@ libprotobuf_la_SOURCES = \
nodist_libprotobuf_la_SOURCES = $(nodist_libprotobuf_lite_la_SOURCES)
-libprotoc_la_LIBADD = $(PTHREAD_LIBS) libprotobuf.la
-libprotoc_la_LDFLAGS = -version-info 17:0:0 -export-dynamic -no-undefined
-if HAVE_LD_VERSION_SCRIPT
-libprotoc_la_LDFLAGS += -Wl,--version-script=$(srcdir)/libprotoc.map
-EXTRA_libprotoc_la_DEPENDENCIES = libprotoc.map
-endif
-libprotoc_la_SOURCES = \
- google/protobuf/compiler/code_generator.cc \
- google/protobuf/compiler/command_line_interface.cc \
- google/protobuf/compiler/plugin.cc \
- google/protobuf/compiler/plugin.pb.cc \
- google/protobuf/compiler/subprocess.cc \
- google/protobuf/compiler/subprocess.h \
- google/protobuf/compiler/zip_writer.cc \
- google/protobuf/compiler/zip_writer.h \
- google/protobuf/compiler/cpp/cpp_enum.cc \
- google/protobuf/compiler/cpp/cpp_enum.h \
- google/protobuf/compiler/cpp/cpp_enum_field.cc \
- google/protobuf/compiler/cpp/cpp_enum_field.h \
- google/protobuf/compiler/cpp/cpp_extension.cc \
- google/protobuf/compiler/cpp/cpp_extension.h \
- google/protobuf/compiler/cpp/cpp_field.cc \
- google/protobuf/compiler/cpp/cpp_field.h \
- google/protobuf/compiler/cpp/cpp_file.cc \
- google/protobuf/compiler/cpp/cpp_file.h \
- google/protobuf/compiler/cpp/cpp_generator.cc \
- google/protobuf/compiler/cpp/cpp_helpers.cc \
- google/protobuf/compiler/cpp/cpp_helpers.h \
- google/protobuf/compiler/cpp/cpp_map_field.cc \
- google/protobuf/compiler/cpp/cpp_map_field.h \
- google/protobuf/compiler/cpp/cpp_message.cc \
- google/protobuf/compiler/cpp/cpp_message.h \
- google/protobuf/compiler/cpp/cpp_message_field.cc \
- google/protobuf/compiler/cpp/cpp_message_field.h \
- google/protobuf/compiler/cpp/cpp_message_layout_helper.h \
- google/protobuf/compiler/cpp/cpp_options.h \
- google/protobuf/compiler/cpp/cpp_padding_optimizer.cc \
- google/protobuf/compiler/cpp/cpp_padding_optimizer.h \
- google/protobuf/compiler/cpp/cpp_primitive_field.cc \
- google/protobuf/compiler/cpp/cpp_primitive_field.h \
- google/protobuf/compiler/cpp/cpp_service.cc \
- google/protobuf/compiler/cpp/cpp_service.h \
- google/protobuf/compiler/cpp/cpp_string_field.cc \
- google/protobuf/compiler/cpp/cpp_string_field.h \
- google/protobuf/compiler/java/java_context.cc \
- google/protobuf/compiler/java/java_context.h \
- google/protobuf/compiler/java/java_enum.cc \
- google/protobuf/compiler/java/java_enum_lite.cc \
- google/protobuf/compiler/java/java_enum_field.cc \
- google/protobuf/compiler/java/java_enum_field.h \
- google/protobuf/compiler/java/java_enum_field_lite.cc \
- google/protobuf/compiler/java/java_enum_field_lite.h \
- google/protobuf/compiler/java/java_enum.h \
- google/protobuf/compiler/java/java_enum_lite.h \
- google/protobuf/compiler/java/java_extension.cc \
- google/protobuf/compiler/java/java_extension.h \
- google/protobuf/compiler/java/java_extension_lite.cc \
- google/protobuf/compiler/java/java_extension_lite.h \
- google/protobuf/compiler/java/java_field.cc \
- google/protobuf/compiler/java/java_field.h \
- google/protobuf/compiler/java/java_file.cc \
- google/protobuf/compiler/java/java_file.h \
- google/protobuf/compiler/java/java_generator.cc \
- google/protobuf/compiler/java/java_generator_factory.cc \
- google/protobuf/compiler/java/java_generator_factory.h \
- google/protobuf/compiler/java/java_helpers.cc \
- google/protobuf/compiler/java/java_helpers.h \
- google/protobuf/compiler/java/java_lazy_message_field.cc \
- google/protobuf/compiler/java/java_lazy_message_field.h \
- google/protobuf/compiler/java/java_lazy_message_field_lite.cc\
- google/protobuf/compiler/java/java_lazy_message_field_lite.h \
- google/protobuf/compiler/java/java_map_field.cc \
- google/protobuf/compiler/java/java_map_field.h \
- google/protobuf/compiler/java/java_map_field_lite.cc \
- google/protobuf/compiler/java/java_map_field_lite.h \
- google/protobuf/compiler/java/java_message.cc \
- google/protobuf/compiler/java/java_message_lite.cc \
- google/protobuf/compiler/java/java_message_builder.cc \
- google/protobuf/compiler/java/java_message_builder_lite.cc \
- google/protobuf/compiler/java/java_message_field.cc \
- google/protobuf/compiler/java/java_message_field.h \
- google/protobuf/compiler/java/java_message_field_lite.cc \
- google/protobuf/compiler/java/java_message_field_lite.h \
- google/protobuf/compiler/java/java_message.h \
- google/protobuf/compiler/java/java_message_lite.h \
- google/protobuf/compiler/java/java_message_builder.h \
- google/protobuf/compiler/java/java_message_builder_lite.h \
- google/protobuf/compiler/java/java_name_resolver.cc \
- google/protobuf/compiler/java/java_name_resolver.h \
- google/protobuf/compiler/java/java_options.h \
- google/protobuf/compiler/java/java_primitive_field.cc \
- google/protobuf/compiler/java/java_primitive_field.h \
- google/protobuf/compiler/java/java_primitive_field_lite.cc \
- google/protobuf/compiler/java/java_primitive_field_lite.h \
- google/protobuf/compiler/java/java_shared_code_generator.cc \
- google/protobuf/compiler/java/java_shared_code_generator.h \
- google/protobuf/compiler/java/java_service.cc \
- google/protobuf/compiler/java/java_service.h \
- google/protobuf/compiler/java/java_string_field.cc \
- google/protobuf/compiler/java/java_string_field.h \
- google/protobuf/compiler/java/java_string_field_lite.cc \
- google/protobuf/compiler/java/java_string_field_lite.h \
- google/protobuf/compiler/java/java_doc_comment.cc \
- google/protobuf/compiler/java/java_doc_comment.h \
- google/protobuf/compiler/js/js_generator.cc \
- google/protobuf/compiler/js/well_known_types_embed.cc \
- google/protobuf/compiler/objectivec/objectivec_enum.cc \
- google/protobuf/compiler/objectivec/objectivec_enum.h \
- google/protobuf/compiler/objectivec/objectivec_enum_field.cc \
- google/protobuf/compiler/objectivec/objectivec_enum_field.h \
- google/protobuf/compiler/objectivec/objectivec_extension.cc \
- google/protobuf/compiler/objectivec/objectivec_extension.h \
- google/protobuf/compiler/objectivec/objectivec_field.cc \
- google/protobuf/compiler/objectivec/objectivec_field.h \
- google/protobuf/compiler/objectivec/objectivec_file.cc \
- google/protobuf/compiler/objectivec/objectivec_file.h \
- google/protobuf/compiler/objectivec/objectivec_generator.cc \
- google/protobuf/compiler/objectivec/objectivec_helpers.cc \
- google/protobuf/compiler/objectivec/objectivec_helpers.h \
- google/protobuf/compiler/objectivec/objectivec_map_field.cc \
- google/protobuf/compiler/objectivec/objectivec_map_field.h \
- google/protobuf/compiler/objectivec/objectivec_message.cc \
- google/protobuf/compiler/objectivec/objectivec_message.h \
- google/protobuf/compiler/objectivec/objectivec_message_field.cc \
- google/protobuf/compiler/objectivec/objectivec_message_field.h \
- google/protobuf/compiler/objectivec/objectivec_oneof.cc \
- google/protobuf/compiler/objectivec/objectivec_oneof.h \
- google/protobuf/compiler/objectivec/objectivec_primitive_field.cc \
- google/protobuf/compiler/objectivec/objectivec_primitive_field.h \
- google/protobuf/compiler/php/php_generator.cc \
- google/protobuf/compiler/python/python_generator.cc \
- google/protobuf/compiler/ruby/ruby_generator.cc \
- google/protobuf/compiler/csharp/csharp_doc_comment.cc \
- google/protobuf/compiler/csharp/csharp_doc_comment.h \
- google/protobuf/compiler/csharp/csharp_enum.cc \
- google/protobuf/compiler/csharp/csharp_enum.h \
- google/protobuf/compiler/csharp/csharp_enum_field.cc \
- google/protobuf/compiler/csharp/csharp_enum_field.h \
- google/protobuf/compiler/csharp/csharp_field_base.cc \
- google/protobuf/compiler/csharp/csharp_field_base.h \
- google/protobuf/compiler/csharp/csharp_generator.cc \
- google/protobuf/compiler/csharp/csharp_helpers.cc \
- google/protobuf/compiler/csharp/csharp_helpers.h \
- google/protobuf/compiler/csharp/csharp_map_field.cc \
- google/protobuf/compiler/csharp/csharp_map_field.h \
- google/protobuf/compiler/csharp/csharp_message.cc \
- google/protobuf/compiler/csharp/csharp_message.h \
- google/protobuf/compiler/csharp/csharp_message_field.cc \
- google/protobuf/compiler/csharp/csharp_message_field.h \
- google/protobuf/compiler/csharp/csharp_options.h \
- google/protobuf/compiler/csharp/csharp_primitive_field.cc \
- google/protobuf/compiler/csharp/csharp_primitive_field.h \
- google/protobuf/compiler/csharp/csharp_reflection_class.cc \
- google/protobuf/compiler/csharp/csharp_reflection_class.h \
- google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc \
- google/protobuf/compiler/csharp/csharp_repeated_enum_field.h \
- google/protobuf/compiler/csharp/csharp_repeated_message_field.cc \
- google/protobuf/compiler/csharp/csharp_repeated_message_field.h \
- google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc \
- google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h \
- google/protobuf/compiler/csharp/csharp_source_generator_base.cc \
- google/protobuf/compiler/csharp/csharp_source_generator_base.h \
- google/protobuf/compiler/csharp/csharp_wrapper_field.cc \
- google/protobuf/compiler/csharp/csharp_wrapper_field.h
-
-bin_PROGRAMS = protoc
-protoc_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la
-protoc_SOURCES = google/protobuf/compiler/main.cc
-
-# Tests ==============================================================
-
-protoc_inputs = \
- google/protobuf/any_test.proto \
- google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto \
- google/protobuf/map_lite_unittest.proto \
- google/protobuf/map_proto2_unittest.proto \
- google/protobuf/map_unittest.proto \
- google/protobuf/unittest_arena.proto \
- google/protobuf/unittest_custom_options.proto \
- google/protobuf/unittest_drop_unknown_fields.proto \
- google/protobuf/unittest_embed_optimize_for.proto \
- google/protobuf/unittest_empty.proto \
- google/protobuf/unittest_enormous_descriptor.proto \
- google/protobuf/unittest_import_lite.proto \
- google/protobuf/unittest_import.proto \
- google/protobuf/unittest_import_public_lite.proto \
- google/protobuf/unittest_import_public.proto \
- google/protobuf/unittest_lazy_dependencies.proto \
- google/protobuf/unittest_lazy_dependencies_custom_option.proto \
- google/protobuf/unittest_lazy_dependencies_enum.proto \
- google/protobuf/unittest_lite_imports_nonlite.proto \
- google/protobuf/unittest_lite.proto \
- google/protobuf/unittest_mset.proto \
- google/protobuf/unittest_mset_wire_format.proto \
- google/protobuf/unittest_no_arena_lite.proto \
- google/protobuf/unittest_no_arena_import.proto \
- google/protobuf/unittest_no_arena.proto \
- google/protobuf/unittest_no_field_presence.proto \
- google/protobuf/unittest_no_generic_services.proto \
- google/protobuf/unittest_optimize_for.proto \
- google/protobuf/unittest_preserve_unknown_enum2.proto \
- google/protobuf/unittest_preserve_unknown_enum.proto \
- google/protobuf/unittest.proto \
- google/protobuf/unittest_proto3_arena.proto \
- google/protobuf/unittest_proto3_arena_lite.proto \
- google/protobuf/unittest_proto3_lite.proto \
- google/protobuf/unittest_well_known_types.proto \
- google/protobuf/util/internal/testdata/anys.proto \
- google/protobuf/util/internal/testdata/books.proto \
- google/protobuf/util/internal/testdata/default_value.proto \
- google/protobuf/util/internal/testdata/default_value_test.proto \
- google/protobuf/util/internal/testdata/field_mask.proto \
- google/protobuf/util/internal/testdata/maps.proto \
- google/protobuf/util/internal/testdata/oneofs.proto \
- google/protobuf/util/internal/testdata/proto3.proto \
- google/protobuf/util/internal/testdata/struct.proto \
- google/protobuf/util/internal/testdata/timestamp_duration.proto \
- google/protobuf/util/internal/testdata/wrappers.proto \
- google/protobuf/util/json_format_proto3.proto \
- google/protobuf/util/message_differencer_unittest.proto \
- google/protobuf/compiler/cpp/cpp_test_large_enum_value.proto
-
-EXTRA_DIST = \
- $(protoc_inputs) \
- $(js_well_known_types_sources) \
- solaris/libstdc++.la \
- google/protobuf/unittest_proto3.proto \
- google/protobuf/test_messages_proto3.proto \
- google/protobuf/test_messages_proto2.proto \
- google/protobuf/io/gzip_stream.h \
- google/protobuf/io/gzip_stream_unittest.sh \
- google/protobuf/testdata/golden_message \
- google/protobuf/testdata/golden_message_maps \
- google/protobuf/testdata/golden_message_oneof_implemented \
- google/protobuf/testdata/golden_message_proto3 \
- google/protobuf/testdata/golden_packed_fields_message \
- google/protobuf/testdata/bad_utf8_string \
- google/protobuf/testdata/map_test_data.txt \
- google/protobuf/testdata/text_format_unittest_data.txt \
- google/protobuf/testdata/text_format_unittest_data_oneof_implemented.txt \
- google/protobuf/testdata/text_format_unittest_data_pointy.txt \
- google/protobuf/testdata/text_format_unittest_data_pointy_oneof.txt \
- google/protobuf/testdata/text_format_unittest_extensions_data.txt \
- google/protobuf/testdata/text_format_unittest_extensions_data_pointy.txt \
- google/protobuf/package_info.h \
- google/protobuf/io/package_info.h \
- google/protobuf/util/package_info.h \
- google/protobuf/compiler/ruby/ruby_generated_code.proto \
- google/protobuf/compiler/ruby/ruby_generated_code_pb.rb \
- google/protobuf/compiler/package_info.h \
- google/protobuf/compiler/zip_output_unittest.sh \
- libprotobuf-lite.map \
- libprotobuf.map \
- libprotoc.map \
- README.md
-
-protoc_lite_outputs = \
- google/protobuf/map_lite_unittest.pb.cc \
- google/protobuf/map_lite_unittest.pb.h \
- google/protobuf/unittest_lite.pb.cc \
- google/protobuf/unittest_lite.pb.h \
- google/protobuf/unittest_no_arena_lite.pb.cc \
- google/protobuf/unittest_no_arena_lite.pb.h \
- google/protobuf/unittest_import_lite.pb.cc \
- google/protobuf/unittest_import_lite.pb.h \
- google/protobuf/unittest_import_public_lite.pb.cc \
- google/protobuf/unittest_import_public_lite.pb.h
-
-protoc_outputs = \
- $(protoc_lite_outputs) \
- google/protobuf/any_test.pb.cc \
- google/protobuf/any_test.pb.h \
- google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.cc \
- google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.h \
- google/protobuf/compiler/cpp/cpp_test_large_enum_value.pb.cc \
- google/protobuf/compiler/cpp/cpp_test_large_enum_value.pb.h \
- google/protobuf/map_proto2_unittest.pb.cc \
- google/protobuf/map_proto2_unittest.pb.h \
- google/protobuf/map_unittest.pb.cc \
- google/protobuf/map_unittest.pb.h \
- google/protobuf/unittest_arena.pb.cc \
- google/protobuf/unittest_arena.pb.h \
- google/protobuf/unittest_custom_options.pb.cc \
- google/protobuf/unittest_custom_options.pb.h \
- google/protobuf/unittest_drop_unknown_fields.pb.cc \
- google/protobuf/unittest_drop_unknown_fields.pb.h \
- google/protobuf/unittest_embed_optimize_for.pb.cc \
- google/protobuf/unittest_embed_optimize_for.pb.h \
- google/protobuf/unittest_empty.pb.cc \
- google/protobuf/unittest_empty.pb.h \
- google/protobuf/unittest_enormous_descriptor.pb.cc \
- google/protobuf/unittest_enormous_descriptor.pb.h \
- google/protobuf/unittest_import.pb.cc \
- google/protobuf/unittest_import.pb.h \
- google/protobuf/unittest_import_public.pb.cc \
- google/protobuf/unittest_import_public.pb.h \
- google/protobuf/unittest_lazy_dependencies.pb.cc \
- google/protobuf/unittest_lazy_dependencies.pb.h \
- google/protobuf/unittest_lazy_dependencies_custom_option.pb.cc \
- google/protobuf/unittest_lazy_dependencies_custom_option.pb.h \
- google/protobuf/unittest_lazy_dependencies_enum.pb.cc \
- google/protobuf/unittest_lazy_dependencies_enum.pb.h \
- google/protobuf/unittest_lite_imports_nonlite.pb.cc \
- google/protobuf/unittest_lite_imports_nonlite.pb.h \
- google/protobuf/unittest_mset.pb.cc \
- google/protobuf/unittest_mset.pb.h \
- google/protobuf/unittest_mset_wire_format.pb.cc \
- google/protobuf/unittest_mset_wire_format.pb.h \
- google/protobuf/unittest_no_arena_import.pb.cc \
- google/protobuf/unittest_no_arena_import.pb.h \
- google/protobuf/unittest_no_arena.pb.cc \
- google/protobuf/unittest_no_arena.pb.h \
- google/protobuf/unittest_no_field_presence.pb.cc \
- google/protobuf/unittest_no_field_presence.pb.h \
- google/protobuf/unittest_no_generic_services.pb.cc \
- google/protobuf/unittest_no_generic_services.pb.h \
- google/protobuf/unittest_optimize_for.pb.cc \
- google/protobuf/unittest_optimize_for.pb.h \
- google/protobuf/unittest.pb.cc \
- google/protobuf/unittest.pb.h \
- google/protobuf/unittest_preserve_unknown_enum2.pb.cc \
- google/protobuf/unittest_preserve_unknown_enum2.pb.h \
- google/protobuf/unittest_preserve_unknown_enum.pb.cc \
- google/protobuf/unittest_preserve_unknown_enum.pb.h \
- google/protobuf/unittest_proto3_arena.pb.cc \
- google/protobuf/unittest_proto3_arena.pb.h \
- google/protobuf/unittest_proto3_arena_lite.pb.cc \
- google/protobuf/unittest_proto3_arena_lite.pb.h \
- google/protobuf/unittest_proto3_lite.pb.cc \
- google/protobuf/unittest_proto3_lite.pb.h \
- google/protobuf/unittest_well_known_types.pb.cc \
- google/protobuf/unittest_well_known_types.pb.h \
- google/protobuf/util/internal/testdata/anys.pb.cc \
- google/protobuf/util/internal/testdata/anys.pb.h \
- google/protobuf/util/internal/testdata/books.pb.cc \
- google/protobuf/util/internal/testdata/books.pb.h \
- google/protobuf/util/internal/testdata/default_value.pb.cc \
- google/protobuf/util/internal/testdata/default_value.pb.h \
- google/protobuf/util/internal/testdata/default_value_test.pb.cc \
- google/protobuf/util/internal/testdata/default_value_test.pb.h \
- google/protobuf/util/internal/testdata/field_mask.pb.cc \
- google/protobuf/util/internal/testdata/field_mask.pb.h \
- google/protobuf/util/internal/testdata/maps.pb.cc \
- google/protobuf/util/internal/testdata/maps.pb.h \
- google/protobuf/util/internal/testdata/oneofs.pb.cc \
- google/protobuf/util/internal/testdata/oneofs.pb.h \
- google/protobuf/util/internal/testdata/proto3.pb.cc \
- google/protobuf/util/internal/testdata/proto3.pb.h \
- google/protobuf/util/internal/testdata/struct.pb.cc \
- google/protobuf/util/internal/testdata/struct.pb.h \
- google/protobuf/util/internal/testdata/timestamp_duration.pb.cc \
- google/protobuf/util/internal/testdata/timestamp_duration.pb.h \
- google/protobuf/util/internal/testdata/wrappers.pb.cc \
- google/protobuf/util/internal/testdata/wrappers.pb.h \
- google/protobuf/util/json_format_proto3.pb.cc \
- google/protobuf/util/json_format_proto3.pb.h \
- google/protobuf/util/message_differencer_unittest.pb.cc \
- google/protobuf/util/message_differencer_unittest.pb.h
-
-if USE_EXTERNAL_PROTOC
-
-unittest_proto_middleman: $(protoc_inputs)
- $(PROTOC) -I$(srcdir) --cpp_out=. $^
- touch unittest_proto_middleman
-
-else
-
-# We have to cd to $(srcdir) before executing protoc because $(protoc_inputs) is
-# relative to srcdir, which may not be the same as the current directory when
-# building out-of-tree.
-unittest_proto_middleman: protoc$(EXEEXT) $(protoc_inputs)
- oldpwd=`pwd` && ( cd $(srcdir) && $$oldpwd/protoc$(EXEEXT) -I. --cpp_out=$$oldpwd $(protoc_inputs) )
- touch unittest_proto_middleman
-
-endif
-
-$(protoc_outputs): unittest_proto_middleman
-
-COMMON_TEST_SOURCES = \
- google/protobuf/arena_test_util.cc \
- google/protobuf/arena_test_util.h \
- google/protobuf/map_test_util.cc \
- google/protobuf/map_test_util.h \
- google/protobuf/map_test_util_impl.h \
- google/protobuf/test_util.cc \
- google/protobuf/test_util.h \
- google/protobuf/test_util.inc \
- google/protobuf/testing/googletest.cc \
- google/protobuf/testing/googletest.h \
- google/protobuf/testing/file.cc \
- google/protobuf/testing/file.h
-
-GOOGLETEST_BUILD_DIR=../third_party/googletest/googletest
-GOOGLEMOCK_BUILD_DIR=../third_party/googletest/googlemock
-GOOGLETEST_SRC_DIR=$(srcdir)/../third_party/googletest/googletest
-GOOGLEMOCK_SRC_DIR=$(srcdir)/../third_party/googletest/googlemock
-check_PROGRAMS = protoc protobuf-test protobuf-lazy-descriptor-test \
- protobuf-lite-test test_plugin protobuf-lite-arena-test \
- no-warning-test $(GZCHECKPROGRAMS)
-protobuf_test_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la \
- $(GOOGLETEST_BUILD_DIR)/lib/libgtest.la \
- $(GOOGLEMOCK_BUILD_DIR)/lib/libgmock.la \
- $(GOOGLEMOCK_BUILD_DIR)/lib/libgmock_main.la
-protobuf_test_CPPFLAGS = -I$(GOOGLETEST_SRC_DIR)/include \
- -I$(GOOGLEMOCK_SRC_DIR)/include
-# Disable optimization for tests unless the user explicitly asked for it,
-# since test_util.cc takes forever to compile with optimization (with GCC).
-# See configure.ac for more info.
-protobuf_test_CXXFLAGS = $(NO_OPT_CXXFLAGS)
-protobuf_test_SOURCES = \
- google/protobuf/stubs/bytestream_unittest.cc \
- google/protobuf/stubs/common_unittest.cc \
- google/protobuf/stubs/int128_unittest.cc \
- google/protobuf/stubs/io_win32_unittest.cc \
- google/protobuf/stubs/statusor_test.cc \
- google/protobuf/stubs/status_test.cc \
- google/protobuf/stubs/stringpiece_unittest.cc \
- google/protobuf/stubs/stringprintf_unittest.cc \
- google/protobuf/stubs/structurally_valid_unittest.cc \
- google/protobuf/stubs/strutil_unittest.cc \
- google/protobuf/stubs/template_util_unittest.cc \
- google/protobuf/stubs/time_test.cc \
- google/protobuf/any_test.cc \
- google/protobuf/arenastring_unittest.cc \
- google/protobuf/arena_unittest.cc \
- google/protobuf/descriptor_database_unittest.cc \
- google/protobuf/descriptor_unittest.cc \
- google/protobuf/drop_unknown_fields_test.cc \
- google/protobuf/dynamic_message_unittest.cc \
- google/protobuf/extension_set_unittest.cc \
- google/protobuf/generated_message_reflection_unittest.cc \
- google/protobuf/map_field_test.cc \
- google/protobuf/map_test.cc \
- google/protobuf/message_unittest.cc \
- google/protobuf/message_unittest.inc \
- google/protobuf/no_field_presence_test.cc \
- google/protobuf/preserve_unknown_enum_test.cc \
- google/protobuf/proto3_arena_lite_unittest.cc \
- google/protobuf/proto3_arena_unittest.cc \
- google/protobuf/proto3_lite_unittest.cc \
- google/protobuf/reflection_ops_unittest.cc \
- google/protobuf/repeated_field_reflection_unittest.cc \
- google/protobuf/repeated_field_unittest.cc \
- google/protobuf/text_format_unittest.cc \
- google/protobuf/unknown_field_set_unittest.cc \
- google/protobuf/well_known_types_unittest.cc \
- google/protobuf/wire_format_unittest.cc \
- google/protobuf/io/coded_stream_unittest.cc \
- google/protobuf/io/printer_unittest.cc \
- google/protobuf/io/tokenizer_unittest.cc \
- google/protobuf/io/zero_copy_stream_unittest.cc \
- google/protobuf/compiler/annotation_test_util.h \
- google/protobuf/compiler/annotation_test_util.cc \
- google/protobuf/compiler/command_line_interface_unittest.cc \
- google/protobuf/compiler/importer_unittest.cc \
- google/protobuf/compiler/mock_code_generator.cc \
- google/protobuf/compiler/mock_code_generator.h \
- google/protobuf/compiler/parser_unittest.cc \
- google/protobuf/compiler/cpp/cpp_bootstrap_unittest.cc \
- google/protobuf/compiler/cpp/cpp_move_unittest.cc \
- google/protobuf/compiler/cpp/cpp_unittest.h \
- google/protobuf/compiler/cpp/cpp_unittest.cc \
- google/protobuf/compiler/cpp/cpp_unittest.inc \
- google/protobuf/compiler/cpp/cpp_plugin_unittest.cc \
- google/protobuf/compiler/cpp/metadata_test.cc \
- google/protobuf/compiler/java/java_plugin_unittest.cc \
- google/protobuf/compiler/java/java_doc_comment_unittest.cc \
- google/protobuf/compiler/objectivec/objectivec_helpers_unittest.cc \
- google/protobuf/compiler/python/python_plugin_unittest.cc \
- google/protobuf/compiler/ruby/ruby_generator_unittest.cc \
- google/protobuf/compiler/csharp/csharp_bootstrap_unittest.cc \
- google/protobuf/compiler/csharp/csharp_generator_unittest.cc \
- google/protobuf/util/delimited_message_util_test.cc \
- google/protobuf/util/field_comparator_test.cc \
- google/protobuf/util/field_mask_util_test.cc \
- google/protobuf/util/internal/default_value_objectwriter_test.cc \
- google/protobuf/util/internal/json_objectwriter_test.cc \
- google/protobuf/util/internal/json_stream_parser_test.cc \
- google/protobuf/util/internal/protostream_objectsource_test.cc \
- google/protobuf/util/internal/protostream_objectwriter_test.cc \
- google/protobuf/util/internal/type_info_test_helper.cc \
- google/protobuf/util/json_util_test.cc \
- google/protobuf/util/message_differencer_unittest.cc \
- google/protobuf/util/time_util_test.cc \
- google/protobuf/util/type_resolver_util_test.cc \
- $(COMMON_TEST_SOURCES)
-nodist_protobuf_test_SOURCES = $(protoc_outputs)
-$(am_protobuf_test_OBJECTS): unittest_proto_middleman
-
-# Run cpp_unittest again with PROTOBUF_TEST_NO_DESCRIPTORS defined.
-protobuf_lazy_descriptor_test_LDADD = $(PTHREAD_LIBS) libprotobuf.la \
- libprotoc.la \
- $(GOOGLETEST_BUILD_DIR)/lib/libgtest.la \
- $(GOOGLEMOCK_BUILD_DIR)/lib/libgmock.la \
- $(GOOGLEMOCK_BUILD_DIR)/lib/libgmock_main.la
-protobuf_lazy_descriptor_test_CPPFLAGS = -I$(GOOGLEMOCK_SRC_DIR)/include \
- -I$(GOOGLETEST_SRC_DIR)/include \
- -DPROTOBUF_TEST_NO_DESCRIPTORS
-protobuf_lazy_descriptor_test_CXXFLAGS = $(NO_OPT_CXXFLAGS)
-protobuf_lazy_descriptor_test_SOURCES = \
- google/protobuf/compiler/cpp/cpp_unittest.cc \
- $(COMMON_TEST_SOURCES)
-nodist_protobuf_lazy_descriptor_test_SOURCES = $(protoc_outputs)
-$(am_protobuf_lazy_descriptor_test_OBJECTS): unittest_proto_middleman
-
-COMMON_LITE_TEST_SOURCES = \
- google/protobuf/arena_test_util.cc \
- google/protobuf/arena_test_util.h \
- google/protobuf/map_lite_test_util.cc \
- google/protobuf/map_lite_test_util.h \
- google/protobuf/test_util_lite.cc \
- google/protobuf/test_util_lite.h
-
-# Build lite_unittest separately, since it doesn't use gtest. It can't
-# depend on gtest because our internal version of gtest depend on proto
-# full runtime and we want to make sure this test builds without full
-# runtime.
-protobuf_lite_test_LDADD = $(PTHREAD_LIBS) libprotobuf-lite.la \
- $(GOOGLETEST_BUILD_DIR)/lib/libgtest.la \
- $(GOOGLEMOCK_BUILD_DIR)/lib/libgmock.la \
- $(GOOGLEMOCK_BUILD_DIR)/lib/libgmock_main.la
-protobuf_lite_test_CPPFLAGS= -I$(GOOGLEMOCK_SRC_DIR)/include \
- -I$(GOOGLETEST_SRC_DIR)/include
-protobuf_lite_test_CXXFLAGS = $(NO_OPT_CXXFLAGS)
-protobuf_lite_test_SOURCES = \
- google/protobuf/lite_unittest.cc \
- $(COMMON_LITE_TEST_SOURCES)
-nodist_protobuf_lite_test_SOURCES = $(protoc_lite_outputs)
-$(am_protobuf_lite_test_OBJECTS): unittest_proto_middleman
-
-# lite_arena_unittest depends on gtest because teboring@ found that without
-# gtest when building the test internally our memory sanitizer doesn't detect
-# memory leaks (don't know why).
-protobuf_lite_arena_test_LDADD = $(PTHREAD_LIBS) libprotobuf-lite.la \
- $(GOOGLETEST_BUILD_DIR)/lib/libgtest.la \
- $(GOOGLEMOCK_BUILD_DIR)/lib/libgmock.la \
- $(GOOGLEMOCK_BUILD_DIR)/lib/libgmock_main.la
-protobuf_lite_arena_test_CPPFLAGS = -I$(GOOGLEMOCK_SRC_DIR)/include \
- -I$(GOOGLETEST_SRC_DIR)/include
-protobuf_lite_arena_test_CXXFLAGS = $(NO_OPT_CXXFLAGS)
-protobuf_lite_arena_test_SOURCES = \
- google/protobuf/lite_arena_unittest.cc \
- $(COMMON_LITE_TEST_SOURCES)
-nodist_protobuf_lite_arena_test_SOURCES = $(protoc_lite_outputs)
-$(am_protobuf_lite_arena_test_OBJECTS): unittest_proto_middleman
-
-# Test plugin binary.
-test_plugin_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la \
- $(GOOGLETEST_BUILD_DIR)/lib/libgtest.la
-test_plugin_CPPFLAGS = -I$(GOOGLETEST_SRC_DIR)/include
-test_plugin_SOURCES = \
- google/protobuf/compiler/mock_code_generator.cc \
- google/protobuf/testing/file.cc \
- google/protobuf/testing/file.h \
- google/protobuf/compiler/test_plugin.cc
-
-if HAVE_ZLIB
-zcgzip_LDADD = $(PTHREAD_LIBS) libprotobuf.la
-zcgzip_SOURCES = google/protobuf/testing/zcgzip.cc
-
-zcgunzip_LDADD = $(PTHREAD_LIBS) libprotobuf.la
-zcgunzip_SOURCES = google/protobuf/testing/zcgunzip.cc
-endif
-
-# This test target is to ensure all our public header files and generated
-# code is free from warnings. We have to be more pedantic about these
-# files because they are compiled by users with different compiler flags.
-no_warning_test.cc:
- echo "// Generated from Makefile.am" > no_warning_test.cc
- for FILE in $(nobase_include_HEADERS); do \
- echo "#include <$${FILE}>" >> no_warning_test.cc; \
- done
- echo "int main(int, char**) { return 0; }" >> no_warning_test.cc
-
-no_warning_test_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la
-no_warning_test_CXXFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_DEF) $(ZLIB_DEF) \
- -Wall -Wextra -Werror -Wno-unused-parameter
-nodist_no_warning_test_SOURCES = no_warning_test.cc $(protoc_outputs)
-
-TESTS = protobuf-test protobuf-lazy-descriptor-test protobuf-lite-test \
- google/protobuf/compiler/zip_output_unittest.sh $(GZTESTS) \
- protobuf-lite-arena-test no-warning-test
+#libprotoc_la_LIBADD = $(PTHREAD_LIBS) libprotobuf.la
+#libprotoc_la_LDFLAGS = -version-info 17:0:0 -export-dynamic -no-undefined
+#if HAVE_LD_VERSION_SCRIPT
+#libprotoc_la_LDFLAGS += -Wl,--version-script=$(srcdir)/libprotoc.map
+#EXTRA_libprotoc_la_DEPENDENCIES = libprotoc.map
+#endif
+#libprotoc_la_SOURCES = \
+# google/protobuf/compiler/code_generator.cc \
+# google/protobuf/compiler/command_line_interface.cc \
+# google/protobuf/compiler/plugin.cc \
+# google/protobuf/compiler/plugin.pb.cc \
+# google/protobuf/compiler/subprocess.cc \
+# google/protobuf/compiler/subprocess.h \
+# google/protobuf/compiler/zip_writer.cc \
+# google/protobuf/compiler/zip_writer.h \
+# google/protobuf/compiler/cpp/cpp_enum.cc \
+# google/protobuf/compiler/cpp/cpp_enum.h \
+# google/protobuf/compiler/cpp/cpp_enum_field.cc \
+# google/protobuf/compiler/cpp/cpp_enum_field.h \
+# google/protobuf/compiler/cpp/cpp_extension.cc \
+# google/protobuf/compiler/cpp/cpp_extension.h \
+# google/protobuf/compiler/cpp/cpp_field.cc \
+# google/protobuf/compiler/cpp/cpp_field.h \
+# google/protobuf/compiler/cpp/cpp_file.cc \
+# google/protobuf/compiler/cpp/cpp_file.h \
+# google/protobuf/compiler/cpp/cpp_generator.cc \
+# google/protobuf/compiler/cpp/cpp_helpers.cc \
+# google/protobuf/compiler/cpp/cpp_helpers.h \
+# google/protobuf/compiler/cpp/cpp_map_field.cc \
+# google/protobuf/compiler/cpp/cpp_map_field.h \
+# google/protobuf/compiler/cpp/cpp_message.cc \
+# google/protobuf/compiler/cpp/cpp_message.h \
+# google/protobuf/compiler/cpp/cpp_message_field.cc \
+# google/protobuf/compiler/cpp/cpp_message_field.h \
+# google/protobuf/compiler/cpp/cpp_message_layout_helper.h \
+# google/protobuf/compiler/cpp/cpp_options.h \
+# google/protobuf/compiler/cpp/cpp_padding_optimizer.cc \
+# google/protobuf/compiler/cpp/cpp_padding_optimizer.h \
+# google/protobuf/compiler/cpp/cpp_primitive_field.cc \
+# google/protobuf/compiler/cpp/cpp_primitive_field.h \
+# google/protobuf/compiler/cpp/cpp_service.cc \
+# google/protobuf/compiler/cpp/cpp_service.h \
+# google/protobuf/compiler/cpp/cpp_string_field.cc \
+# google/protobuf/compiler/cpp/cpp_string_field.h \
+# google/protobuf/compiler/java/java_context.cc \
+# google/protobuf/compiler/java/java_context.h \
+# google/protobuf/compiler/java/java_enum.cc \
+# google/protobuf/compiler/java/java_enum_lite.cc \
+# google/protobuf/compiler/java/java_enum_field.cc \
+# google/protobuf/compiler/java/java_enum_field.h \
+# google/protobuf/compiler/java/java_enum_field_lite.cc \
+# google/protobuf/compiler/java/java_enum_field_lite.h \
+# google/protobuf/compiler/java/java_enum.h \
+# google/protobuf/compiler/java/java_enum_lite.h \
+# google/protobuf/compiler/java/java_extension.cc \
+# google/protobuf/compiler/java/java_extension.h \
+# google/protobuf/compiler/java/java_extension_lite.cc \
+# google/protobuf/compiler/java/java_extension_lite.h \
+# google/protobuf/compiler/java/java_field.cc \
+# google/protobuf/compiler/java/java_field.h \
+# google/protobuf/compiler/java/java_file.cc \
+# google/protobuf/compiler/java/java_file.h \
+# google/protobuf/compiler/java/java_generator.cc \
+# google/protobuf/compiler/java/java_generator_factory.cc \
+# google/protobuf/compiler/java/java_generator_factory.h \
+# google/protobuf/compiler/java/java_helpers.cc \
+# google/protobuf/compiler/java/java_helpers.h \
+# google/protobuf/compiler/java/java_lazy_message_field.cc \
+# google/protobuf/compiler/java/java_lazy_message_field.h \
+# google/protobuf/compiler/java/java_lazy_message_field_lite.cc\
+# google/protobuf/compiler/java/java_lazy_message_field_lite.h \
+# google/protobuf/compiler/java/java_map_field.cc \
+# google/protobuf/compiler/java/java_map_field.h \
+# google/protobuf/compiler/java/java_map_field_lite.cc \
+# google/protobuf/compiler/java/java_map_field_lite.h \
+# google/protobuf/compiler/java/java_message.cc \
+# google/protobuf/compiler/java/java_message_lite.cc \
+# google/protobuf/compiler/java/java_message_builder.cc \
+# google/protobuf/compiler/java/java_message_builder_lite.cc \
+# google/protobuf/compiler/java/java_message_field.cc \
+# google/protobuf/compiler/java/java_message_field.h \
+# google/protobuf/compiler/java/java_message_field_lite.cc \
+# google/protobuf/compiler/java/java_message_field_lite.h \
+# google/protobuf/compiler/java/java_message.h \
+# google/protobuf/compiler/java/java_message_lite.h \
+# google/protobuf/compiler/java/java_message_builder.h \
+# google/protobuf/compiler/java/java_message_builder_lite.h \
+# google/protobuf/compiler/java/java_name_resolver.cc \
+# google/protobuf/compiler/java/java_name_resolver.h \
+# google/protobuf/compiler/java/java_options.h \
+# google/protobuf/compiler/java/java_primitive_field.cc \
+# google/protobuf/compiler/java/java_primitive_field.h \
+# google/protobuf/compiler/java/java_primitive_field_lite.cc \
+# google/protobuf/compiler/java/java_primitive_field_lite.h \
+# google/protobuf/compiler/java/java_shared_code_generator.cc \
+# google/protobuf/compiler/java/java_shared_code_generator.h \
+# google/protobuf/compiler/java/java_service.cc \
+# google/protobuf/compiler/java/java_service.h \
+# google/protobuf/compiler/java/java_string_field.cc \
+# google/protobuf/compiler/java/java_string_field.h \
+# google/protobuf/compiler/java/java_string_field_lite.cc \
+# google/protobuf/compiler/java/java_string_field_lite.h \
+# google/protobuf/compiler/java/java_doc_comment.cc \
+# google/protobuf/compiler/java/java_doc_comment.h \
+# google/protobuf/compiler/js/js_generator.cc \
+# google/protobuf/compiler/js/well_known_types_embed.cc \
+# google/protobuf/compiler/objectivec/objectivec_enum.cc \
+# google/protobuf/compiler/objectivec/objectivec_enum.h \
+# google/protobuf/compiler/objectivec/objectivec_enum_field.cc \
+# google/protobuf/compiler/objectivec/objectivec_enum_field.h \
+# google/protobuf/compiler/objectivec/objectivec_extension.cc \
+# google/protobuf/compiler/objectivec/objectivec_extension.h \
+# google/protobuf/compiler/objectivec/objectivec_field.cc \
+# google/protobuf/compiler/objectivec/objectivec_field.h \
+# google/protobuf/compiler/objectivec/objectivec_file.cc \
+# google/protobuf/compiler/objectivec/objectivec_file.h \
+# google/protobuf/compiler/objectivec/objectivec_generator.cc \
+# google/protobuf/compiler/objectivec/objectivec_helpers.cc \
+# google/protobuf/compiler/objectivec/objectivec_helpers.h \
+# google/protobuf/compiler/objectivec/objectivec_map_field.cc \
+# google/protobuf/compiler/objectivec/objectivec_map_field.h \
+# google/protobuf/compiler/objectivec/objectivec_message.cc \
+# google/protobuf/compiler/objectivec/objectivec_message.h \
+# google/protobuf/compiler/objectivec/objectivec_message_field.cc \
+# google/protobuf/compiler/objectivec/objectivec_message_field.h \
+# google/protobuf/compiler/objectivec/objectivec_oneof.cc \
+# google/protobuf/compiler/objectivec/objectivec_oneof.h \
+# google/protobuf/compiler/objectivec/objectivec_primitive_field.cc \
+# google/protobuf/compiler/objectivec/objectivec_primitive_field.h \
+# google/protobuf/compiler/php/php_generator.cc \
+# google/protobuf/compiler/python/python_generator.cc \
+# google/protobuf/compiler/ruby/ruby_generator.cc \
+# google/protobuf/compiler/csharp/csharp_doc_comment.cc \
+# google/protobuf/compiler/csharp/csharp_doc_comment.h \
+# google/protobuf/compiler/csharp/csharp_enum.cc \
+# google/protobuf/compiler/csharp/csharp_enum.h \
+# google/protobuf/compiler/csharp/csharp_enum_field.cc \
+# google/protobuf/compiler/csharp/csharp_enum_field.h \
+# google/protobuf/compiler/csharp/csharp_field_base.cc \
+# google/protobuf/compiler/csharp/csharp_field_base.h \
+# google/protobuf/compiler/csharp/csharp_generator.cc \
+# google/protobuf/compiler/csharp/csharp_helpers.cc \
+# google/protobuf/compiler/csharp/csharp_helpers.h \
+# google/protobuf/compiler/csharp/csharp_map_field.cc \
+# google/protobuf/compiler/csharp/csharp_map_field.h \
+# google/protobuf/compiler/csharp/csharp_message.cc \
+# google/protobuf/compiler/csharp/csharp_message.h \
+# google/protobuf/compiler/csharp/csharp_message_field.cc \
+# google/protobuf/compiler/csharp/csharp_message_field.h \
+# google/protobuf/compiler/csharp/csharp_options.h \
+# google/protobuf/compiler/csharp/csharp_primitive_field.cc \
+# google/protobuf/compiler/csharp/csharp_primitive_field.h \
+# google/protobuf/compiler/csharp/csharp_reflection_class.cc \
+# google/protobuf/compiler/csharp/csharp_reflection_class.h \
+# google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc \
+# google/protobuf/compiler/csharp/csharp_repeated_enum_field.h \
+# google/protobuf/compiler/csharp/csharp_repeated_message_field.cc \
+# google/protobuf/compiler/csharp/csharp_repeated_message_field.h \
+# google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc \
+# google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h \
+# google/protobuf/compiler/csharp/csharp_source_generator_base.cc \
+# google/protobuf/compiler/csharp/csharp_source_generator_base.h \
+# google/protobuf/compiler/csharp/csharp_wrapper_field.cc \
+# google/protobuf/compiler/csharp/csharp_wrapper_field.h
+#
+#bin_PROGRAMS = protoc
+#protoc_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la
+#protoc_SOURCES = google/protobuf/compiler/main.cc
+#
+## Tests ==============================================================
+#
+#protoc_inputs = \
+# google/protobuf/any_test.proto \
+# google/protobuf/compiler/cpp/cpp_test_bad_identifiers.proto \
+# google/protobuf/map_lite_unittest.proto \
+# google/protobuf/map_proto2_unittest.proto \
+# google/protobuf/map_unittest.proto \
+# google/protobuf/unittest_arena.proto \
+# google/protobuf/unittest_custom_options.proto \
+# google/protobuf/unittest_drop_unknown_fields.proto \
+# google/protobuf/unittest_embed_optimize_for.proto \
+# google/protobuf/unittest_empty.proto \
+# google/protobuf/unittest_enormous_descriptor.proto \
+# google/protobuf/unittest_import_lite.proto \
+# google/protobuf/unittest_import.proto \
+# google/protobuf/unittest_import_public_lite.proto \
+# google/protobuf/unittest_import_public.proto \
+# google/protobuf/unittest_lazy_dependencies.proto \
+# google/protobuf/unittest_lazy_dependencies_custom_option.proto \
+# google/protobuf/unittest_lazy_dependencies_enum.proto \
+# google/protobuf/unittest_lite_imports_nonlite.proto \
+# google/protobuf/unittest_lite.proto \
+# google/protobuf/unittest_mset.proto \
+# google/protobuf/unittest_mset_wire_format.proto \
+# google/protobuf/unittest_no_arena_lite.proto \
+# google/protobuf/unittest_no_arena_import.proto \
+# google/protobuf/unittest_no_arena.proto \
+# google/protobuf/unittest_no_field_presence.proto \
+# google/protobuf/unittest_no_generic_services.proto \
+# google/protobuf/unittest_optimize_for.proto \
+# google/protobuf/unittest_preserve_unknown_enum2.proto \
+# google/protobuf/unittest_preserve_unknown_enum.proto \
+# google/protobuf/unittest.proto \
+# google/protobuf/unittest_proto3_arena.proto \
+# google/protobuf/unittest_proto3_arena_lite.proto \
+# google/protobuf/unittest_proto3_lite.proto \
+# google/protobuf/unittest_well_known_types.proto \
+# google/protobuf/util/internal/testdata/anys.proto \
+# google/protobuf/util/internal/testdata/books.proto \
+# google/protobuf/util/internal/testdata/default_value.proto \
+# google/protobuf/util/internal/testdata/default_value_test.proto \
+# google/protobuf/util/internal/testdata/field_mask.proto \
+# google/protobuf/util/internal/testdata/maps.proto \
+# google/protobuf/util/internal/testdata/oneofs.proto \
+# google/protobuf/util/internal/testdata/proto3.proto \
+# google/protobuf/util/internal/testdata/struct.proto \
+# google/protobuf/util/internal/testdata/timestamp_duration.proto \
+# google/protobuf/util/internal/testdata/wrappers.proto \
+# google/protobuf/util/json_format_proto3.proto \
+# google/protobuf/util/message_differencer_unittest.proto \
+# google/protobuf/compiler/cpp/cpp_test_large_enum_value.proto
+#
+#EXTRA_DIST = \
+# $(protoc_inputs) \
+# $(js_well_known_types_sources) \
+# solaris/libstdc++.la \
+# google/protobuf/unittest_proto3.proto \
+# google/protobuf/test_messages_proto3.proto \
+# google/protobuf/test_messages_proto2.proto \
+# google/protobuf/io/gzip_stream.h \
+# google/protobuf/io/gzip_stream_unittest.sh \
+# google/protobuf/testdata/golden_message \
+# google/protobuf/testdata/golden_message_maps \
+# google/protobuf/testdata/golden_message_oneof_implemented \
+# google/protobuf/testdata/golden_message_proto3 \
+# google/protobuf/testdata/golden_packed_fields_message \
+# google/protobuf/testdata/bad_utf8_string \
+# google/protobuf/testdata/map_test_data.txt \
+# google/protobuf/testdata/text_format_unittest_data.txt \
+# google/protobuf/testdata/text_format_unittest_data_oneof_implemented.txt \
+# google/protobuf/testdata/text_format_unittest_data_pointy.txt \
+# google/protobuf/testdata/text_format_unittest_data_pointy_oneof.txt \
+# google/protobuf/testdata/text_format_unittest_extensions_data.txt \
+# google/protobuf/testdata/text_format_unittest_extensions_data_pointy.txt \
+# google/protobuf/package_info.h \
+# google/protobuf/io/package_info.h \
+# google/protobuf/util/package_info.h \
+# google/protobuf/compiler/ruby/ruby_generated_code.proto \
+# google/protobuf/compiler/ruby/ruby_generated_code_pb.rb \
+# google/protobuf/compiler/package_info.h \
+# google/protobuf/compiler/zip_output_unittest.sh \
+# libprotobuf-lite.map \
+# libprotobuf.map \
+# libprotoc.map \
+# README.md
+#
+#protoc_lite_outputs = \
+# google/protobuf/map_lite_unittest.pb.cc \
+# google/protobuf/map_lite_unittest.pb.h \
+# google/protobuf/unittest_lite.pb.cc \
+# google/protobuf/unittest_lite.pb.h \
+# google/protobuf/unittest_no_arena_lite.pb.cc \
+# google/protobuf/unittest_no_arena_lite.pb.h \
+# google/protobuf/unittest_import_lite.pb.cc \
+# google/protobuf/unittest_import_lite.pb.h \
+# google/protobuf/unittest_import_public_lite.pb.cc \
+# google/protobuf/unittest_import_public_lite.pb.h
+#
+#protoc_outputs = \
+# $(protoc_lite_outputs) \
+# google/protobuf/any_test.pb.cc \
+# google/protobuf/any_test.pb.h \
+# google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.cc \
+# google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.h \
+# google/protobuf/compiler/cpp/cpp_test_large_enum_value.pb.cc \
+# google/protobuf/compiler/cpp/cpp_test_large_enum_value.pb.h \
+# google/protobuf/map_proto2_unittest.pb.cc \
+# google/protobuf/map_proto2_unittest.pb.h \
+# google/protobuf/map_unittest.pb.cc \
+# google/protobuf/map_unittest.pb.h \
+# google/protobuf/unittest_arena.pb.cc \
+# google/protobuf/unittest_arena.pb.h \
+# google/protobuf/unittest_custom_options.pb.cc \
+# google/protobuf/unittest_custom_options.pb.h \
+# google/protobuf/unittest_drop_unknown_fields.pb.cc \
+# google/protobuf/unittest_drop_unknown_fields.pb.h \
+# google/protobuf/unittest_embed_optimize_for.pb.cc \
+# google/protobuf/unittest_embed_optimize_for.pb.h \
+# google/protobuf/unittest_empty.pb.cc \
+# google/protobuf/unittest_empty.pb.h \
+# google/protobuf/unittest_enormous_descriptor.pb.cc \
+# google/protobuf/unittest_enormous_descriptor.pb.h \
+# google/protobuf/unittest_import.pb.cc \
+# google/protobuf/unittest_import.pb.h \
+# google/protobuf/unittest_import_public.pb.cc \
+# google/protobuf/unittest_import_public.pb.h \
+# google/protobuf/unittest_lazy_dependencies.pb.cc \
+# google/protobuf/unittest_lazy_dependencies.pb.h \
+# google/protobuf/unittest_lazy_dependencies_custom_option.pb.cc \
+# google/protobuf/unittest_lazy_dependencies_custom_option.pb.h \
+# google/protobuf/unittest_lazy_dependencies_enum.pb.cc \
+# google/protobuf/unittest_lazy_dependencies_enum.pb.h \
+# google/protobuf/unittest_lite_imports_nonlite.pb.cc \
+# google/protobuf/unittest_lite_imports_nonlite.pb.h \
+# google/protobuf/unittest_mset.pb.cc \
+# google/protobuf/unittest_mset.pb.h \
+# google/protobuf/unittest_mset_wire_format.pb.cc \
+# google/protobuf/unittest_mset_wire_format.pb.h \
+# google/protobuf/unittest_no_arena_import.pb.cc \
+# google/protobuf/unittest_no_arena_import.pb.h \
+# google/protobuf/unittest_no_arena.pb.cc \
+# google/protobuf/unittest_no_arena.pb.h \
+# google/protobuf/unittest_no_field_presence.pb.cc \
+# google/protobuf/unittest_no_field_presence.pb.h \
+# google/protobuf/unittest_no_generic_services.pb.cc \
+# google/protobuf/unittest_no_generic_services.pb.h \
+# google/protobuf/unittest_optimize_for.pb.cc \
+# google/protobuf/unittest_optimize_for.pb.h \
+# google/protobuf/unittest.pb.cc \
+# google/protobuf/unittest.pb.h \
+# google/protobuf/unittest_preserve_unknown_enum2.pb.cc \
+# google/protobuf/unittest_preserve_unknown_enum2.pb.h \
+# google/protobuf/unittest_preserve_unknown_enum.pb.cc \
+# google/protobuf/unittest_preserve_unknown_enum.pb.h \
+# google/protobuf/unittest_proto3_arena.pb.cc \
+# google/protobuf/unittest_proto3_arena.pb.h \
+# google/protobuf/unittest_proto3_arena_lite.pb.cc \
+# google/protobuf/unittest_proto3_arena_lite.pb.h \
+# google/protobuf/unittest_proto3_lite.pb.cc \
+# google/protobuf/unittest_proto3_lite.pb.h \
+# google/protobuf/unittest_well_known_types.pb.cc \
+# google/protobuf/unittest_well_known_types.pb.h \
+# google/protobuf/util/internal/testdata/anys.pb.cc \
+# google/protobuf/util/internal/testdata/anys.pb.h \
+# google/protobuf/util/internal/testdata/books.pb.cc \
+# google/protobuf/util/internal/testdata/books.pb.h \
+# google/protobuf/util/internal/testdata/default_value.pb.cc \
+# google/protobuf/util/internal/testdata/default_value.pb.h \
+# google/protobuf/util/internal/testdata/default_value_test.pb.cc \
+# google/protobuf/util/internal/testdata/default_value_test.pb.h \
+# google/protobuf/util/internal/testdata/field_mask.pb.cc \
+# google/protobuf/util/internal/testdata/field_mask.pb.h \
+# google/protobuf/util/internal/testdata/maps.pb.cc \
+# google/protobuf/util/internal/testdata/maps.pb.h \
+# google/protobuf/util/internal/testdata/oneofs.pb.cc \
+# google/protobuf/util/internal/testdata/oneofs.pb.h \
+# google/protobuf/util/internal/testdata/proto3.pb.cc \
+# google/protobuf/util/internal/testdata/proto3.pb.h \
+# google/protobuf/util/internal/testdata/struct.pb.cc \
+# google/protobuf/util/internal/testdata/struct.pb.h \
+# google/protobuf/util/internal/testdata/timestamp_duration.pb.cc \
+# google/protobuf/util/internal/testdata/timestamp_duration.pb.h \
+# google/protobuf/util/internal/testdata/wrappers.pb.cc \
+# google/protobuf/util/internal/testdata/wrappers.pb.h \
+# google/protobuf/util/json_format_proto3.pb.cc \
+# google/protobuf/util/json_format_proto3.pb.h \
+# google/protobuf/util/message_differencer_unittest.pb.cc \
+# google/protobuf/util/message_differencer_unittest.pb.h
+#
+#if USE_EXTERNAL_PROTOC
+#
+#unittest_proto_middleman: $(protoc_inputs)
+# $(PROTOC) -I$(srcdir) --cpp_out=. $^
+# touch unittest_proto_middleman
+#
+#else
+#
+## We have to cd to $(srcdir) before executing protoc because $(protoc_inputs) is
+## relative to srcdir, which may not be the same as the current directory when
+## building out-of-tree.
+#unittest_proto_middleman: protoc$(EXEEXT) $(protoc_inputs)
+# oldpwd=`pwd` && ( cd $(srcdir) && $$oldpwd/protoc$(EXEEXT) -I. --cpp_out=$$oldpwd $(protoc_inputs) )
+# touch unittest_proto_middleman
+#
+#endif
+#
+#$(protoc_outputs): unittest_proto_middleman
+#
+#COMMON_TEST_SOURCES = \
+# google/protobuf/arena_test_util.cc \
+# google/protobuf/arena_test_util.h \
+# google/protobuf/map_test_util.cc \
+# google/protobuf/map_test_util.h \
+# google/protobuf/map_test_util_impl.h \
+# google/protobuf/test_util.cc \
+# google/protobuf/test_util.h \
+# google/protobuf/test_util.inc \
+# google/protobuf/testing/googletest.cc \
+# google/protobuf/testing/googletest.h \
+# google/protobuf/testing/file.cc \
+# google/protobuf/testing/file.h
+#
+#GOOGLETEST_BUILD_DIR=../third_party/googletest/googletest
+#GOOGLEMOCK_BUILD_DIR=../third_party/googletest/googlemock
+#GOOGLETEST_SRC_DIR=$(srcdir)/../third_party/googletest/googletest
+#GOOGLEMOCK_SRC_DIR=$(srcdir)/../third_party/googletest/googlemock
+#check_PROGRAMS = protoc protobuf-test protobuf-lazy-descriptor-test \
+# protobuf-lite-test test_plugin protobuf-lite-arena-test \
+# no-warning-test $(GZCHECKPROGRAMS)
+#protobuf_test_LDADD = $(PTHREAD_LIBS) libprotobuf.la libprotoc.la \
+# $(GOOGLETEST_BUILD_DIR)/lib/libgtest.la \