-
Notifications
You must be signed in to change notification settings - Fork 15.5k
/
file_lists.cmake
1266 lines (1213 loc) · 71.4 KB
/
file_lists.cmake
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
# Auto-generated by @//pkg:gen_src_file_lists_cmake
#
# This file contains lists of sources based on Bazel rules. It should
# be included from a hand-written CMake file that defines targets.
#
# Changes to this file will be overwritten based on Bazel definitions.
if(${CMAKE_VERSION} VERSION_GREATER 3.10 OR ${CMAKE_VERSION} VERSION_EQUAL 3.10)
include_guard()
endif()
# @//pkg:protobuf
set(libprotobuf_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/any.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/api.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/duration.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/empty.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/field_mask.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/source_context.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/struct.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/timestamp.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/type.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/wrappers.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/any.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/any_lite.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/arena.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/arena_align.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/arenastring.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/arenaz_sampler.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/importer.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/parser.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/cpp_features.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor_database.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/dynamic_message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set_heavy.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/feature_resolver.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_enum_util.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_bases.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_reflection.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_full.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_gen.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_lite.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_util.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/implicit_weak_message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/inlined_string_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/coded_stream.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/gzip_stream.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/io_win32.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/printer.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/strtod.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/tokenizer.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_sink.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl_lite.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/lexer.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/message_path.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/parser.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/unparser.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/untyped_message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/writer.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/zero_copy_buffered_stream.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/json/json.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/map.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/map_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/message_lite.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/parse_context.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/port.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/raw_ptr.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_mode.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_ops.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_ptr_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/service.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/common.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/text_format.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/unknown_field_set.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/util/delimited_message_util.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/util/field_comparator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/util/field_mask_util.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/util/message_differencer.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/util/time_util.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/util/type_resolver_util.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format_lite.cc
)
# @//pkg:protobuf
set(libprotobuf_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/any.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/api.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/duration.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/empty.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/field_mask.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/source_context.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/struct.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/timestamp.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/type.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/wrappers.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/any.h
${protobuf_SOURCE_DIR}/src/google/protobuf/arena.h
${protobuf_SOURCE_DIR}/src/google/protobuf/arena_align.h
${protobuf_SOURCE_DIR}/src/google/protobuf/arena_allocation_policy.h
${protobuf_SOURCE_DIR}/src/google/protobuf/arena_cleanup.h
${protobuf_SOURCE_DIR}/src/google/protobuf/arenastring.h
${protobuf_SOURCE_DIR}/src/google/protobuf/arenaz_sampler.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/importer.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/parser.h
${protobuf_SOURCE_DIR}/src/google/protobuf/cpp_edition_defaults.h
${protobuf_SOURCE_DIR}/src/google/protobuf/cpp_features.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.h
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor_database.h
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor_legacy.h
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor_visitor.h
${protobuf_SOURCE_DIR}/src/google/protobuf/dynamic_message.h
${protobuf_SOURCE_DIR}/src/google/protobuf/endian.h
${protobuf_SOURCE_DIR}/src/google/protobuf/explicitly_constructed.h
${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set.h
${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set_inl.h
${protobuf_SOURCE_DIR}/src/google/protobuf/feature_resolver.h
${protobuf_SOURCE_DIR}/src/google/protobuf/field_access_listener.h
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_enum_reflection.h
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_enum_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_bases.h
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_reflection.h
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_decl.h
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_gen.h
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_impl.h
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/has_bits.h
${protobuf_SOURCE_DIR}/src/google/protobuf/implicit_weak_message.h
${protobuf_SOURCE_DIR}/src/google/protobuf/inlined_string_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/internal_visibility.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/coded_stream.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/gzip_stream.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/io_win32.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/printer.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/strtod.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/tokenizer.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_sink.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/descriptor_traits.h
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/lexer.h
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/message_path.h
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/parser.h
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/parser_traits.h
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/unparser.h
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/unparser_traits.h
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/untyped_message.h
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/writer.h
${protobuf_SOURCE_DIR}/src/google/protobuf/json/internal/zero_copy_buffered_stream.h
${protobuf_SOURCE_DIR}/src/google/protobuf/json/json.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map_entry.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map_field_inl.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map_field_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map_type_handler.h
${protobuf_SOURCE_DIR}/src/google/protobuf/message.h
${protobuf_SOURCE_DIR}/src/google/protobuf/message_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/metadata.h
${protobuf_SOURCE_DIR}/src/google/protobuf/metadata_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/parse_context.h
${protobuf_SOURCE_DIR}/src/google/protobuf/port.h
${protobuf_SOURCE_DIR}/src/google/protobuf/port_def.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/port_undef.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/raw_ptr.h
${protobuf_SOURCE_DIR}/src/google/protobuf/reflection.h
${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_internal.h
${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_mode.h
${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_ops.h
${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_visit_field_info.h
${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_visit_fields.h
${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_ptr_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/runtime_version.h
${protobuf_SOURCE_DIR}/src/google/protobuf/serial_arena.h
${protobuf_SOURCE_DIR}/src/google/protobuf/service.h
${protobuf_SOURCE_DIR}/src/google/protobuf/string_block.h
${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/callback.h
${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/common.h
${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/platform_macros.h
${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/port.h
${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/status_macros.h
${protobuf_SOURCE_DIR}/src/google/protobuf/text_format.h
${protobuf_SOURCE_DIR}/src/google/protobuf/thread_safe_arena.h
${protobuf_SOURCE_DIR}/src/google/protobuf/unknown_field_set.h
${protobuf_SOURCE_DIR}/src/google/protobuf/util/delimited_message_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/util/field_comparator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/util/field_mask_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/util/json_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/util/message_differencer.h
${protobuf_SOURCE_DIR}/src/google/protobuf/util/time_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/util/type_resolver.h
${protobuf_SOURCE_DIR}/src/google/protobuf/util/type_resolver_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/varint_shuffle.h
${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format.h
${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format_lite.h
)
# @//pkg:protobuf_lite
set(libprotobuf_lite_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/any_lite.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/arena.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/arena_align.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/arenastring.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/arenaz_sampler.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_enum_util.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_lite.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_util.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/implicit_weak_message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/inlined_string_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/coded_stream.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/io_win32.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl_lite.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/map.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/message_lite.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/parse_context.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/port.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/raw_ptr.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_ptr_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/common.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format_lite.cc
)
# @//pkg:protobuf_lite
set(libprotobuf_lite_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/any.h
${protobuf_SOURCE_DIR}/src/google/protobuf/arena.h
${protobuf_SOURCE_DIR}/src/google/protobuf/arena_align.h
${protobuf_SOURCE_DIR}/src/google/protobuf/arena_allocation_policy.h
${protobuf_SOURCE_DIR}/src/google/protobuf/arena_cleanup.h
${protobuf_SOURCE_DIR}/src/google/protobuf/arenastring.h
${protobuf_SOURCE_DIR}/src/google/protobuf/arenaz_sampler.h
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/endian.h
${protobuf_SOURCE_DIR}/src/google/protobuf/explicitly_constructed.h
${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set.h
${protobuf_SOURCE_DIR}/src/google/protobuf/extension_set_inl.h
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_enum_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_decl.h
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_tctable_impl.h
${protobuf_SOURCE_DIR}/src/google/protobuf/generated_message_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/has_bits.h
${protobuf_SOURCE_DIR}/src/google/protobuf/implicit_weak_message.h
${protobuf_SOURCE_DIR}/src/google/protobuf/inlined_string_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/internal_visibility.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/coded_stream.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/io_win32.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl.h
${protobuf_SOURCE_DIR}/src/google/protobuf/io/zero_copy_stream_impl_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map_field_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map_type_handler.h
${protobuf_SOURCE_DIR}/src/google/protobuf/message_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/metadata_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/parse_context.h
${protobuf_SOURCE_DIR}/src/google/protobuf/port.h
${protobuf_SOURCE_DIR}/src/google/protobuf/port_def.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/port_undef.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/raw_ptr.h
${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_ptr_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/runtime_version.h
${protobuf_SOURCE_DIR}/src/google/protobuf/serial_arena.h
${protobuf_SOURCE_DIR}/src/google/protobuf/string_block.h
${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/callback.h
${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/common.h
${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/platform_macros.h
${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/port.h
${protobuf_SOURCE_DIR}/src/google/protobuf/stubs/status_macros.h
${protobuf_SOURCE_DIR}/src/google/protobuf/thread_safe_arena.h
${protobuf_SOURCE_DIR}/src/google/protobuf/varint_shuffle.h
${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format_lite.h
)
# @//pkg:protoc
set(libprotoc_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/code_generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/code_generator_lite.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/command_line_interface.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/enum.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/extension.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/cord_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/enum_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/map_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/message_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/primitive_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/string_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/string_view_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/file.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/helpers.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/ifndef_guard.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/namespace_printer.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/padding_optimizer.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/parse_function_generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/service.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/tracker.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_enum.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_enum_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_field_base.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_helpers.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_map_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_message_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/names.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/context.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/doc_comment.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/field_common.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/file.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/enum.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/enum_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/extension.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/generator_factory.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/make_field_gens.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/map_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/message_builder.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/message_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/primitive_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/service.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/string_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/helpers.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/internal_helpers.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/java_features.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/enum.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/enum_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/extension.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/generator_factory.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/make_field_gens.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/map_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/message_builder.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/message_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/primitive_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/string_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_serialization.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/name_resolver.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/names.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/shared_code_generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/kotlin/field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/kotlin/file.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/kotlin/generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/kotlin/message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/enum.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/enum_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/extension.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/file.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/helpers.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/import_writer.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/line_consumer.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/map_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/message_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/names.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/oneof.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/primitive_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/tf_decode_data.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/php/names.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/php/php_generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.pb.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/helpers.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/pyi_generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/retention.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/ruby/ruby_generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/accessor_case.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/accessors.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/default_value.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/map.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/repeated_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/singular_cord.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/singular_message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/singular_scalar.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/singular_string.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/unsupported_field.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/with_presence.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/context.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/crate_mapping.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/enum.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/message.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/naming.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/oneof.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/relative_path.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/rust_field_type.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/rust_keywords.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/upb_helpers.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/subprocess.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/versions.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/zip_writer.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/testing/file.cc
${protobuf_SOURCE_DIR}/upb_generator/common/names.cc
${protobuf_SOURCE_DIR}/upb_generator/minitable/names.cc
${protobuf_SOURCE_DIR}/upb_generator/minitable/names_internal.cc
)
# @//pkg:protoc
set(libprotoc_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/code_generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/code_generator_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/command_line_interface.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/enum.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/extension.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/field_generators/generators.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/file.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/helpers.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/ifndef_guard.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/message.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/message_layout_helper.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/names.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/namespace_printer.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/options.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/padding_optimizer.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/parse_function_generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/service.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/tracker.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_doc_comment.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_enum.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_enum_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_field_base.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_helpers.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_map_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_message.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_message_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_options.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_primitive_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_reflection_class.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_source_generator_base.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/csharp_wrapper_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/csharp/names.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/context.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/doc_comment.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/field_common.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/file.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/enum.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/enum_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/extension.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/field_generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/generator_factory.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/make_field_gens.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/map_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/message.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/message_builder.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/message_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/primitive_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/service.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/full/string_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/generator_common.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/generator_factory.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/helpers.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/internal_helpers.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/java_features.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/enum.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/enum_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/extension.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/field_generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/generator_factory.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/make_field_gens.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/map_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/message.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/message_builder.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/message_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/primitive_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/lite/string_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/message_serialization.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/name_resolver.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/names.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/options.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/shared_code_generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/kotlin/field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/kotlin/file.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/kotlin/generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/kotlin/message.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/enum.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/enum_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/extension.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/file.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/helpers.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/import_writer.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/line_consumer.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/map_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/message.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/message_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/names.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/nsobject_methods.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/oneof.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/options.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/primitive_field.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/objectivec/tf_decode_data.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/php/names.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/php/php_generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.pb.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/helpers.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/python/pyi_generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/retention.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/ruby/ruby_generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/accessor_case.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/accessors.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/default_value.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/accessors/with_presence.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/context.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/crate_mapping.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/enum.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/message.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/naming.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/oneof.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/relative_path.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/rust_field_type.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/rust_keywords.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/rust/upb_helpers.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/scc.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/subprocess.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/versions.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/zip_writer.h
${protobuf_SOURCE_DIR}/src/google/protobuf/testing/file.h
${protobuf_SOURCE_DIR}/upb/port/atomic.h
${protobuf_SOURCE_DIR}/upb/port/def.inc
${protobuf_SOURCE_DIR}/upb/port/undef.inc
${protobuf_SOURCE_DIR}/upb/port/vsnprintf_compat.h
${protobuf_SOURCE_DIR}/upb_generator/common/names.h
${protobuf_SOURCE_DIR}/upb_generator/minitable/names.h
${protobuf_SOURCE_DIR}/upb_generator/minitable/names_internal.h
)
# @//pkg:upb
set(libupb_srcs
${protobuf_SOURCE_DIR}/upb/base/status.c
${protobuf_SOURCE_DIR}/upb/hash/common.c
${protobuf_SOURCE_DIR}/upb/json/decode.c
${protobuf_SOURCE_DIR}/upb/json/encode.c
${protobuf_SOURCE_DIR}/upb/lex/atoi.c
${protobuf_SOURCE_DIR}/upb/lex/round_trip.c
${protobuf_SOURCE_DIR}/upb/lex/strtod.c
${protobuf_SOURCE_DIR}/upb/lex/unicode.c
${protobuf_SOURCE_DIR}/upb/mem/alloc.c
${protobuf_SOURCE_DIR}/upb/mem/arena.c
${protobuf_SOURCE_DIR}/upb/message/accessors.c
${protobuf_SOURCE_DIR}/upb/message/array.c
${protobuf_SOURCE_DIR}/upb/message/compare.c
${protobuf_SOURCE_DIR}/upb/message/compat.c
${protobuf_SOURCE_DIR}/upb/message/copy.c
${protobuf_SOURCE_DIR}/upb/message/internal/compare_unknown.c
${protobuf_SOURCE_DIR}/upb/message/internal/extension.c
${protobuf_SOURCE_DIR}/upb/message/internal/iterator.c
${protobuf_SOURCE_DIR}/upb/message/internal/message.c
${protobuf_SOURCE_DIR}/upb/message/map.c
${protobuf_SOURCE_DIR}/upb/message/map_sorter.c
${protobuf_SOURCE_DIR}/upb/message/merge.c
${protobuf_SOURCE_DIR}/upb/message/message.c
${protobuf_SOURCE_DIR}/upb/mini_descriptor/build_enum.c
${protobuf_SOURCE_DIR}/upb/mini_descriptor/decode.c
${protobuf_SOURCE_DIR}/upb/mini_descriptor/internal/base92.c
${protobuf_SOURCE_DIR}/upb/mini_descriptor/internal/encode.c
${protobuf_SOURCE_DIR}/upb/mini_descriptor/link.c
${protobuf_SOURCE_DIR}/upb/mini_table/extension_registry.c
${protobuf_SOURCE_DIR}/upb/mini_table/internal/message.c
${protobuf_SOURCE_DIR}/upb/mini_table/message.c
${protobuf_SOURCE_DIR}/upb/reflection/def_pool.c
${protobuf_SOURCE_DIR}/upb/reflection/def_type.c
${protobuf_SOURCE_DIR}/upb/reflection/desc_state.c
${protobuf_SOURCE_DIR}/upb/reflection/enum_def.c
${protobuf_SOURCE_DIR}/upb/reflection/enum_reserved_range.c
${protobuf_SOURCE_DIR}/upb/reflection/enum_value_def.c
${protobuf_SOURCE_DIR}/upb/reflection/extension_range.c
${protobuf_SOURCE_DIR}/upb/reflection/field_def.c
${protobuf_SOURCE_DIR}/upb/reflection/file_def.c
${protobuf_SOURCE_DIR}/upb/reflection/internal/def_builder.c
${protobuf_SOURCE_DIR}/upb/reflection/internal/strdup2.c
${protobuf_SOURCE_DIR}/upb/reflection/message.c
${protobuf_SOURCE_DIR}/upb/reflection/message_def.c
${protobuf_SOURCE_DIR}/upb/reflection/message_reserved_range.c
${protobuf_SOURCE_DIR}/upb/reflection/method_def.c
${protobuf_SOURCE_DIR}/upb/reflection/oneof_def.c
${protobuf_SOURCE_DIR}/upb/reflection/service_def.c
${protobuf_SOURCE_DIR}/upb/text/encode.c
${protobuf_SOURCE_DIR}/upb/text/internal/encode.c
${protobuf_SOURCE_DIR}/upb/util/def_to_proto.c
${protobuf_SOURCE_DIR}/upb/util/required_fields.c
${protobuf_SOURCE_DIR}/upb/wire/byte_size.c
${protobuf_SOURCE_DIR}/upb/wire/decode.c
${protobuf_SOURCE_DIR}/upb/wire/encode.c
${protobuf_SOURCE_DIR}/upb/wire/eps_copy_input_stream.c
${protobuf_SOURCE_DIR}/upb/wire/internal/decode_fast.c
${protobuf_SOURCE_DIR}/upb/wire/reader.c
)
# @//pkg:upb
set(libupb_hdrs
${protobuf_SOURCE_DIR}/upb/base/descriptor_constants.h
${protobuf_SOURCE_DIR}/upb/base/internal/endian.h
${protobuf_SOURCE_DIR}/upb/base/internal/log2.h
${protobuf_SOURCE_DIR}/upb/base/status.h
${protobuf_SOURCE_DIR}/upb/base/status.hpp
${protobuf_SOURCE_DIR}/upb/base/string_view.h
${protobuf_SOURCE_DIR}/upb/base/upcast.h
${protobuf_SOURCE_DIR}/upb/generated_code_support.h
${protobuf_SOURCE_DIR}/upb/hash/common.h
${protobuf_SOURCE_DIR}/upb/hash/int_table.h
${protobuf_SOURCE_DIR}/upb/hash/str_table.h
${protobuf_SOURCE_DIR}/upb/json/decode.h
${protobuf_SOURCE_DIR}/upb/json/encode.h
${protobuf_SOURCE_DIR}/upb/lex/atoi.h
${protobuf_SOURCE_DIR}/upb/lex/round_trip.h
${protobuf_SOURCE_DIR}/upb/lex/strtod.h
${protobuf_SOURCE_DIR}/upb/lex/unicode.h
${protobuf_SOURCE_DIR}/upb/mem/alloc.h
${protobuf_SOURCE_DIR}/upb/mem/arena.h
${protobuf_SOURCE_DIR}/upb/mem/arena.hpp
${protobuf_SOURCE_DIR}/upb/mem/internal/arena.h
${protobuf_SOURCE_DIR}/upb/message/accessors.h
${protobuf_SOURCE_DIR}/upb/message/array.h
${protobuf_SOURCE_DIR}/upb/message/compare.h
${protobuf_SOURCE_DIR}/upb/message/compat.h
${protobuf_SOURCE_DIR}/upb/message/copy.h
${protobuf_SOURCE_DIR}/upb/message/internal/accessors.h
${protobuf_SOURCE_DIR}/upb/message/internal/array.h
${protobuf_SOURCE_DIR}/upb/message/internal/compare_unknown.h
${protobuf_SOURCE_DIR}/upb/message/internal/extension.h
${protobuf_SOURCE_DIR}/upb/message/internal/iterator.h
${protobuf_SOURCE_DIR}/upb/message/internal/map.h
${protobuf_SOURCE_DIR}/upb/message/internal/map_entry.h
${protobuf_SOURCE_DIR}/upb/message/internal/map_sorter.h
${protobuf_SOURCE_DIR}/upb/message/internal/message.h
${protobuf_SOURCE_DIR}/upb/message/internal/tagged_ptr.h
${protobuf_SOURCE_DIR}/upb/message/internal/types.h
${protobuf_SOURCE_DIR}/upb/message/map.h
${protobuf_SOURCE_DIR}/upb/message/map_gencode_util.h
${protobuf_SOURCE_DIR}/upb/message/merge.h
${protobuf_SOURCE_DIR}/upb/message/message.h
${protobuf_SOURCE_DIR}/upb/message/tagged_ptr.h
${protobuf_SOURCE_DIR}/upb/message/value.h
${protobuf_SOURCE_DIR}/upb/mini_descriptor/build_enum.h
${protobuf_SOURCE_DIR}/upb/mini_descriptor/decode.h
${protobuf_SOURCE_DIR}/upb/mini_descriptor/internal/base92.h
${protobuf_SOURCE_DIR}/upb/mini_descriptor/internal/decoder.h
${protobuf_SOURCE_DIR}/upb/mini_descriptor/internal/encode.h
${protobuf_SOURCE_DIR}/upb/mini_descriptor/internal/encode.hpp
${protobuf_SOURCE_DIR}/upb/mini_descriptor/internal/modifiers.h
${protobuf_SOURCE_DIR}/upb/mini_descriptor/internal/wire_constants.h
${protobuf_SOURCE_DIR}/upb/mini_descriptor/link.h
${protobuf_SOURCE_DIR}/upb/mini_table/enum.h
${protobuf_SOURCE_DIR}/upb/mini_table/extension.h
${protobuf_SOURCE_DIR}/upb/mini_table/extension_registry.h
${protobuf_SOURCE_DIR}/upb/mini_table/field.h
${protobuf_SOURCE_DIR}/upb/mini_table/file.h
${protobuf_SOURCE_DIR}/upb/mini_table/internal/enum.h
${protobuf_SOURCE_DIR}/upb/mini_table/internal/extension.h
${protobuf_SOURCE_DIR}/upb/mini_table/internal/field.h
${protobuf_SOURCE_DIR}/upb/mini_table/internal/file.h
${protobuf_SOURCE_DIR}/upb/mini_table/internal/message.h
${protobuf_SOURCE_DIR}/upb/mini_table/internal/size_log2.h
${protobuf_SOURCE_DIR}/upb/mini_table/internal/sub.h
${protobuf_SOURCE_DIR}/upb/mini_table/message.h
${protobuf_SOURCE_DIR}/upb/mini_table/sub.h
${protobuf_SOURCE_DIR}/upb/port/atomic.h
${protobuf_SOURCE_DIR}/upb/port/def.inc
${protobuf_SOURCE_DIR}/upb/port/undef.inc
${protobuf_SOURCE_DIR}/upb/port/vsnprintf_compat.h
${protobuf_SOURCE_DIR}/upb/reflection/common.h
${protobuf_SOURCE_DIR}/upb/reflection/def.h
${protobuf_SOURCE_DIR}/upb/reflection/def.hpp
${protobuf_SOURCE_DIR}/upb/reflection/def_pool.h
${protobuf_SOURCE_DIR}/upb/reflection/def_type.h
${protobuf_SOURCE_DIR}/upb/reflection/descriptor_bootstrap.h
${protobuf_SOURCE_DIR}/upb/reflection/enum_def.h
${protobuf_SOURCE_DIR}/upb/reflection/enum_reserved_range.h
${protobuf_SOURCE_DIR}/upb/reflection/enum_value_def.h
${protobuf_SOURCE_DIR}/upb/reflection/extension_range.h
${protobuf_SOURCE_DIR}/upb/reflection/field_def.h
${protobuf_SOURCE_DIR}/upb/reflection/file_def.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/def_pool.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/desc_state.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/enum_def.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/enum_reserved_range.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/enum_value_def.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/extension_range.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/field_def.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/file_def.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/message_def.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/message_reserved_range.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/method_def.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/oneof_def.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/service_def.h
${protobuf_SOURCE_DIR}/upb/reflection/internal/upb_edition_defaults.h
${protobuf_SOURCE_DIR}/upb/reflection/message.h
${protobuf_SOURCE_DIR}/upb/reflection/message.hpp
${protobuf_SOURCE_DIR}/upb/reflection/message_def.h
${protobuf_SOURCE_DIR}/upb/reflection/message_reserved_range.h
${protobuf_SOURCE_DIR}/upb/reflection/method_def.h
${protobuf_SOURCE_DIR}/upb/reflection/oneof_def.h
${protobuf_SOURCE_DIR}/upb/reflection/service_def.h
${protobuf_SOURCE_DIR}/upb/text/encode.h
${protobuf_SOURCE_DIR}/upb/text/internal/encode.h
${protobuf_SOURCE_DIR}/upb/text/options.h
${protobuf_SOURCE_DIR}/upb/util/def_to_proto.h
${protobuf_SOURCE_DIR}/upb/util/required_fields.h
${protobuf_SOURCE_DIR}/upb/wire/byte_size.h
${protobuf_SOURCE_DIR}/upb/wire/decode.h
${protobuf_SOURCE_DIR}/upb/wire/encode.h
${protobuf_SOURCE_DIR}/upb/wire/eps_copy_input_stream.h
${protobuf_SOURCE_DIR}/upb/wire/internal/decode_fast.h
${protobuf_SOURCE_DIR}/upb/wire/reader.h
${protobuf_SOURCE_DIR}/upb/wire/types.h
)
# @//pkg:protoc-gen-upb
set(protoc-gen-upb_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/code_generator_lite.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/port.cc
${protobuf_SOURCE_DIR}/upb_generator/c/generator.cc
${protobuf_SOURCE_DIR}/upb_generator/c/names.cc
${protobuf_SOURCE_DIR}/upb_generator/c/names_internal.cc
${protobuf_SOURCE_DIR}/upb_generator/common.cc
${protobuf_SOURCE_DIR}/upb_generator/common/names.cc
${protobuf_SOURCE_DIR}/upb_generator/file_layout.cc
${protobuf_SOURCE_DIR}/upb_generator/minitable/names.cc
${protobuf_SOURCE_DIR}/upb_generator/minitable/names_internal.cc
)
# @//pkg:protoc-gen-upb
set(protoc-gen-upb_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/code_generator_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/port.h
${protobuf_SOURCE_DIR}/src/google/protobuf/port_def.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/port_undef.inc
${protobuf_SOURCE_DIR}/upb_generator/c/names.h
${protobuf_SOURCE_DIR}/upb_generator/c/names_internal.h
${protobuf_SOURCE_DIR}/upb_generator/common.h
${protobuf_SOURCE_DIR}/upb_generator/common/names.h
${protobuf_SOURCE_DIR}/upb_generator/file_layout.h
${protobuf_SOURCE_DIR}/upb_generator/minitable/names.h
${protobuf_SOURCE_DIR}/upb_generator/minitable/names_internal.h
${protobuf_SOURCE_DIR}/upb_generator/plugin.h
${protobuf_SOURCE_DIR}/upb_generator/plugin_bootstrap.h
)
# @//pkg:protoc-gen-upbdefs
set(protoc-gen-upbdefs_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/code_generator_lite.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/port.cc
${protobuf_SOURCE_DIR}/upb_generator/common.cc
${protobuf_SOURCE_DIR}/upb_generator/common/names.cc
${protobuf_SOURCE_DIR}/upb_generator/file_layout.cc
${protobuf_SOURCE_DIR}/upb_generator/minitable/names.cc
${protobuf_SOURCE_DIR}/upb_generator/minitable/names_internal.cc
${protobuf_SOURCE_DIR}/upb_generator/reflection/generator.cc
${protobuf_SOURCE_DIR}/upb_generator/reflection/names.cc
)
# @//pkg:protoc-gen-upbdefs
set(protoc-gen-upbdefs_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/code_generator_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/port.h
${protobuf_SOURCE_DIR}/src/google/protobuf/port_def.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/port_undef.inc
${protobuf_SOURCE_DIR}/upb_generator/common.h
${protobuf_SOURCE_DIR}/upb_generator/common/names.h
${protobuf_SOURCE_DIR}/upb_generator/file_layout.h
${protobuf_SOURCE_DIR}/upb_generator/minitable/names.h
${protobuf_SOURCE_DIR}/upb_generator/minitable/names_internal.h
${protobuf_SOURCE_DIR}/upb_generator/plugin.h
${protobuf_SOURCE_DIR}/upb_generator/plugin_bootstrap.h
${protobuf_SOURCE_DIR}/upb_generator/reflection/names.h
)
# @//pkg:protoc-gen-upb_minitable
set(protoc-gen-upb_minitable_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/code_generator_lite.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/port.cc
${protobuf_SOURCE_DIR}/upb_generator/common.cc
${protobuf_SOURCE_DIR}/upb_generator/common/names.cc
${protobuf_SOURCE_DIR}/upb_generator/file_layout.cc
${protobuf_SOURCE_DIR}/upb_generator/minitable/fasttable.cc
${protobuf_SOURCE_DIR}/upb_generator/minitable/generator.cc
${protobuf_SOURCE_DIR}/upb_generator/minitable/main.cc
${protobuf_SOURCE_DIR}/upb_generator/minitable/names.cc
${protobuf_SOURCE_DIR}/upb_generator/minitable/names_internal.cc
)
# @//pkg:protoc-gen-upb_minitable
set(protoc-gen-upb_minitable_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/code_generator_lite.h
${protobuf_SOURCE_DIR}/src/google/protobuf/port.h
${protobuf_SOURCE_DIR}/src/google/protobuf/port_def.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/port_undef.inc
${protobuf_SOURCE_DIR}/upb_generator/common.h
${protobuf_SOURCE_DIR}/upb_generator/common/names.h
${protobuf_SOURCE_DIR}/upb_generator/file_layout.h
${protobuf_SOURCE_DIR}/upb_generator/minitable/generator.h
${protobuf_SOURCE_DIR}/upb_generator/minitable/names.h
${protobuf_SOURCE_DIR}/upb_generator/minitable/names_internal.h
${protobuf_SOURCE_DIR}/upb_generator/plugin.h
${protobuf_SOURCE_DIR}/upb_generator/plugin_bootstrap.h
)
# @//src/google/protobuf:well_known_type_protos
set(wkt_protos_files
${protobuf_SOURCE_DIR}/src/google/protobuf/any.proto
${protobuf_SOURCE_DIR}/src/google/protobuf/api.proto
${protobuf_SOURCE_DIR}/src/google/protobuf/duration.proto
${protobuf_SOURCE_DIR}/src/google/protobuf/empty.proto
${protobuf_SOURCE_DIR}/src/google/protobuf/field_mask.proto
${protobuf_SOURCE_DIR}/src/google/protobuf/source_context.proto
${protobuf_SOURCE_DIR}/src/google/protobuf/struct.proto
${protobuf_SOURCE_DIR}/src/google/protobuf/timestamp.proto
${protobuf_SOURCE_DIR}/src/google/protobuf/type.proto
${protobuf_SOURCE_DIR}/src/google/protobuf/wrappers.proto
)
# @//src/google/protobuf:cpp_features_proto
set(cpp_features_proto_proto_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/cpp_features.proto
)
# @//src/google/protobuf:cpp_features_proto
set(cpp_features_proto_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/cpp_features.proto.pb.cc
)
# @//src/google/protobuf:cpp_features_proto
set(cpp_features_proto_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/cpp_features.proto.pb.h
)
# @//src/google/protobuf:cpp_features_proto
set(cpp_features_proto_files
${protobuf_SOURCE_DIR}/src/google/protobuf/cpp_features_proto-descriptor-set.proto.bin
)
# @//src/google/protobuf:descriptor_proto
set(descriptor_proto_proto_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.proto
)
# @//src/google/protobuf:descriptor_proto
set(descriptor_proto_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.proto.pb.cc
)
# @//src/google/protobuf:descriptor_proto
set(descriptor_proto_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor.proto.pb.h
)
# @//src/google/protobuf:descriptor_proto
set(descriptor_proto_files
${protobuf_SOURCE_DIR}/src/google/protobuf/descriptor_proto-descriptor-set.proto.bin
)
# @//src/google/protobuf/compiler:plugin_proto
set(plugin_proto_proto_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.proto
)
# @//src/google/protobuf/compiler:plugin_proto
set(plugin_proto_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.proto.pb.cc
)
# @//src/google/protobuf/compiler:plugin_proto
set(plugin_proto_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin.proto.pb.h
)
# @//src/google/protobuf/compiler:plugin_proto
set(plugin_proto_files
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/plugin_proto-descriptor-set.proto.bin
)
# @//java/core:java_features_proto
set(java_features_proto_proto_srcs
${protobuf_SOURCE_DIR}/java/core/src/main/resources/google/protobuf/java_features.proto
)
# @//java/core:java_features_proto
set(java_features_proto_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/java_features.proto.pb.cc
)
# @//java/core:java_features_proto
set(java_features_proto_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/java/java_features.proto.pb.h
)
# @//java/core:java_features_proto
set(java_features_proto_files
${protobuf_SOURCE_DIR}/java/core/java_features_proto-descriptor-set.proto.bin
)
# @//pkg:common_test
set(common_test_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/command_line_interface_tester.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/mock_code_generator.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/testing/file.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/testing/googletest.cc
)
# @//pkg:common_test
set(common_test_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/command_line_interface_tester.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/mock_code_generator.h
${protobuf_SOURCE_DIR}/src/google/protobuf/internal_visibility_for_testing.h
${protobuf_SOURCE_DIR}/src/google/protobuf/test_textproto.h
${protobuf_SOURCE_DIR}/src/google/protobuf/testing/googletest.h
)
# @//pkg:lite_test_util
set(lite_test_util_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/arena_test_util.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/map_lite_test_util.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/test_util_lite.cc
)
# @//pkg:lite_test_util
set(lite_test_util_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/arena_test_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map_lite_test_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map_test_util_impl.h
${protobuf_SOURCE_DIR}/src/google/protobuf/proto3_lite_unittest.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/test_util.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/test_util2.h
${protobuf_SOURCE_DIR}/src/google/protobuf/test_util_lite.h
)
# @//pkg:test_util
set(test_util_srcs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/annotation_test_util.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_tester.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/test_util.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/testing/file.cc
${protobuf_SOURCE_DIR}/src/google/protobuf/unredacted_debug_format_for_test.cc
)
# @//pkg:test_util
set(test_util_hdrs
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/annotation_test_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/unittest.h
${protobuf_SOURCE_DIR}/src/google/protobuf/compiler/cpp/unittest.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/io/test_zero_copy_stream.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map_test.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/map_test_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/map_test_util.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/message_unittest.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/message_unittest_legacy_apis.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/reflection_tester.h
${protobuf_SOURCE_DIR}/src/google/protobuf/repeated_field_reflection_unittest.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/test_util.h
${protobuf_SOURCE_DIR}/src/google/protobuf/test_util.inc
${protobuf_SOURCE_DIR}/src/google/protobuf/unredacted_debug_format_for_test.h
${protobuf_SOURCE_DIR}/src/google/protobuf/wire_format_unittest.inc
)
# @//upb:test_util
set(upb_test_util_files
${protobuf_SOURCE_DIR}/upb/test/fuzz_util.cc
${protobuf_SOURCE_DIR}/upb/test/fuzz_util.h
${protobuf_SOURCE_DIR}/upb/test/parse_text_proto.h