forked from electron/electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
filenames.libcxx.gni
1031 lines (1030 loc) · 63.1 KB
/
filenames.libcxx.gni
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
libcxx_headers = [
"//third_party/libc++/src/include/CMakeLists.txt",
"//third_party/libc++/src/include/__algorithm/adjacent_find.h",
"//third_party/libc++/src/include/__algorithm/all_of.h",
"//third_party/libc++/src/include/__algorithm/any_of.h",
"//third_party/libc++/src/include/__algorithm/binary_search.h",
"//third_party/libc++/src/include/__algorithm/clamp.h",
"//third_party/libc++/src/include/__algorithm/comp.h",
"//third_party/libc++/src/include/__algorithm/comp_ref_type.h",
"//third_party/libc++/src/include/__algorithm/copy.h",
"//third_party/libc++/src/include/__algorithm/copy_backward.h",
"//third_party/libc++/src/include/__algorithm/copy_if.h",
"//third_party/libc++/src/include/__algorithm/copy_move_common.h",
"//third_party/libc++/src/include/__algorithm/copy_n.h",
"//third_party/libc++/src/include/__algorithm/count.h",
"//third_party/libc++/src/include/__algorithm/count_if.h",
"//third_party/libc++/src/include/__algorithm/equal.h",
"//third_party/libc++/src/include/__algorithm/equal_range.h",
"//third_party/libc++/src/include/__algorithm/fill.h",
"//third_party/libc++/src/include/__algorithm/fill_n.h",
"//third_party/libc++/src/include/__algorithm/find.h",
"//third_party/libc++/src/include/__algorithm/find_end.h",
"//third_party/libc++/src/include/__algorithm/find_first_of.h",
"//third_party/libc++/src/include/__algorithm/find_if.h",
"//third_party/libc++/src/include/__algorithm/find_if_not.h",
"//third_party/libc++/src/include/__algorithm/find_segment_if.h",
"//third_party/libc++/src/include/__algorithm/for_each.h",
"//third_party/libc++/src/include/__algorithm/for_each_n.h",
"//third_party/libc++/src/include/__algorithm/for_each_segment.h",
"//third_party/libc++/src/include/__algorithm/generate.h",
"//third_party/libc++/src/include/__algorithm/generate_n.h",
"//third_party/libc++/src/include/__algorithm/half_positive.h",
"//third_party/libc++/src/include/__algorithm/in_found_result.h",
"//third_party/libc++/src/include/__algorithm/in_fun_result.h",
"//third_party/libc++/src/include/__algorithm/in_in_out_result.h",
"//third_party/libc++/src/include/__algorithm/in_in_result.h",
"//third_party/libc++/src/include/__algorithm/in_out_out_result.h",
"//third_party/libc++/src/include/__algorithm/in_out_result.h",
"//third_party/libc++/src/include/__algorithm/includes.h",
"//third_party/libc++/src/include/__algorithm/inplace_merge.h",
"//third_party/libc++/src/include/__algorithm/is_heap.h",
"//third_party/libc++/src/include/__algorithm/is_heap_until.h",
"//third_party/libc++/src/include/__algorithm/is_partitioned.h",
"//third_party/libc++/src/include/__algorithm/is_permutation.h",
"//third_party/libc++/src/include/__algorithm/is_sorted.h",
"//third_party/libc++/src/include/__algorithm/is_sorted_until.h",
"//third_party/libc++/src/include/__algorithm/iter_swap.h",
"//third_party/libc++/src/include/__algorithm/iterator_operations.h",
"//third_party/libc++/src/include/__algorithm/lexicographical_compare.h",
"//third_party/libc++/src/include/__algorithm/lexicographical_compare_three_way.h",
"//third_party/libc++/src/include/__algorithm/lower_bound.h",
"//third_party/libc++/src/include/__algorithm/make_heap.h",
"//third_party/libc++/src/include/__algorithm/make_projected.h",
"//third_party/libc++/src/include/__algorithm/max.h",
"//third_party/libc++/src/include/__algorithm/max_element.h",
"//third_party/libc++/src/include/__algorithm/merge.h",
"//third_party/libc++/src/include/__algorithm/min.h",
"//third_party/libc++/src/include/__algorithm/min_element.h",
"//third_party/libc++/src/include/__algorithm/min_max_result.h",
"//third_party/libc++/src/include/__algorithm/minmax.h",
"//third_party/libc++/src/include/__algorithm/minmax_element.h",
"//third_party/libc++/src/include/__algorithm/mismatch.h",
"//third_party/libc++/src/include/__algorithm/move.h",
"//third_party/libc++/src/include/__algorithm/move_backward.h",
"//third_party/libc++/src/include/__algorithm/next_permutation.h",
"//third_party/libc++/src/include/__algorithm/none_of.h",
"//third_party/libc++/src/include/__algorithm/nth_element.h",
"//third_party/libc++/src/include/__algorithm/partial_sort.h",
"//third_party/libc++/src/include/__algorithm/partial_sort_copy.h",
"//third_party/libc++/src/include/__algorithm/partition.h",
"//third_party/libc++/src/include/__algorithm/partition_copy.h",
"//third_party/libc++/src/include/__algorithm/partition_point.h",
"//third_party/libc++/src/include/__algorithm/pop_heap.h",
"//third_party/libc++/src/include/__algorithm/prev_permutation.h",
"//third_party/libc++/src/include/__algorithm/pstl.h",
"//third_party/libc++/src/include/__algorithm/push_heap.h",
"//third_party/libc++/src/include/__algorithm/ranges_adjacent_find.h",
"//third_party/libc++/src/include/__algorithm/ranges_all_of.h",
"//third_party/libc++/src/include/__algorithm/ranges_any_of.h",
"//third_party/libc++/src/include/__algorithm/ranges_binary_search.h",
"//third_party/libc++/src/include/__algorithm/ranges_clamp.h",
"//third_party/libc++/src/include/__algorithm/ranges_contains.h",
"//third_party/libc++/src/include/__algorithm/ranges_contains_subrange.h",
"//third_party/libc++/src/include/__algorithm/ranges_copy.h",
"//third_party/libc++/src/include/__algorithm/ranges_copy_backward.h",
"//third_party/libc++/src/include/__algorithm/ranges_copy_if.h",
"//third_party/libc++/src/include/__algorithm/ranges_copy_n.h",
"//third_party/libc++/src/include/__algorithm/ranges_count.h",
"//third_party/libc++/src/include/__algorithm/ranges_count_if.h",
"//third_party/libc++/src/include/__algorithm/ranges_ends_with.h",
"//third_party/libc++/src/include/__algorithm/ranges_equal.h",
"//third_party/libc++/src/include/__algorithm/ranges_equal_range.h",
"//third_party/libc++/src/include/__algorithm/ranges_fill.h",
"//third_party/libc++/src/include/__algorithm/ranges_fill_n.h",
"//third_party/libc++/src/include/__algorithm/ranges_find.h",
"//third_party/libc++/src/include/__algorithm/ranges_find_end.h",
"//third_party/libc++/src/include/__algorithm/ranges_find_first_of.h",
"//third_party/libc++/src/include/__algorithm/ranges_find_if.h",
"//third_party/libc++/src/include/__algorithm/ranges_find_if_not.h",
"//third_party/libc++/src/include/__algorithm/ranges_find_last.h",
"//third_party/libc++/src/include/__algorithm/ranges_fold.h",
"//third_party/libc++/src/include/__algorithm/ranges_for_each.h",
"//third_party/libc++/src/include/__algorithm/ranges_for_each_n.h",
"//third_party/libc++/src/include/__algorithm/ranges_generate.h",
"//third_party/libc++/src/include/__algorithm/ranges_generate_n.h",
"//third_party/libc++/src/include/__algorithm/ranges_includes.h",
"//third_party/libc++/src/include/__algorithm/ranges_inplace_merge.h",
"//third_party/libc++/src/include/__algorithm/ranges_is_heap.h",
"//third_party/libc++/src/include/__algorithm/ranges_is_heap_until.h",
"//third_party/libc++/src/include/__algorithm/ranges_is_partitioned.h",
"//third_party/libc++/src/include/__algorithm/ranges_is_permutation.h",
"//third_party/libc++/src/include/__algorithm/ranges_is_sorted.h",
"//third_party/libc++/src/include/__algorithm/ranges_is_sorted_until.h",
"//third_party/libc++/src/include/__algorithm/ranges_iterator_concept.h",
"//third_party/libc++/src/include/__algorithm/ranges_lexicographical_compare.h",
"//third_party/libc++/src/include/__algorithm/ranges_lower_bound.h",
"//third_party/libc++/src/include/__algorithm/ranges_make_heap.h",
"//third_party/libc++/src/include/__algorithm/ranges_max.h",
"//third_party/libc++/src/include/__algorithm/ranges_max_element.h",
"//third_party/libc++/src/include/__algorithm/ranges_merge.h",
"//third_party/libc++/src/include/__algorithm/ranges_min.h",
"//third_party/libc++/src/include/__algorithm/ranges_min_element.h",
"//third_party/libc++/src/include/__algorithm/ranges_minmax.h",
"//third_party/libc++/src/include/__algorithm/ranges_minmax_element.h",
"//third_party/libc++/src/include/__algorithm/ranges_mismatch.h",
"//third_party/libc++/src/include/__algorithm/ranges_move.h",
"//third_party/libc++/src/include/__algorithm/ranges_move_backward.h",
"//third_party/libc++/src/include/__algorithm/ranges_next_permutation.h",
"//third_party/libc++/src/include/__algorithm/ranges_none_of.h",
"//third_party/libc++/src/include/__algorithm/ranges_nth_element.h",
"//third_party/libc++/src/include/__algorithm/ranges_partial_sort.h",
"//third_party/libc++/src/include/__algorithm/ranges_partial_sort_copy.h",
"//third_party/libc++/src/include/__algorithm/ranges_partition.h",
"//third_party/libc++/src/include/__algorithm/ranges_partition_copy.h",
"//third_party/libc++/src/include/__algorithm/ranges_partition_point.h",
"//third_party/libc++/src/include/__algorithm/ranges_pop_heap.h",
"//third_party/libc++/src/include/__algorithm/ranges_prev_permutation.h",
"//third_party/libc++/src/include/__algorithm/ranges_push_heap.h",
"//third_party/libc++/src/include/__algorithm/ranges_remove.h",
"//third_party/libc++/src/include/__algorithm/ranges_remove_copy.h",
"//third_party/libc++/src/include/__algorithm/ranges_remove_copy_if.h",
"//third_party/libc++/src/include/__algorithm/ranges_remove_if.h",
"//third_party/libc++/src/include/__algorithm/ranges_replace.h",
"//third_party/libc++/src/include/__algorithm/ranges_replace_copy.h",
"//third_party/libc++/src/include/__algorithm/ranges_replace_copy_if.h",
"//third_party/libc++/src/include/__algorithm/ranges_replace_if.h",
"//third_party/libc++/src/include/__algorithm/ranges_reverse.h",
"//third_party/libc++/src/include/__algorithm/ranges_reverse_copy.h",
"//third_party/libc++/src/include/__algorithm/ranges_rotate.h",
"//third_party/libc++/src/include/__algorithm/ranges_rotate_copy.h",
"//third_party/libc++/src/include/__algorithm/ranges_sample.h",
"//third_party/libc++/src/include/__algorithm/ranges_search.h",
"//third_party/libc++/src/include/__algorithm/ranges_search_n.h",
"//third_party/libc++/src/include/__algorithm/ranges_set_difference.h",
"//third_party/libc++/src/include/__algorithm/ranges_set_intersection.h",
"//third_party/libc++/src/include/__algorithm/ranges_set_symmetric_difference.h",
"//third_party/libc++/src/include/__algorithm/ranges_set_union.h",
"//third_party/libc++/src/include/__algorithm/ranges_shuffle.h",
"//third_party/libc++/src/include/__algorithm/ranges_sort.h",
"//third_party/libc++/src/include/__algorithm/ranges_sort_heap.h",
"//third_party/libc++/src/include/__algorithm/ranges_stable_partition.h",
"//third_party/libc++/src/include/__algorithm/ranges_stable_sort.h",
"//third_party/libc++/src/include/__algorithm/ranges_starts_with.h",
"//third_party/libc++/src/include/__algorithm/ranges_swap_ranges.h",
"//third_party/libc++/src/include/__algorithm/ranges_transform.h",
"//third_party/libc++/src/include/__algorithm/ranges_unique.h",
"//third_party/libc++/src/include/__algorithm/ranges_unique_copy.h",
"//third_party/libc++/src/include/__algorithm/ranges_upper_bound.h",
"//third_party/libc++/src/include/__algorithm/remove.h",
"//third_party/libc++/src/include/__algorithm/remove_copy.h",
"//third_party/libc++/src/include/__algorithm/remove_copy_if.h",
"//third_party/libc++/src/include/__algorithm/remove_if.h",
"//third_party/libc++/src/include/__algorithm/replace.h",
"//third_party/libc++/src/include/__algorithm/replace_copy.h",
"//third_party/libc++/src/include/__algorithm/replace_copy_if.h",
"//third_party/libc++/src/include/__algorithm/replace_if.h",
"//third_party/libc++/src/include/__algorithm/reverse.h",
"//third_party/libc++/src/include/__algorithm/reverse_copy.h",
"//third_party/libc++/src/include/__algorithm/rotate.h",
"//third_party/libc++/src/include/__algorithm/rotate_copy.h",
"//third_party/libc++/src/include/__algorithm/sample.h",
"//third_party/libc++/src/include/__algorithm/search.h",
"//third_party/libc++/src/include/__algorithm/search_n.h",
"//third_party/libc++/src/include/__algorithm/set_difference.h",
"//third_party/libc++/src/include/__algorithm/set_intersection.h",
"//third_party/libc++/src/include/__algorithm/set_symmetric_difference.h",
"//third_party/libc++/src/include/__algorithm/set_union.h",
"//third_party/libc++/src/include/__algorithm/shift_left.h",
"//third_party/libc++/src/include/__algorithm/shift_right.h",
"//third_party/libc++/src/include/__algorithm/shuffle.h",
"//third_party/libc++/src/include/__algorithm/sift_down.h",
"//third_party/libc++/src/include/__algorithm/simd_utils.h",
"//third_party/libc++/src/include/__algorithm/sort.h",
"//third_party/libc++/src/include/__algorithm/sort_heap.h",
"//third_party/libc++/src/include/__algorithm/stable_partition.h",
"//third_party/libc++/src/include/__algorithm/stable_sort.h",
"//third_party/libc++/src/include/__algorithm/swap_ranges.h",
"//third_party/libc++/src/include/__algorithm/three_way_comp_ref_type.h",
"//third_party/libc++/src/include/__algorithm/transform.h",
"//third_party/libc++/src/include/__algorithm/uniform_random_bit_generator_adaptor.h",
"//third_party/libc++/src/include/__algorithm/unique.h",
"//third_party/libc++/src/include/__algorithm/unique_copy.h",
"//third_party/libc++/src/include/__algorithm/unwrap_iter.h",
"//third_party/libc++/src/include/__algorithm/unwrap_range.h",
"//third_party/libc++/src/include/__algorithm/upper_bound.h",
"//third_party/libc++/src/include/__assert",
"//third_party/libc++/src/include/__atomic/aliases.h",
"//third_party/libc++/src/include/__atomic/atomic.h",
"//third_party/libc++/src/include/__atomic/atomic_base.h",
"//third_party/libc++/src/include/__atomic/atomic_flag.h",
"//third_party/libc++/src/include/__atomic/atomic_init.h",
"//third_party/libc++/src/include/__atomic/atomic_lock_free.h",
"//third_party/libc++/src/include/__atomic/atomic_ref.h",
"//third_party/libc++/src/include/__atomic/atomic_sync.h",
"//third_party/libc++/src/include/__atomic/check_memory_order.h",
"//third_party/libc++/src/include/__atomic/contention_t.h",
"//third_party/libc++/src/include/__atomic/cxx_atomic_impl.h",
"//third_party/libc++/src/include/__atomic/fence.h",
"//third_party/libc++/src/include/__atomic/is_always_lock_free.h",
"//third_party/libc++/src/include/__atomic/kill_dependency.h",
"//third_party/libc++/src/include/__atomic/memory_order.h",
"//third_party/libc++/src/include/__atomic/to_gcc_order.h",
"//third_party/libc++/src/include/__bit/bit_cast.h",
"//third_party/libc++/src/include/__bit/bit_ceil.h",
"//third_party/libc++/src/include/__bit/bit_floor.h",
"//third_party/libc++/src/include/__bit/bit_log2.h",
"//third_party/libc++/src/include/__bit/bit_width.h",
"//third_party/libc++/src/include/__bit/blsr.h",
"//third_party/libc++/src/include/__bit/byteswap.h",
"//third_party/libc++/src/include/__bit/countl.h",
"//third_party/libc++/src/include/__bit/countr.h",
"//third_party/libc++/src/include/__bit/endian.h",
"//third_party/libc++/src/include/__bit/has_single_bit.h",
"//third_party/libc++/src/include/__bit/invert_if.h",
"//third_party/libc++/src/include/__bit/popcount.h",
"//third_party/libc++/src/include/__bit/rotate.h",
"//third_party/libc++/src/include/__bit_reference",
"//third_party/libc++/src/include/__charconv/chars_format.h",
"//third_party/libc++/src/include/__charconv/from_chars_floating_point.h",
"//third_party/libc++/src/include/__charconv/from_chars_integral.h",
"//third_party/libc++/src/include/__charconv/from_chars_result.h",
"//third_party/libc++/src/include/__charconv/tables.h",
"//third_party/libc++/src/include/__charconv/to_chars.h",
"//third_party/libc++/src/include/__charconv/to_chars_base_10.h",
"//third_party/libc++/src/include/__charconv/to_chars_floating_point.h",
"//third_party/libc++/src/include/__charconv/to_chars_integral.h",
"//third_party/libc++/src/include/__charconv/to_chars_result.h",
"//third_party/libc++/src/include/__charconv/traits.h",
"//third_party/libc++/src/include/__chrono/calendar.h",
"//third_party/libc++/src/include/__chrono/concepts.h",
"//third_party/libc++/src/include/__chrono/convert_to_timespec.h",
"//third_party/libc++/src/include/__chrono/convert_to_tm.h",
"//third_party/libc++/src/include/__chrono/day.h",
"//third_party/libc++/src/include/__chrono/duration.h",
"//third_party/libc++/src/include/__chrono/exception.h",
"//third_party/libc++/src/include/__chrono/file_clock.h",
"//third_party/libc++/src/include/__chrono/formatter.h",
"//third_party/libc++/src/include/__chrono/hh_mm_ss.h",
"//third_party/libc++/src/include/__chrono/high_resolution_clock.h",
"//third_party/libc++/src/include/__chrono/leap_second.h",
"//third_party/libc++/src/include/__chrono/literals.h",
"//third_party/libc++/src/include/__chrono/local_info.h",
"//third_party/libc++/src/include/__chrono/month.h",
"//third_party/libc++/src/include/__chrono/month_weekday.h",
"//third_party/libc++/src/include/__chrono/monthday.h",
"//third_party/libc++/src/include/__chrono/ostream.h",
"//third_party/libc++/src/include/__chrono/parser_std_format_spec.h",
"//third_party/libc++/src/include/__chrono/statically_widen.h",
"//third_party/libc++/src/include/__chrono/steady_clock.h",
"//third_party/libc++/src/include/__chrono/sys_info.h",
"//third_party/libc++/src/include/__chrono/system_clock.h",
"//third_party/libc++/src/include/__chrono/time_point.h",
"//third_party/libc++/src/include/__chrono/time_zone.h",
"//third_party/libc++/src/include/__chrono/time_zone_link.h",
"//third_party/libc++/src/include/__chrono/tzdb.h",
"//third_party/libc++/src/include/__chrono/tzdb_list.h",
"//third_party/libc++/src/include/__chrono/weekday.h",
"//third_party/libc++/src/include/__chrono/year.h",
"//third_party/libc++/src/include/__chrono/year_month.h",
"//third_party/libc++/src/include/__chrono/year_month_day.h",
"//third_party/libc++/src/include/__chrono/year_month_weekday.h",
"//third_party/libc++/src/include/__chrono/zoned_time.h",
"//third_party/libc++/src/include/__compare/common_comparison_category.h",
"//third_party/libc++/src/include/__compare/compare_partial_order_fallback.h",
"//third_party/libc++/src/include/__compare/compare_strong_order_fallback.h",
"//third_party/libc++/src/include/__compare/compare_three_way.h",
"//third_party/libc++/src/include/__compare/compare_three_way_result.h",
"//third_party/libc++/src/include/__compare/compare_weak_order_fallback.h",
"//third_party/libc++/src/include/__compare/is_eq.h",
"//third_party/libc++/src/include/__compare/ordering.h",
"//third_party/libc++/src/include/__compare/partial_order.h",
"//third_party/libc++/src/include/__compare/strong_order.h",
"//third_party/libc++/src/include/__compare/synth_three_way.h",
"//third_party/libc++/src/include/__compare/three_way_comparable.h",
"//third_party/libc++/src/include/__compare/weak_order.h",
"//third_party/libc++/src/include/__concepts/arithmetic.h",
"//third_party/libc++/src/include/__concepts/assignable.h",
"//third_party/libc++/src/include/__concepts/boolean_testable.h",
"//third_party/libc++/src/include/__concepts/class_or_enum.h",
"//third_party/libc++/src/include/__concepts/common_reference_with.h",
"//third_party/libc++/src/include/__concepts/common_with.h",
"//third_party/libc++/src/include/__concepts/constructible.h",
"//third_party/libc++/src/include/__concepts/convertible_to.h",
"//third_party/libc++/src/include/__concepts/copyable.h",
"//third_party/libc++/src/include/__concepts/derived_from.h",
"//third_party/libc++/src/include/__concepts/destructible.h",
"//third_party/libc++/src/include/__concepts/different_from.h",
"//third_party/libc++/src/include/__concepts/equality_comparable.h",
"//third_party/libc++/src/include/__concepts/invocable.h",
"//third_party/libc++/src/include/__concepts/movable.h",
"//third_party/libc++/src/include/__concepts/predicate.h",
"//third_party/libc++/src/include/__concepts/regular.h",
"//third_party/libc++/src/include/__concepts/relation.h",
"//third_party/libc++/src/include/__concepts/same_as.h",
"//third_party/libc++/src/include/__concepts/semiregular.h",
"//third_party/libc++/src/include/__concepts/swappable.h",
"//third_party/libc++/src/include/__concepts/totally_ordered.h",
"//third_party/libc++/src/include/__condition_variable/condition_variable.h",
"//third_party/libc++/src/include/__config",
"//third_party/libc++/src/include/__config_site.in",
"//third_party/libc++/src/include/__configuration/abi.h",
"//third_party/libc++/src/include/__configuration/availability.h",
"//third_party/libc++/src/include/__configuration/compiler.h",
"//third_party/libc++/src/include/__configuration/language.h",
"//third_party/libc++/src/include/__configuration/platform.h",
"//third_party/libc++/src/include/__coroutine/coroutine_handle.h",
"//third_party/libc++/src/include/__coroutine/coroutine_traits.h",
"//third_party/libc++/src/include/__coroutine/noop_coroutine_handle.h",
"//third_party/libc++/src/include/__coroutine/trivial_awaitables.h",
"//third_party/libc++/src/include/__cstddef/byte.h",
"//third_party/libc++/src/include/__cstddef/max_align_t.h",
"//third_party/libc++/src/include/__cstddef/nullptr_t.h",
"//third_party/libc++/src/include/__cstddef/ptrdiff_t.h",
"//third_party/libc++/src/include/__cstddef/size_t.h",
"//third_party/libc++/src/include/__debug_utils/randomize_range.h",
"//third_party/libc++/src/include/__debug_utils/sanitizers.h",
"//third_party/libc++/src/include/__debug_utils/strict_weak_ordering_check.h",
"//third_party/libc++/src/include/__exception/exception.h",
"//third_party/libc++/src/include/__exception/exception_ptr.h",
"//third_party/libc++/src/include/__exception/nested_exception.h",
"//third_party/libc++/src/include/__exception/operations.h",
"//third_party/libc++/src/include/__exception/terminate.h",
"//third_party/libc++/src/include/__expected/bad_expected_access.h",
"//third_party/libc++/src/include/__expected/expected.h",
"//third_party/libc++/src/include/__expected/unexpect.h",
"//third_party/libc++/src/include/__expected/unexpected.h",
"//third_party/libc++/src/include/__filesystem/copy_options.h",
"//third_party/libc++/src/include/__filesystem/directory_entry.h",
"//third_party/libc++/src/include/__filesystem/directory_iterator.h",
"//third_party/libc++/src/include/__filesystem/directory_options.h",
"//third_party/libc++/src/include/__filesystem/file_status.h",
"//third_party/libc++/src/include/__filesystem/file_time_type.h",
"//third_party/libc++/src/include/__filesystem/file_type.h",
"//third_party/libc++/src/include/__filesystem/filesystem_error.h",
"//third_party/libc++/src/include/__filesystem/operations.h",
"//third_party/libc++/src/include/__filesystem/path.h",
"//third_party/libc++/src/include/__filesystem/path_iterator.h",
"//third_party/libc++/src/include/__filesystem/perm_options.h",
"//third_party/libc++/src/include/__filesystem/perms.h",
"//third_party/libc++/src/include/__filesystem/recursive_directory_iterator.h",
"//third_party/libc++/src/include/__filesystem/space_info.h",
"//third_party/libc++/src/include/__filesystem/u8path.h",
"//third_party/libc++/src/include/__format/buffer.h",
"//third_party/libc++/src/include/__format/concepts.h",
"//third_party/libc++/src/include/__format/container_adaptor.h",
"//third_party/libc++/src/include/__format/enable_insertable.h",
"//third_party/libc++/src/include/__format/escaped_output_table.h",
"//third_party/libc++/src/include/__format/extended_grapheme_cluster_table.h",
"//third_party/libc++/src/include/__format/format_arg.h",
"//third_party/libc++/src/include/__format/format_arg_store.h",
"//third_party/libc++/src/include/__format/format_args.h",
"//third_party/libc++/src/include/__format/format_context.h",
"//third_party/libc++/src/include/__format/format_error.h",
"//third_party/libc++/src/include/__format/format_functions.h",
"//third_party/libc++/src/include/__format/format_parse_context.h",
"//third_party/libc++/src/include/__format/format_string.h",
"//third_party/libc++/src/include/__format/format_to_n_result.h",
"//third_party/libc++/src/include/__format/formatter.h",
"//third_party/libc++/src/include/__format/formatter_bool.h",
"//third_party/libc++/src/include/__format/formatter_char.h",
"//third_party/libc++/src/include/__format/formatter_floating_point.h",
"//third_party/libc++/src/include/__format/formatter_integer.h",
"//third_party/libc++/src/include/__format/formatter_integral.h",
"//third_party/libc++/src/include/__format/formatter_output.h",
"//third_party/libc++/src/include/__format/formatter_pointer.h",
"//third_party/libc++/src/include/__format/formatter_string.h",
"//third_party/libc++/src/include/__format/formatter_tuple.h",
"//third_party/libc++/src/include/__format/indic_conjunct_break_table.h",
"//third_party/libc++/src/include/__format/parser_std_format_spec.h",
"//third_party/libc++/src/include/__format/range_default_formatter.h",
"//third_party/libc++/src/include/__format/range_formatter.h",
"//third_party/libc++/src/include/__format/unicode.h",
"//third_party/libc++/src/include/__format/width_estimation_table.h",
"//third_party/libc++/src/include/__format/write_escaped.h",
"//third_party/libc++/src/include/__functional/binary_function.h",
"//third_party/libc++/src/include/__functional/binary_negate.h",
"//third_party/libc++/src/include/__functional/bind.h",
"//third_party/libc++/src/include/__functional/bind_back.h",
"//third_party/libc++/src/include/__functional/bind_front.h",
"//third_party/libc++/src/include/__functional/binder1st.h",
"//third_party/libc++/src/include/__functional/binder2nd.h",
"//third_party/libc++/src/include/__functional/boyer_moore_searcher.h",
"//third_party/libc++/src/include/__functional/compose.h",
"//third_party/libc++/src/include/__functional/default_searcher.h",
"//third_party/libc++/src/include/__functional/function.h",
"//third_party/libc++/src/include/__functional/hash.h",
"//third_party/libc++/src/include/__functional/identity.h",
"//third_party/libc++/src/include/__functional/invoke.h",
"//third_party/libc++/src/include/__functional/is_transparent.h",
"//third_party/libc++/src/include/__functional/mem_fn.h",
"//third_party/libc++/src/include/__functional/mem_fun_ref.h",
"//third_party/libc++/src/include/__functional/not_fn.h",
"//third_party/libc++/src/include/__functional/operations.h",
"//third_party/libc++/src/include/__functional/perfect_forward.h",
"//third_party/libc++/src/include/__functional/pointer_to_binary_function.h",
"//third_party/libc++/src/include/__functional/pointer_to_unary_function.h",
"//third_party/libc++/src/include/__functional/ranges_operations.h",
"//third_party/libc++/src/include/__functional/reference_wrapper.h",
"//third_party/libc++/src/include/__functional/unary_function.h",
"//third_party/libc++/src/include/__functional/unary_negate.h",
"//third_party/libc++/src/include/__functional/weak_result_type.h",
"//third_party/libc++/src/include/__fwd/array.h",
"//third_party/libc++/src/include/__fwd/bit_reference.h",
"//third_party/libc++/src/include/__fwd/byte.h",
"//third_party/libc++/src/include/__fwd/complex.h",
"//third_party/libc++/src/include/__fwd/deque.h",
"//third_party/libc++/src/include/__fwd/format.h",
"//third_party/libc++/src/include/__fwd/fstream.h",
"//third_party/libc++/src/include/__fwd/functional.h",
"//third_party/libc++/src/include/__fwd/get.h",
"//third_party/libc++/src/include/__fwd/ios.h",
"//third_party/libc++/src/include/__fwd/istream.h",
"//third_party/libc++/src/include/__fwd/mdspan.h",
"//third_party/libc++/src/include/__fwd/memory.h",
"//third_party/libc++/src/include/__fwd/memory_resource.h",
"//third_party/libc++/src/include/__fwd/ostream.h",
"//third_party/libc++/src/include/__fwd/pair.h",
"//third_party/libc++/src/include/__fwd/queue.h",
"//third_party/libc++/src/include/__fwd/span.h",
"//third_party/libc++/src/include/__fwd/sstream.h",
"//third_party/libc++/src/include/__fwd/stack.h",
"//third_party/libc++/src/include/__fwd/streambuf.h",
"//third_party/libc++/src/include/__fwd/string.h",
"//third_party/libc++/src/include/__fwd/string_view.h",
"//third_party/libc++/src/include/__fwd/subrange.h",
"//third_party/libc++/src/include/__fwd/tuple.h",
"//third_party/libc++/src/include/__fwd/variant.h",
"//third_party/libc++/src/include/__fwd/vector.h",
"//third_party/libc++/src/include/__hash_table",
"//third_party/libc++/src/include/__ios/fpos.h",
"//third_party/libc++/src/include/__iterator/access.h",
"//third_party/libc++/src/include/__iterator/advance.h",
"//third_party/libc++/src/include/__iterator/aliasing_iterator.h",
"//third_party/libc++/src/include/__iterator/back_insert_iterator.h",
"//third_party/libc++/src/include/__iterator/bounded_iter.h",
"//third_party/libc++/src/include/__iterator/common_iterator.h",
"//third_party/libc++/src/include/__iterator/concepts.h",
"//third_party/libc++/src/include/__iterator/counted_iterator.h",
"//third_party/libc++/src/include/__iterator/cpp17_iterator_concepts.h",
"//third_party/libc++/src/include/__iterator/data.h",
"//third_party/libc++/src/include/__iterator/default_sentinel.h",
"//third_party/libc++/src/include/__iterator/distance.h",
"//third_party/libc++/src/include/__iterator/empty.h",
"//third_party/libc++/src/include/__iterator/erase_if_container.h",
"//third_party/libc++/src/include/__iterator/front_insert_iterator.h",
"//third_party/libc++/src/include/__iterator/incrementable_traits.h",
"//third_party/libc++/src/include/__iterator/indirectly_comparable.h",
"//third_party/libc++/src/include/__iterator/insert_iterator.h",
"//third_party/libc++/src/include/__iterator/istream_iterator.h",
"//third_party/libc++/src/include/__iterator/istreambuf_iterator.h",
"//third_party/libc++/src/include/__iterator/iter_move.h",
"//third_party/libc++/src/include/__iterator/iter_swap.h",
"//third_party/libc++/src/include/__iterator/iterator.h",
"//third_party/libc++/src/include/__iterator/iterator_traits.h",
"//third_party/libc++/src/include/__iterator/iterator_with_data.h",
"//third_party/libc++/src/include/__iterator/mergeable.h",
"//third_party/libc++/src/include/__iterator/move_iterator.h",
"//third_party/libc++/src/include/__iterator/move_sentinel.h",
"//third_party/libc++/src/include/__iterator/next.h",
"//third_party/libc++/src/include/__iterator/ostream_iterator.h",
"//third_party/libc++/src/include/__iterator/ostreambuf_iterator.h",
"//third_party/libc++/src/include/__iterator/permutable.h",
"//third_party/libc++/src/include/__iterator/prev.h",
"//third_party/libc++/src/include/__iterator/projected.h",
"//third_party/libc++/src/include/__iterator/ranges_iterator_traits.h",
"//third_party/libc++/src/include/__iterator/readable_traits.h",
"//third_party/libc++/src/include/__iterator/reverse_access.h",
"//third_party/libc++/src/include/__iterator/reverse_iterator.h",
"//third_party/libc++/src/include/__iterator/segmented_iterator.h",
"//third_party/libc++/src/include/__iterator/size.h",
"//third_party/libc++/src/include/__iterator/sortable.h",
"//third_party/libc++/src/include/__iterator/unreachable_sentinel.h",
"//third_party/libc++/src/include/__iterator/wrap_iter.h",
"//third_party/libc++/src/include/__locale",
"//third_party/libc++/src/include/__locale_dir/locale_base_api/android.h",
"//third_party/libc++/src/include/__locale_dir/locale_base_api/bsd_locale_defaults.h",
"//third_party/libc++/src/include/__locale_dir/locale_base_api/bsd_locale_fallbacks.h",
"//third_party/libc++/src/include/__locale_dir/locale_base_api/fuchsia.h",
"//third_party/libc++/src/include/__locale_dir/locale_base_api/ibm.h",
"//third_party/libc++/src/include/__locale_dir/locale_base_api/locale_guard.h",
"//third_party/libc++/src/include/__locale_dir/locale_base_api/musl.h",
"//third_party/libc++/src/include/__locale_dir/locale_base_api/newlib.h",
"//third_party/libc++/src/include/__locale_dir/locale_base_api/openbsd.h",
"//third_party/libc++/src/include/__locale_dir/locale_base_api/win32.h",
"//third_party/libc++/src/include/__locale_dir/locale_base_api.h",
"//third_party/libc++/src/include/__math/abs.h",
"//third_party/libc++/src/include/__math/copysign.h",
"//third_party/libc++/src/include/__math/error_functions.h",
"//third_party/libc++/src/include/__math/exponential_functions.h",
"//third_party/libc++/src/include/__math/fdim.h",
"//third_party/libc++/src/include/__math/fma.h",
"//third_party/libc++/src/include/__math/gamma.h",
"//third_party/libc++/src/include/__math/hyperbolic_functions.h",
"//third_party/libc++/src/include/__math/hypot.h",
"//third_party/libc++/src/include/__math/inverse_hyperbolic_functions.h",
"//third_party/libc++/src/include/__math/inverse_trigonometric_functions.h",
"//third_party/libc++/src/include/__math/logarithms.h",
"//third_party/libc++/src/include/__math/min_max.h",
"//third_party/libc++/src/include/__math/modulo.h",
"//third_party/libc++/src/include/__math/remainder.h",
"//third_party/libc++/src/include/__math/roots.h",
"//third_party/libc++/src/include/__math/rounding_functions.h",
"//third_party/libc++/src/include/__math/special_functions.h",
"//third_party/libc++/src/include/__math/traits.h",
"//third_party/libc++/src/include/__math/trigonometric_functions.h",
"//third_party/libc++/src/include/__mbstate_t.h",
"//third_party/libc++/src/include/__mdspan/default_accessor.h",
"//third_party/libc++/src/include/__mdspan/extents.h",
"//third_party/libc++/src/include/__mdspan/layout_left.h",
"//third_party/libc++/src/include/__mdspan/layout_right.h",
"//third_party/libc++/src/include/__mdspan/layout_stride.h",
"//third_party/libc++/src/include/__mdspan/mdspan.h",
"//third_party/libc++/src/include/__memory/addressof.h",
"//third_party/libc++/src/include/__memory/align.h",
"//third_party/libc++/src/include/__memory/aligned_alloc.h",
"//third_party/libc++/src/include/__memory/allocate_at_least.h",
"//third_party/libc++/src/include/__memory/allocation_guard.h",
"//third_party/libc++/src/include/__memory/allocator.h",
"//third_party/libc++/src/include/__memory/allocator_arg_t.h",
"//third_party/libc++/src/include/__memory/allocator_destructor.h",
"//third_party/libc++/src/include/__memory/allocator_traits.h",
"//third_party/libc++/src/include/__memory/array_cookie.h",
"//third_party/libc++/src/include/__memory/assume_aligned.h",
"//third_party/libc++/src/include/__memory/auto_ptr.h",
"//third_party/libc++/src/include/__memory/builtin_new_allocator.h",
"//third_party/libc++/src/include/__memory/compressed_pair.h",
"//third_party/libc++/src/include/__memory/concepts.h",
"//third_party/libc++/src/include/__memory/construct_at.h",
"//third_party/libc++/src/include/__memory/destruct_n.h",
"//third_party/libc++/src/include/__memory/inout_ptr.h",
"//third_party/libc++/src/include/__memory/noexcept_move_assign_container.h",
"//third_party/libc++/src/include/__memory/out_ptr.h",
"//third_party/libc++/src/include/__memory/pointer_traits.h",
"//third_party/libc++/src/include/__memory/ranges_construct_at.h",
"//third_party/libc++/src/include/__memory/ranges_uninitialized_algorithms.h",
"//third_party/libc++/src/include/__memory/raw_storage_iterator.h",
"//third_party/libc++/src/include/__memory/shared_ptr.h",
"//third_party/libc++/src/include/__memory/swap_allocator.h",
"//third_party/libc++/src/include/__memory/temp_value.h",
"//third_party/libc++/src/include/__memory/temporary_buffer.h",
"//third_party/libc++/src/include/__memory/uninitialized_algorithms.h",
"//third_party/libc++/src/include/__memory/unique_ptr.h",
"//third_party/libc++/src/include/__memory/unique_temporary_buffer.h",
"//third_party/libc++/src/include/__memory/uses_allocator.h",
"//third_party/libc++/src/include/__memory/uses_allocator_construction.h",
"//third_party/libc++/src/include/__memory_resource/memory_resource.h",
"//third_party/libc++/src/include/__memory_resource/monotonic_buffer_resource.h",
"//third_party/libc++/src/include/__memory_resource/polymorphic_allocator.h",
"//third_party/libc++/src/include/__memory_resource/pool_options.h",
"//third_party/libc++/src/include/__memory_resource/synchronized_pool_resource.h",
"//third_party/libc++/src/include/__memory_resource/unsynchronized_pool_resource.h",
"//third_party/libc++/src/include/__mutex/lock_guard.h",
"//third_party/libc++/src/include/__mutex/mutex.h",
"//third_party/libc++/src/include/__mutex/once_flag.h",
"//third_party/libc++/src/include/__mutex/tag_types.h",
"//third_party/libc++/src/include/__mutex/unique_lock.h",
"//third_party/libc++/src/include/__node_handle",
"//third_party/libc++/src/include/__numeric/accumulate.h",
"//third_party/libc++/src/include/__numeric/adjacent_difference.h",
"//third_party/libc++/src/include/__numeric/exclusive_scan.h",
"//third_party/libc++/src/include/__numeric/gcd_lcm.h",
"//third_party/libc++/src/include/__numeric/inclusive_scan.h",
"//third_party/libc++/src/include/__numeric/inner_product.h",
"//third_party/libc++/src/include/__numeric/iota.h",
"//third_party/libc++/src/include/__numeric/midpoint.h",
"//third_party/libc++/src/include/__numeric/partial_sum.h",
"//third_party/libc++/src/include/__numeric/pstl.h",
"//third_party/libc++/src/include/__numeric/reduce.h",
"//third_party/libc++/src/include/__numeric/saturation_arithmetic.h",
"//third_party/libc++/src/include/__numeric/transform_exclusive_scan.h",
"//third_party/libc++/src/include/__numeric/transform_inclusive_scan.h",
"//third_party/libc++/src/include/__numeric/transform_reduce.h",
"//third_party/libc++/src/include/__ostream/basic_ostream.h",
"//third_party/libc++/src/include/__ostream/print.h",
"//third_party/libc++/src/include/__pstl/backend.h",
"//third_party/libc++/src/include/__pstl/backend_fwd.h",
"//third_party/libc++/src/include/__pstl/backends/default.h",
"//third_party/libc++/src/include/__pstl/backends/libdispatch.h",
"//third_party/libc++/src/include/__pstl/backends/serial.h",
"//third_party/libc++/src/include/__pstl/backends/std_thread.h",
"//third_party/libc++/src/include/__pstl/cpu_algos/any_of.h",
"//third_party/libc++/src/include/__pstl/cpu_algos/cpu_traits.h",
"//third_party/libc++/src/include/__pstl/cpu_algos/fill.h",
"//third_party/libc++/src/include/__pstl/cpu_algos/find_if.h",
"//third_party/libc++/src/include/__pstl/cpu_algos/for_each.h",
"//third_party/libc++/src/include/__pstl/cpu_algos/merge.h",
"//third_party/libc++/src/include/__pstl/cpu_algos/stable_sort.h",
"//third_party/libc++/src/include/__pstl/cpu_algos/transform.h",
"//third_party/libc++/src/include/__pstl/cpu_algos/transform_reduce.h",
"//third_party/libc++/src/include/__pstl/dispatch.h",
"//third_party/libc++/src/include/__pstl/handle_exception.h",
"//third_party/libc++/src/include/__random/bernoulli_distribution.h",
"//third_party/libc++/src/include/__random/binomial_distribution.h",
"//third_party/libc++/src/include/__random/cauchy_distribution.h",
"//third_party/libc++/src/include/__random/chi_squared_distribution.h",
"//third_party/libc++/src/include/__random/clamp_to_integral.h",
"//third_party/libc++/src/include/__random/default_random_engine.h",
"//third_party/libc++/src/include/__random/discard_block_engine.h",
"//third_party/libc++/src/include/__random/discrete_distribution.h",
"//third_party/libc++/src/include/__random/exponential_distribution.h",
"//third_party/libc++/src/include/__random/extreme_value_distribution.h",
"//third_party/libc++/src/include/__random/fisher_f_distribution.h",
"//third_party/libc++/src/include/__random/gamma_distribution.h",
"//third_party/libc++/src/include/__random/generate_canonical.h",
"//third_party/libc++/src/include/__random/geometric_distribution.h",
"//third_party/libc++/src/include/__random/independent_bits_engine.h",
"//third_party/libc++/src/include/__random/is_seed_sequence.h",
"//third_party/libc++/src/include/__random/is_valid.h",
"//third_party/libc++/src/include/__random/knuth_b.h",
"//third_party/libc++/src/include/__random/linear_congruential_engine.h",
"//third_party/libc++/src/include/__random/log2.h",
"//third_party/libc++/src/include/__random/lognormal_distribution.h",
"//third_party/libc++/src/include/__random/mersenne_twister_engine.h",
"//third_party/libc++/src/include/__random/negative_binomial_distribution.h",
"//third_party/libc++/src/include/__random/normal_distribution.h",
"//third_party/libc++/src/include/__random/piecewise_constant_distribution.h",
"//third_party/libc++/src/include/__random/piecewise_linear_distribution.h",
"//third_party/libc++/src/include/__random/poisson_distribution.h",
"//third_party/libc++/src/include/__random/random_device.h",
"//third_party/libc++/src/include/__random/ranlux.h",
"//third_party/libc++/src/include/__random/seed_seq.h",
"//third_party/libc++/src/include/__random/shuffle_order_engine.h",
"//third_party/libc++/src/include/__random/student_t_distribution.h",
"//third_party/libc++/src/include/__random/subtract_with_carry_engine.h",
"//third_party/libc++/src/include/__random/uniform_int_distribution.h",
"//third_party/libc++/src/include/__random/uniform_random_bit_generator.h",
"//third_party/libc++/src/include/__random/uniform_real_distribution.h",
"//third_party/libc++/src/include/__random/weibull_distribution.h",
"//third_party/libc++/src/include/__ranges/access.h",
"//third_party/libc++/src/include/__ranges/all.h",
"//third_party/libc++/src/include/__ranges/as_rvalue_view.h",
"//third_party/libc++/src/include/__ranges/chunk_by_view.h",
"//third_party/libc++/src/include/__ranges/common_view.h",
"//third_party/libc++/src/include/__ranges/concepts.h",
"//third_party/libc++/src/include/__ranges/container_compatible_range.h",
"//third_party/libc++/src/include/__ranges/counted.h",
"//third_party/libc++/src/include/__ranges/dangling.h",
"//third_party/libc++/src/include/__ranges/data.h",
"//third_party/libc++/src/include/__ranges/drop_view.h",
"//third_party/libc++/src/include/__ranges/drop_while_view.h",
"//third_party/libc++/src/include/__ranges/elements_view.h",
"//third_party/libc++/src/include/__ranges/empty.h",
"//third_party/libc++/src/include/__ranges/empty_view.h",
"//third_party/libc++/src/include/__ranges/enable_borrowed_range.h",
"//third_party/libc++/src/include/__ranges/enable_view.h",
"//third_party/libc++/src/include/__ranges/filter_view.h",
"//third_party/libc++/src/include/__ranges/from_range.h",
"//third_party/libc++/src/include/__ranges/iota_view.h",
"//third_party/libc++/src/include/__ranges/istream_view.h",
"//third_party/libc++/src/include/__ranges/join_view.h",
"//third_party/libc++/src/include/__ranges/lazy_split_view.h",
"//third_party/libc++/src/include/__ranges/movable_box.h",
"//third_party/libc++/src/include/__ranges/non_propagating_cache.h",
"//third_party/libc++/src/include/__ranges/owning_view.h",
"//third_party/libc++/src/include/__ranges/range_adaptor.h",
"//third_party/libc++/src/include/__ranges/rbegin.h",
"//third_party/libc++/src/include/__ranges/ref_view.h",
"//third_party/libc++/src/include/__ranges/rend.h",
"//third_party/libc++/src/include/__ranges/repeat_view.h",
"//third_party/libc++/src/include/__ranges/reverse_view.h",
"//third_party/libc++/src/include/__ranges/single_view.h",
"//third_party/libc++/src/include/__ranges/size.h",
"//third_party/libc++/src/include/__ranges/split_view.h",
"//third_party/libc++/src/include/__ranges/subrange.h",
"//third_party/libc++/src/include/__ranges/take_view.h",
"//third_party/libc++/src/include/__ranges/take_while_view.h",
"//third_party/libc++/src/include/__ranges/to.h",
"//third_party/libc++/src/include/__ranges/transform_view.h",
"//third_party/libc++/src/include/__ranges/view_interface.h",
"//third_party/libc++/src/include/__ranges/views.h",
"//third_party/libc++/src/include/__ranges/zip_view.h",
"//third_party/libc++/src/include/__split_buffer",
"//third_party/libc++/src/include/__std_mbstate_t.h",
"//third_party/libc++/src/include/__stop_token/atomic_unique_lock.h",
"//third_party/libc++/src/include/__stop_token/intrusive_list_view.h",
"//third_party/libc++/src/include/__stop_token/intrusive_shared_ptr.h",
"//third_party/libc++/src/include/__stop_token/stop_callback.h",
"//third_party/libc++/src/include/__stop_token/stop_source.h",
"//third_party/libc++/src/include/__stop_token/stop_state.h",
"//third_party/libc++/src/include/__stop_token/stop_token.h",
"//third_party/libc++/src/include/__string/char_traits.h",
"//third_party/libc++/src/include/__string/constexpr_c_functions.h",
"//third_party/libc++/src/include/__string/extern_template_lists.h",
"//third_party/libc++/src/include/__support/ibm/gettod_zos.h",
"//third_party/libc++/src/include/__support/ibm/locale_mgmt_zos.h",
"//third_party/libc++/src/include/__support/ibm/nanosleep.h",
"//third_party/libc++/src/include/__support/xlocale/__nop_locale_mgmt.h",
"//third_party/libc++/src/include/__support/xlocale/__posix_l_fallback.h",
"//third_party/libc++/src/include/__support/xlocale/__strtonum_fallback.h",
"//third_party/libc++/src/include/__system_error/errc.h",
"//third_party/libc++/src/include/__system_error/error_category.h",
"//third_party/libc++/src/include/__system_error/error_code.h",
"//third_party/libc++/src/include/__system_error/error_condition.h",
"//third_party/libc++/src/include/__system_error/system_error.h",
"//third_party/libc++/src/include/__thread/formatter.h",
"//third_party/libc++/src/include/__thread/id.h",
"//third_party/libc++/src/include/__thread/jthread.h",
"//third_party/libc++/src/include/__thread/poll_with_backoff.h",
"//third_party/libc++/src/include/__thread/support/c11.h",
"//third_party/libc++/src/include/__thread/support/external.h",
"//third_party/libc++/src/include/__thread/support/pthread.h",
"//third_party/libc++/src/include/__thread/support/windows.h",
"//third_party/libc++/src/include/__thread/support.h",
"//third_party/libc++/src/include/__thread/this_thread.h",
"//third_party/libc++/src/include/__thread/thread.h",
"//third_party/libc++/src/include/__thread/timed_backoff_policy.h",
"//third_party/libc++/src/include/__tree",
"//third_party/libc++/src/include/__tuple/find_index.h",
"//third_party/libc++/src/include/__tuple/ignore.h",
"//third_party/libc++/src/include/__tuple/make_tuple_types.h",
"//third_party/libc++/src/include/__tuple/sfinae_helpers.h",
"//third_party/libc++/src/include/__tuple/tuple_element.h",
"//third_party/libc++/src/include/__tuple/tuple_indices.h",
"//third_party/libc++/src/include/__tuple/tuple_like.h",
"//third_party/libc++/src/include/__tuple/tuple_like_ext.h",
"//third_party/libc++/src/include/__tuple/tuple_like_no_subrange.h",
"//third_party/libc++/src/include/__tuple/tuple_size.h",
"//third_party/libc++/src/include/__tuple/tuple_types.h",
"//third_party/libc++/src/include/__type_traits/add_const.h",
"//third_party/libc++/src/include/__type_traits/add_cv.h",
"//third_party/libc++/src/include/__type_traits/add_lvalue_reference.h",
"//third_party/libc++/src/include/__type_traits/add_pointer.h",
"//third_party/libc++/src/include/__type_traits/add_rvalue_reference.h",
"//third_party/libc++/src/include/__type_traits/add_volatile.h",
"//third_party/libc++/src/include/__type_traits/aligned_storage.h",
"//third_party/libc++/src/include/__type_traits/aligned_union.h",
"//third_party/libc++/src/include/__type_traits/alignment_of.h",
"//third_party/libc++/src/include/__type_traits/can_extract_key.h",
"//third_party/libc++/src/include/__type_traits/common_reference.h",
"//third_party/libc++/src/include/__type_traits/common_type.h",
"//third_party/libc++/src/include/__type_traits/conditional.h",
"//third_party/libc++/src/include/__type_traits/conjunction.h",
"//third_party/libc++/src/include/__type_traits/container_traits.h",
"//third_party/libc++/src/include/__type_traits/copy_cv.h",
"//third_party/libc++/src/include/__type_traits/copy_cvref.h",
"//third_party/libc++/src/include/__type_traits/datasizeof.h",
"//third_party/libc++/src/include/__type_traits/decay.h",
"//third_party/libc++/src/include/__type_traits/dependent_type.h",
"//third_party/libc++/src/include/__type_traits/desugars_to.h",
"//third_party/libc++/src/include/__type_traits/disjunction.h",
"//third_party/libc++/src/include/__type_traits/enable_if.h",
"//third_party/libc++/src/include/__type_traits/extent.h",
"//third_party/libc++/src/include/__type_traits/has_unique_object_representation.h",
"//third_party/libc++/src/include/__type_traits/has_virtual_destructor.h",
"//third_party/libc++/src/include/__type_traits/integral_constant.h",
"//third_party/libc++/src/include/__type_traits/invoke.h",
"//third_party/libc++/src/include/__type_traits/is_abstract.h",
"//third_party/libc++/src/include/__type_traits/is_aggregate.h",
"//third_party/libc++/src/include/__type_traits/is_allocator.h",
"//third_party/libc++/src/include/__type_traits/is_always_bitcastable.h",
"//third_party/libc++/src/include/__type_traits/is_arithmetic.h",
"//third_party/libc++/src/include/__type_traits/is_array.h",
"//third_party/libc++/src/include/__type_traits/is_assignable.h",
"//third_party/libc++/src/include/__type_traits/is_base_of.h",
"//third_party/libc++/src/include/__type_traits/is_bounded_array.h",
"//third_party/libc++/src/include/__type_traits/is_callable.h",
"//third_party/libc++/src/include/__type_traits/is_char_like_type.h",
"//third_party/libc++/src/include/__type_traits/is_class.h",
"//third_party/libc++/src/include/__type_traits/is_compound.h",
"//third_party/libc++/src/include/__type_traits/is_const.h",
"//third_party/libc++/src/include/__type_traits/is_constant_evaluated.h",
"//third_party/libc++/src/include/__type_traits/is_constructible.h",
"//third_party/libc++/src/include/__type_traits/is_convertible.h",
"//third_party/libc++/src/include/__type_traits/is_core_convertible.h",
"//third_party/libc++/src/include/__type_traits/is_destructible.h",
"//third_party/libc++/src/include/__type_traits/is_empty.h",
"//third_party/libc++/src/include/__type_traits/is_enum.h",
"//third_party/libc++/src/include/__type_traits/is_equality_comparable.h",
"//third_party/libc++/src/include/__type_traits/is_execution_policy.h",
"//third_party/libc++/src/include/__type_traits/is_final.h",
"//third_party/libc++/src/include/__type_traits/is_floating_point.h",
"//third_party/libc++/src/include/__type_traits/is_function.h",
"//third_party/libc++/src/include/__type_traits/is_fundamental.h",
"//third_party/libc++/src/include/__type_traits/is_implicit_lifetime.h",
"//third_party/libc++/src/include/__type_traits/is_implicitly_default_constructible.h",
"//third_party/libc++/src/include/__type_traits/is_integral.h",
"//third_party/libc++/src/include/__type_traits/is_literal_type.h",
"//third_party/libc++/src/include/__type_traits/is_member_pointer.h",
"//third_party/libc++/src/include/__type_traits/is_nothrow_assignable.h",
"//third_party/libc++/src/include/__type_traits/is_nothrow_constructible.h",
"//third_party/libc++/src/include/__type_traits/is_nothrow_convertible.h",
"//third_party/libc++/src/include/__type_traits/is_nothrow_destructible.h",
"//third_party/libc++/src/include/__type_traits/is_null_pointer.h",
"//third_party/libc++/src/include/__type_traits/is_object.h",
"//third_party/libc++/src/include/__type_traits/is_pod.h",
"//third_party/libc++/src/include/__type_traits/is_pointer.h",
"//third_party/libc++/src/include/__type_traits/is_polymorphic.h",
"//third_party/libc++/src/include/__type_traits/is_primary_template.h",
"//third_party/libc++/src/include/__type_traits/is_reference.h",
"//third_party/libc++/src/include/__type_traits/is_reference_wrapper.h",
"//third_party/libc++/src/include/__type_traits/is_referenceable.h",
"//third_party/libc++/src/include/__type_traits/is_same.h",
"//third_party/libc++/src/include/__type_traits/is_scalar.h",
"//third_party/libc++/src/include/__type_traits/is_signed.h",
"//third_party/libc++/src/include/__type_traits/is_signed_integer.h",
"//third_party/libc++/src/include/__type_traits/is_specialization.h",
"//third_party/libc++/src/include/__type_traits/is_standard_layout.h",
"//third_party/libc++/src/include/__type_traits/is_swappable.h",
"//third_party/libc++/src/include/__type_traits/is_trivial.h",
"//third_party/libc++/src/include/__type_traits/is_trivially_assignable.h",
"//third_party/libc++/src/include/__type_traits/is_trivially_constructible.h",
"//third_party/libc++/src/include/__type_traits/is_trivially_copyable.h",
"//third_party/libc++/src/include/__type_traits/is_trivially_destructible.h",
"//third_party/libc++/src/include/__type_traits/is_trivially_lexicographically_comparable.h",
"//third_party/libc++/src/include/__type_traits/is_trivially_relocatable.h",
"//third_party/libc++/src/include/__type_traits/is_unbounded_array.h",
"//third_party/libc++/src/include/__type_traits/is_union.h",
"//third_party/libc++/src/include/__type_traits/is_unsigned.h",
"//third_party/libc++/src/include/__type_traits/is_unsigned_integer.h",
"//third_party/libc++/src/include/__type_traits/is_valid_expansion.h",
"//third_party/libc++/src/include/__type_traits/is_void.h",
"//third_party/libc++/src/include/__type_traits/is_volatile.h",
"//third_party/libc++/src/include/__type_traits/lazy.h",
"//third_party/libc++/src/include/__type_traits/make_32_64_or_128_bit.h",
"//third_party/libc++/src/include/__type_traits/make_const_lvalue_ref.h",
"//third_party/libc++/src/include/__type_traits/make_signed.h",
"//third_party/libc++/src/include/__type_traits/make_unsigned.h",
"//third_party/libc++/src/include/__type_traits/maybe_const.h",
"//third_party/libc++/src/include/__type_traits/nat.h",
"//third_party/libc++/src/include/__type_traits/negation.h",
"//third_party/libc++/src/include/__type_traits/promote.h",
"//third_party/libc++/src/include/__type_traits/rank.h",
"//third_party/libc++/src/include/__type_traits/remove_all_extents.h",
"//third_party/libc++/src/include/__type_traits/remove_const.h",
"//third_party/libc++/src/include/__type_traits/remove_const_ref.h",
"//third_party/libc++/src/include/__type_traits/remove_cv.h",
"//third_party/libc++/src/include/__type_traits/remove_cvref.h",
"//third_party/libc++/src/include/__type_traits/remove_extent.h",
"//third_party/libc++/src/include/__type_traits/remove_pointer.h",
"//third_party/libc++/src/include/__type_traits/remove_reference.h",
"//third_party/libc++/src/include/__type_traits/remove_volatile.h",
"//third_party/libc++/src/include/__type_traits/result_of.h",
"//third_party/libc++/src/include/__type_traits/strip_signature.h",
"//third_party/libc++/src/include/__type_traits/type_identity.h",
"//third_party/libc++/src/include/__type_traits/type_list.h",
"//third_party/libc++/src/include/__type_traits/underlying_type.h",
"//third_party/libc++/src/include/__type_traits/unwrap_ref.h",
"//third_party/libc++/src/include/__type_traits/void_t.h",
"//third_party/libc++/src/include/__undef_macros",
"//third_party/libc++/src/include/__utility/as_const.h",
"//third_party/libc++/src/include/__utility/as_lvalue.h",
"//third_party/libc++/src/include/__utility/auto_cast.h",
"//third_party/libc++/src/include/__utility/cmp.h",
"//third_party/libc++/src/include/__utility/convert_to_integral.h",
"//third_party/libc++/src/include/__utility/declval.h",
"//third_party/libc++/src/include/__utility/empty.h",
"//third_party/libc++/src/include/__utility/exception_guard.h",
"//third_party/libc++/src/include/__utility/exchange.h",
"//third_party/libc++/src/include/__utility/forward.h",
"//third_party/libc++/src/include/__utility/forward_like.h",
"//third_party/libc++/src/include/__utility/in_place.h",
"//third_party/libc++/src/include/__utility/integer_sequence.h",
"//third_party/libc++/src/include/__utility/is_pointer_in_range.h",
"//third_party/libc++/src/include/__utility/is_valid_range.h",
"//third_party/libc++/src/include/__utility/move.h",
"//third_party/libc++/src/include/__utility/no_destroy.h",
"//third_party/libc++/src/include/__utility/pair.h",
"//third_party/libc++/src/include/__utility/piecewise_construct.h",
"//third_party/libc++/src/include/__utility/priority_tag.h",
"//third_party/libc++/src/include/__utility/private_constructor_tag.h",
"//third_party/libc++/src/include/__utility/rel_ops.h",
"//third_party/libc++/src/include/__utility/small_buffer.h",
"//third_party/libc++/src/include/__utility/swap.h",
"//third_party/libc++/src/include/__utility/to_underlying.h",
"//third_party/libc++/src/include/__utility/unreachable.h",
"//third_party/libc++/src/include/__variant/monostate.h",
"//third_party/libc++/src/include/__verbose_abort",
"//third_party/libc++/src/include/algorithm",
"//third_party/libc++/src/include/any",
"//third_party/libc++/src/include/array",
"//third_party/libc++/src/include/atomic",
"//third_party/libc++/src/include/barrier",
"//third_party/libc++/src/include/bit",
"//third_party/libc++/src/include/bitset",
"//third_party/libc++/src/include/cassert",
"//third_party/libc++/src/include/ccomplex",
"//third_party/libc++/src/include/cctype",
"//third_party/libc++/src/include/cerrno",
"//third_party/libc++/src/include/cfenv",
"//third_party/libc++/src/include/cfloat",
"//third_party/libc++/src/include/charconv",
"//third_party/libc++/src/include/chrono",
"//third_party/libc++/src/include/cinttypes",
"//third_party/libc++/src/include/ciso646",
"//third_party/libc++/src/include/climits",
"//third_party/libc++/src/include/clocale",
"//third_party/libc++/src/include/cmath",
"//third_party/libc++/src/include/codecvt",
"//third_party/libc++/src/include/compare",
"//third_party/libc++/src/include/complex",
"//third_party/libc++/src/include/complex.h",
"//third_party/libc++/src/include/concepts",
"//third_party/libc++/src/include/condition_variable",
"//third_party/libc++/src/include/coroutine",
"//third_party/libc++/src/include/csetjmp",
"//third_party/libc++/src/include/csignal",
"//third_party/libc++/src/include/cstdarg",
"//third_party/libc++/src/include/cstdbool",
"//third_party/libc++/src/include/cstddef",
"//third_party/libc++/src/include/cstdint",
"//third_party/libc++/src/include/cstdio",
"//third_party/libc++/src/include/cstdlib",
"//third_party/libc++/src/include/cstring",
"//third_party/libc++/src/include/ctgmath",
"//third_party/libc++/src/include/ctime",
"//third_party/libc++/src/include/ctype.h",
"//third_party/libc++/src/include/cuchar",
"//third_party/libc++/src/include/cwchar",
"//third_party/libc++/src/include/cwctype",
"//third_party/libc++/src/include/deque",
"//third_party/libc++/src/include/errno.h",
"//third_party/libc++/src/include/exception",
"//third_party/libc++/src/include/execution",
"//third_party/libc++/src/include/expected",
"//third_party/libc++/src/include/experimental/__simd/aligned_tag.h",
"//third_party/libc++/src/include/experimental/__simd/declaration.h",
"//third_party/libc++/src/include/experimental/__simd/reference.h",
"//third_party/libc++/src/include/experimental/__simd/scalar.h",
"//third_party/libc++/src/include/experimental/__simd/simd.h",
"//third_party/libc++/src/include/experimental/__simd/simd_mask.h",
"//third_party/libc++/src/include/experimental/__simd/traits.h",
"//third_party/libc++/src/include/experimental/__simd/utility.h",
"//third_party/libc++/src/include/experimental/__simd/vec_ext.h",
"//third_party/libc++/src/include/experimental/iterator",
"//third_party/libc++/src/include/experimental/memory",
"//third_party/libc++/src/include/experimental/propagate_const",
"//third_party/libc++/src/include/experimental/simd",
"//third_party/libc++/src/include/experimental/type_traits",
"//third_party/libc++/src/include/experimental/utility",
"//third_party/libc++/src/include/ext/__hash",
"//third_party/libc++/src/include/ext/hash_map",
"//third_party/libc++/src/include/ext/hash_set",
"//third_party/libc++/src/include/fenv.h",
"//third_party/libc++/src/include/filesystem",
"//third_party/libc++/src/include/float.h",
"//third_party/libc++/src/include/format",
"//third_party/libc++/src/include/forward_list",
"//third_party/libc++/src/include/fstream",
"//third_party/libc++/src/include/functional",
"//third_party/libc++/src/include/future",
"//third_party/libc++/src/include/initializer_list",
"//third_party/libc++/src/include/inttypes.h",
"//third_party/libc++/src/include/iomanip",
"//third_party/libc++/src/include/ios",
"//third_party/libc++/src/include/iosfwd",
"//third_party/libc++/src/include/iostream",
"//third_party/libc++/src/include/istream",
"//third_party/libc++/src/include/iterator",
"//third_party/libc++/src/include/latch",
"//third_party/libc++/src/include/limits",
"//third_party/libc++/src/include/list",
"//third_party/libc++/src/include/locale",
"//third_party/libc++/src/include/map",
"//third_party/libc++/src/include/math.h",
"//third_party/libc++/src/include/mdspan",
"//third_party/libc++/src/include/memory",
"//third_party/libc++/src/include/memory_resource",
"//third_party/libc++/src/include/module.modulemap",
"//third_party/libc++/src/include/mutex",
"//third_party/libc++/src/include/new",
"//third_party/libc++/src/include/numbers",
"//third_party/libc++/src/include/numeric",
"//third_party/libc++/src/include/optional",
"//third_party/libc++/src/include/ostream",
"//third_party/libc++/src/include/print",
"//third_party/libc++/src/include/queue",
"//third_party/libc++/src/include/random",
"//third_party/libc++/src/include/ranges",
"//third_party/libc++/src/include/ratio",
"//third_party/libc++/src/include/regex",
"//third_party/libc++/src/include/scoped_allocator",
"//third_party/libc++/src/include/semaphore",
"//third_party/libc++/src/include/set",
"//third_party/libc++/src/include/shared_mutex",
"//third_party/libc++/src/include/source_location",
"//third_party/libc++/src/include/span",
"//third_party/libc++/src/include/sstream",
"//third_party/libc++/src/include/stack",
"//third_party/libc++/src/include/stdatomic.h",
"//third_party/libc++/src/include/stdbool.h",