summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/core/core.gypi
blob: 2e2fbf905dcee58b457d93e9f1ce17be32037a0f (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
{
    'includes': [
        'core_generated.gypi',
    ],
    'variables': {
        # Files for which bindings (.cpp and .h files) will be generated
        'core_idl_files': [
            'animation/KeyframeEffect.idl',
            'animation/EffectModel.idl',
            'animation/AnimationEffectReadOnly.idl',
            'animation/AnimationEffectTiming.idl',
            'animation/Animation.idl',
            'animation/AnimationTimeline.idl',
            'clipboard/DataTransfer.idl',
            'clipboard/DataTransferItemList.idl',
            'css/CSS.idl',
            'css/CSSFontFaceRule.idl',
            'css/CSSGroupingRule.idl',
            'css/CSSImportRule.idl',
            'css/CSSKeyframeRule.idl',
            'css/CSSKeyframesRule.idl',
            'css/CSSMediaRule.idl',
            'css/CSSNamespaceRule.idl',
            'css/CSSPageRule.idl',
            'css/CSSRule.idl',
            'css/CSSRuleList.idl',
            'css/CSSStyleDeclaration.idl',
            'css/CSSStyleRule.idl',
            'css/CSSStyleSheet.idl',
            'css/CSSSupportsRule.idl',
            'css/CSSViewportRule.idl',
            'css/FontFace.idl',
            'css/FontFaceSet.idl',
            'css/FontFaceSetForEachCallback.idl',
            'css/FontFaceSetLoadEvent.idl',
            'css/MediaList.idl',
            'css/MediaQueryList.idl',
            'css/MediaQueryListEvent.idl',
            'css/StyleMedia.idl',
            'css/StyleSheet.idl',
            'css/StyleSheetList.idl',
            'css/WebKitCSSMatrix.idl',
            'dom/ArrayBuffer.idl',
            'dom/ArrayBufferView.idl',
            'dom/Attr.idl',
            'dom/CDATASection.idl',
            'dom/CharacterData.idl',
            'dom/ClientRect.idl',
            'dom/ClientRectList.idl',
            'dom/Comment.idl',
            'dom/CompositorProxy.idl',
            'dom/DOMError.idl',
            'dom/DOMException.idl',
            'dom/DOMImplementation.idl',
            'dom/DOMMatrix.idl',
            'dom/DOMMatrixReadOnly.idl',
            'dom/DOMPoint.idl',
            'dom/DOMPointReadOnly.idl',
            'dom/DOMRect.idl',
            'dom/DOMRectReadOnly.idl',
            'dom/DOMSettableTokenList.idl',
            'dom/DOMStringList.idl',
            'dom/DOMStringMap.idl',
            'dom/DOMTokenList.idl',
            'dom/DataView.idl',
            'dom/Document.idl',
            'dom/DocumentFragment.idl',
            'dom/DocumentType.idl',
            'dom/Element.idl',
            'dom/Float32Array.idl',
            'dom/Float64Array.idl',
            'dom/FrameRequestCallback.idl',
            'dom/IdleDeadline.idl',
            'dom/IdleRequestCallback.idl',
            'dom/Int16Array.idl',
            'dom/Int32Array.idl',
            'dom/Int8Array.idl',
            'dom/Iterator.idl',
            'dom/MessageChannel.idl',
            'dom/MessagePort.idl',
            'dom/MutationObserver.idl',
            'dom/MutationRecord.idl',
            'dom/NamedNodeMap.idl',
            'dom/Node.idl',
            'dom/NodeFilter.idl',
            'dom/NodeIterator.idl',
            'dom/NodeList.idl',
            'dom/ProcessingInstruction.idl',
            'dom/Range.idl',
            'dom/SharedArrayBuffer.idl',
            'dom/StringCallback.idl',
            'dom/Text.idl',
            'dom/TouchList.idl',
            'dom/TreeWalker.idl',
            'dom/Uint16Array.idl',
            'dom/Uint32Array.idl',
            'dom/Uint8Array.idl',
            'dom/Uint8ClampedArray.idl',
            'dom/XMLDocument.idl',
            'dom/shadow/ShadowRoot.idl',
            'editing/Selection.idl',
            'events/AnimationEvent.idl',
            'events/AnimationPlayerEvent.idl',
            'events/ApplicationCacheErrorEvent.idl',
            'events/AutocompleteErrorEvent.idl',
            'events/BeforeUnloadEvent.idl',
            'events/ClipboardEvent.idl',
            'events/CompositionEvent.idl',
            'events/CustomEvent.idl',
            'events/DragEvent.idl',
            'events/ErrorEvent.idl',
            'events/Event.idl',
            'events/EventTarget.idl',
            'events/FocusEvent.idl',
            'events/HashChangeEvent.idl',
            'events/KeyboardEvent.idl',
            'events/MessageEvent.idl',
            'events/MutationEvent.idl',
            'events/PageTransitionEvent.idl',
            'events/PointerEvent.idl',
            'events/PopStateEvent.idl',
            'events/ProgressEvent.idl',
            'events/PromiseRejectionEvent.idl',
            'events/RelatedEvent.idl',
            'events/ResourceProgressEvent.idl',
            'events/SecurityPolicyViolationEvent.idl',
            'events/TextEvent.idl',
            'events/TouchEvent.idl',
            'events/TransitionEvent.idl',
            'events/UIEvent.idl',
            'events/WheelEvent.idl',
            'fileapi/Blob.idl',
            'fileapi/File.idl',
            'fileapi/FileCallback.idl',
            'fileapi/FileError.idl',
            'fileapi/FileList.idl',
            'fileapi/FileReader.idl',
            'fileapi/FileReaderSync.idl',
            'frame/BarProp.idl',
            'frame/Console.idl',
            'frame/ConsoleBase.idl',
            'frame/History.idl',
            'frame/ImageBitmap.idl',
            'frame/Location.idl',
            'html/FormData.idl',
            'html/HTMLAllCollection.idl',
            'html/HTMLAnchorElement.idl',
            'html/HTMLAreaElement.idl',
            'html/HTMLAudioElement.idl',
            'html/HTMLBRElement.idl',
            'html/HTMLBaseElement.idl',
            'html/HTMLBodyElement.idl',
            'html/HTMLButtonElement.idl',
            'html/HTMLCanvasElement.idl',
            'html/HTMLCollection.idl',
            'html/HTMLContentElement.idl',
            'html/HTMLDListElement.idl',
            'html/HTMLDataListElement.idl',
            'html/HTMLDetailsElement.idl',
            'html/HTMLDialogElement.idl',
            'html/HTMLDirectoryElement.idl',
            'html/HTMLDivElement.idl',
            'html/HTMLDocument.idl',
            'html/HTMLElement.idl',
            'html/HTMLEmbedElement.idl',
            'html/HTMLFieldSetElement.idl',
            'html/HTMLFontElement.idl',
            'html/HTMLFormControlsCollection.idl',
            'html/HTMLFormElement.idl',
            'html/HTMLFrameElement.idl',
            'html/HTMLFrameSetElement.idl',
            'html/HTMLHRElement.idl',
            'html/HTMLHeadElement.idl',
            'html/HTMLHeadingElement.idl',
            'html/HTMLHtmlElement.idl',
            'html/HTMLIFrameElement.idl',
            'html/HTMLImageElement.idl',
            'html/HTMLKeygenElement.idl',
            'html/HTMLLIElement.idl',
            'html/HTMLLabelElement.idl',
            'html/HTMLLegendElement.idl',
            'html/HTMLLinkElement.idl',
            'html/HTMLMapElement.idl',
            'html/HTMLMarqueeElement.idl',
            'html/HTMLMenuElement.idl',
            'html/HTMLMenuItemElement.idl',
            'html/HTMLMetaElement.idl',
            'html/HTMLMeterElement.idl',
            'html/HTMLModElement.idl',
            'html/HTMLOListElement.idl',
            'html/HTMLObjectElement.idl',
            'html/HTMLOptGroupElement.idl',
            'html/HTMLOptionElement.idl',
            'html/HTMLOptionsCollection.idl',
            'html/HTMLOutputElement.idl',
            'html/HTMLParagraphElement.idl',
            'html/HTMLParamElement.idl',
            'html/HTMLPictureElement.idl',
            'html/HTMLPreElement.idl',
            'html/HTMLProgressElement.idl',
            'html/HTMLQuoteElement.idl',
            'html/HTMLScriptElement.idl',
            'html/HTMLSelectElement.idl',
            'html/HTMLShadowElement.idl',
            'html/HTMLSourceElement.idl',
            'html/HTMLSpanElement.idl',
            'html/HTMLStyleElement.idl',
            'html/HTMLTableCaptionElement.idl',
            'html/HTMLTableCellElement.idl',
            'html/HTMLTableColElement.idl',
            'html/HTMLTableElement.idl',
            'html/HTMLTableRowElement.idl',
            'html/HTMLTableSectionElement.idl',
            'html/HTMLTemplateElement.idl',
            'html/HTMLTextAreaElement.idl',
            'html/HTMLTitleElement.idl',
            'html/HTMLTrackElement.idl',
            'html/HTMLUListElement.idl',
            'html/HTMLUnknownElement.idl',
            'html/ImageData.idl',
            'html/MediaController.idl',
            'html/MediaError.idl',
            'html/MediaKeyError.idl',
            'html/MediaKeyEvent.idl',
            'html/RadioNodeList.idl',
            'html/TextMetrics.idl',
            'html/TimeRanges.idl',
            'html/ValidityState.idl',
            'html/VoidCallback.idl',
            'html/track/AudioTrack.idl',
            'html/track/AudioTrackList.idl',
            'html/track/TextTrack.idl',
            'html/track/TextTrackCue.idl',
            'html/track/TextTrackCueList.idl',
            'html/track/TextTrackList.idl',
            'html/track/TrackEvent.idl',
            'html/track/VideoTrack.idl',
            'html/track/VideoTrackList.idl',
            'html/track/vtt/VTTCue.idl',
            'html/track/vtt/VTTRegion.idl',
            'html/track/vtt/VTTRegionList.idl',
            'input/InputDeviceCapabilities.idl',
            'inspector/InspectorOverlayHost.idl',
            'loader/appcache/ApplicationCache.idl',
            'page/EventSource.idl',
            'page/PagePopupController.idl',
            'page/scrolling/ScrollState.idl',
            'page/scrolling/ScrollStateCallback.idl',
            'streams/ReadableByteStream.idl',
            'streams/ReadableByteStreamReader.idl',
            'streams/ReadableStream.idl',
            'streams/ReadableStreamReader.idl',
            'streams/Stream.idl',
            'svg/SVGAElement.idl',
            'svg/SVGAngle.idl',
            'svg/SVGAnimateElement.idl',
            'svg/SVGAnimateMotionElement.idl',
            'svg/SVGAnimateTransformElement.idl',
            'svg/SVGAnimatedAngle.idl',
            'svg/SVGAnimatedBoolean.idl',
            'svg/SVGAnimatedEnumeration.idl',
            'svg/SVGAnimatedInteger.idl',
            'svg/SVGAnimatedLength.idl',
            'svg/SVGAnimatedLengthList.idl',
            'svg/SVGAnimatedNumber.idl',
            'svg/SVGAnimatedNumberList.idl',
            'svg/SVGAnimatedPreserveAspectRatio.idl',
            'svg/SVGAnimatedRect.idl',
            'svg/SVGAnimatedString.idl',
            'svg/SVGAnimatedTransformList.idl',
            'svg/SVGAnimationElement.idl',
            'svg/SVGCircleElement.idl',
            'svg/SVGClipPathElement.idl',
            'svg/SVGComponentTransferFunctionElement.idl',
            'svg/SVGCursorElement.idl',
            'svg/SVGDefsElement.idl',
            'svg/SVGDescElement.idl',
            'svg/SVGDiscardElement.idl',
            'svg/SVGElement.idl',
            'svg/SVGEllipseElement.idl',
            'svg/SVGFEBlendElement.idl',
            'svg/SVGFEColorMatrixElement.idl',
            'svg/SVGFEComponentTransferElement.idl',
            'svg/SVGFECompositeElement.idl',
            'svg/SVGFEConvolveMatrixElement.idl',
            'svg/SVGFEDiffuseLightingElement.idl',
            'svg/SVGFEDisplacementMapElement.idl',
            'svg/SVGFEDistantLightElement.idl',
            'svg/SVGFEDropShadowElement.idl',
            'svg/SVGFEFloodElement.idl',
            'svg/SVGFEFuncAElement.idl',
            'svg/SVGFEFuncBElement.idl',
            'svg/SVGFEFuncGElement.idl',
            'svg/SVGFEFuncRElement.idl',
            'svg/SVGFEGaussianBlurElement.idl',
            'svg/SVGFEImageElement.idl',
            'svg/SVGFEMergeElement.idl',
            'svg/SVGFEMergeNodeElement.idl',
            'svg/SVGFEMorphologyElement.idl',
            'svg/SVGFEOffsetElement.idl',
            'svg/SVGFEPointLightElement.idl',
            'svg/SVGFESpecularLightingElement.idl',
            'svg/SVGFESpotLightElement.idl',
            'svg/SVGFETileElement.idl',
            'svg/SVGFETurbulenceElement.idl',
            'svg/SVGFilterElement.idl',
            'svg/SVGForeignObjectElement.idl',
            'svg/SVGGElement.idl',
            'svg/SVGGeometryElement.idl',
            'svg/SVGGradientElement.idl',
            'svg/SVGGraphicsElement.idl',
            'svg/SVGImageElement.idl',
            'svg/SVGLength.idl',
            'svg/SVGLengthList.idl',
            'svg/SVGLineElement.idl',
            'svg/SVGLinearGradientElement.idl',
            'svg/SVGMPathElement.idl',
            'svg/SVGMarkerElement.idl',
            'svg/SVGMaskElement.idl',
            'svg/SVGMatrix.idl',
            'svg/SVGMetadataElement.idl',
            'svg/SVGNumber.idl',
            'svg/SVGNumberList.idl',
            'svg/SVGPathElement.idl',
            'svg/SVGPathSeg.idl',
            'svg/SVGPathSegArcAbs.idl',
            'svg/SVGPathSegArcRel.idl',
            'svg/SVGPathSegClosePath.idl',
            'svg/SVGPathSegCurvetoCubicAbs.idl',
            'svg/SVGPathSegCurvetoCubicRel.idl',
            'svg/SVGPathSegCurvetoCubicSmoothAbs.idl',
            'svg/SVGPathSegCurvetoCubicSmoothRel.idl',
            'svg/SVGPathSegCurvetoQuadraticAbs.idl',
            'svg/SVGPathSegCurvetoQuadraticRel.idl',
            'svg/SVGPathSegCurvetoQuadraticSmoothAbs.idl',
            'svg/SVGPathSegCurvetoQuadraticSmoothRel.idl',
            'svg/SVGPathSegLinetoAbs.idl',
            'svg/SVGPathSegLinetoHorizontalAbs.idl',
            'svg/SVGPathSegLinetoHorizontalRel.idl',
            'svg/SVGPathSegLinetoRel.idl',
            'svg/SVGPathSegLinetoVerticalAbs.idl',
            'svg/SVGPathSegLinetoVerticalRel.idl',
            'svg/SVGPathSegList.idl',
            'svg/SVGPathSegMovetoAbs.idl',
            'svg/SVGPathSegMovetoRel.idl',
            'svg/SVGPatternElement.idl',
            'svg/SVGPoint.idl',
            'svg/SVGPointList.idl',
            'svg/SVGPolygonElement.idl',
            'svg/SVGPolylineElement.idl',
            'svg/SVGPreserveAspectRatio.idl',
            'svg/SVGRadialGradientElement.idl',
            'svg/SVGRect.idl',
            'svg/SVGRectElement.idl',
            'svg/SVGSVGElement.idl',
            'svg/SVGScriptElement.idl',
            'svg/SVGSetElement.idl',
            'svg/SVGStopElement.idl',
            'svg/SVGStringList.idl',
            'svg/SVGStyleElement.idl',
            'svg/SVGSwitchElement.idl',
            'svg/SVGSymbolElement.idl',
            'svg/SVGTSpanElement.idl',
            'svg/SVGTextContentElement.idl',
            'svg/SVGTextElement.idl',
            'svg/SVGTextPathElement.idl',
            'svg/SVGTextPositioningElement.idl',
            'svg/SVGTitleElement.idl',
            'svg/SVGTransform.idl',
            'svg/SVGTransformList.idl',
            'svg/SVGUnitTypes.idl',
            'svg/SVGUseElement.idl',
            'svg/SVGViewElement.idl',
            'svg/SVGViewSpec.idl',
            'svg/SVGZoomEvent.idl',
            'timing/MemoryInfo.idl',
            'timing/Performance.idl',
            'timing/PerformanceCompositeTiming.idl',
            'timing/PerformanceEntry.idl',
            'timing/PerformanceMark.idl',
            'timing/PerformanceMeasure.idl',
            'timing/PerformanceNavigation.idl',
            'timing/PerformanceObserver.idl',
            'timing/PerformanceObserverEntryList.idl',
            'timing/PerformanceRenderTiming.idl',
            'timing/PerformanceResourceTiming.idl',
            'timing/PerformanceTiming.idl',
            'timing/WorkerPerformance.idl',
            'workers/SharedWorker.idl',
            'workers/Worker.idl',
            'workers/WorkerConsole.idl',
            'workers/WorkerLocation.idl',
            'xml/DOMParser.idl',
            'xml/XMLSerializer.idl',
            'xml/XPathEvaluator.idl',
            'xml/XPathExpression.idl',
            'xml/XPathNSResolver.idl',
            'xml/XPathResult.idl',
            'xml/XSLTProcessor.idl',
            'xmlhttprequest/XMLHttpRequest.idl',
            'xmlhttprequest/XMLHttpRequestEventTarget.idl',
            'xmlhttprequest/XMLHttpRequestProgressEvent.idl',
            'xmlhttprequest/XMLHttpRequestUpload.idl',
        ],
        # core IDL files that have partial interfaces in modules.
        'core_idl_with_modules_dependency_files': [
            'clipboard/DataTransferItem.idl',
            'dom/Touch.idl',
            'dom/URL.idl',
            'events/MouseEvent.idl',
            'frame/Navigator.idl',
            'frame/Screen.idl',
            'frame/Window.idl',
            'html/HTMLInputElement.idl',
            'html/HTMLMediaElement.idl',
            'html/HTMLVideoElement.idl',
            'inspector/DevToolsHost.idl',
            'workers/DedicatedWorkerGlobalScope.idl',
            'workers/SharedWorkerGlobalScope.idl',
            'workers/WorkerGlobalScope.idl',
            'workers/WorkerNavigator.idl',
        ],
        # 'partial interface', target (right side of) 'implements', and
        # interfaces with static bindings (in bindings/core/v8/)
        'core_dependency_idl_files': [
            'animation/DocumentAnimation.idl',
            'animation/ElementAnimation.idl',
            'css/DocumentFontFaceSet.idl',
            'dom/ChildNode.idl',
            'dom/DocumentFullscreen.idl',
            'dom/ElementFullscreen.idl',
            'dom/GlobalEventHandlers.idl',
            'dom/NonDocumentTypeChildNode.idl',
            'dom/NonElementParentNode.idl',
            'dom/ParentNode.idl',
            'dom/URLUtils.idl',
            'dom/URLUtilsReadOnly.idl',
            'events/EventListener.idl',
            'events/NavigatorEvents.idl',
            'frame/NavigatorCPU.idl',
            'frame/NavigatorID.idl',
            'frame/NavigatorLanguage.idl',
            'frame/NavigatorOnLine.idl',
            'frame/NavigatorStorageUtils.idl',
            'frame/WindowBase64.idl',
            'frame/WindowEventHandlers.idl',
            'frame/WindowTimers.idl',
            'imagebitmap/ImageBitmapFactories.idl',
            'svg/SVGDocument.idl',
            'svg/SVGFilterPrimitiveStandardAttributes.idl',
            'svg/SVGFitToViewBox.idl',
            'svg/SVGTests.idl',
            'svg/SVGURIReference.idl',
            'svg/SVGZoomAndPan.idl',
            'timing/ConsoleMemory.idl',
            'timing/SharedWorkerPerformance.idl',
            'timing/WindowPerformance.idl',
            'timing/WorkerGlobalScopePerformance.idl',
            'workers/AbstractWorker.idl',
            'xml/DocumentXMLTreeViewer.idl',
            'xml/DocumentXPathEvaluator.idl',
        ],
        # interfaces that inherit from Event, including Event itself
        'core_event_idl_files': [
            'css/FontFaceSetLoadEvent.idl',
            'css/MediaQueryListEvent.idl',
            'events/AnimationEvent.idl',
            'events/AnimationPlayerEvent.idl',
            'events/ApplicationCacheErrorEvent.idl',
            'events/AutocompleteErrorEvent.idl',
            'events/BeforeUnloadEvent.idl',
            'events/ClipboardEvent.idl',
            'events/CompositionEvent.idl',
            'events/CustomEvent.idl',
            'events/DragEvent.idl',
            'events/ErrorEvent.idl',
            'events/Event.idl',
            'events/FocusEvent.idl',
            'events/HashChangeEvent.idl',
            'events/KeyboardEvent.idl',
            'events/MessageEvent.idl',
            'events/MouseEvent.idl',
            'events/MutationEvent.idl',
            'events/PageTransitionEvent.idl',
            'events/PointerEvent.idl',
            'events/PopStateEvent.idl',
            'events/ProgressEvent.idl',
            'events/PromiseRejectionEvent.idl',
            'events/RelatedEvent.idl',
            'events/ResourceProgressEvent.idl',
            'events/SecurityPolicyViolationEvent.idl',
            'events/TextEvent.idl',
            'events/TouchEvent.idl',
            'events/TransitionEvent.idl',
            'events/UIEvent.idl',
            'events/WheelEvent.idl',
            'html/MediaKeyEvent.idl',
            'html/track/TrackEvent.idl',
            'svg/SVGZoomEvent.idl',
            'xmlhttprequest/XMLHttpRequestProgressEvent.idl',
        ],
        # IDL files that only have typedefs/enums.
        'core_typedefs_enums_only_idl_files': [
            'dom/CommonDefinitions.idl',
            'timing/DOMHighResTimeStamp.idl',
            'timing/PerformanceEntryList.idl',
        ],
        'webcore_rendering_files': [
            'layout/api/HitTestAction.h',
            'layout/api/LineLayoutBlockFlow.h',
            'layout/api/LineLayoutBox.h',
            'layout/api/LineLayoutBoxModel.h',
            'layout/api/LineLayoutInline.h',
            'layout/api/LineLayoutItem.h',
            'layout/api/LineLayoutListMarker.h',
            'layout/api/LineLayoutRubyRun.h',
            'layout/api/LineLayoutSVGInlineText.h',
            'layout/api/LineLayoutText.h',
            'layout/api/LineLayoutTextCombine.h',
            'layout/api/SelectionState.h',
            'layout/BidiRun.h',
            'layout/BidiRunForLine.cpp',
            'layout/BidiRunForLine.h',
            'layout/ClipRect.cpp',
            'layout/ClipRect.h',
            'layout/ClipRects.h',
            'layout/ClipRectsCache.h',
            'layout/CounterNode.cpp',
            'layout/CounterNode.h',
            'layout/FloatingObjects.cpp',
            'layout/FloatingObjects.h',
            'layout/GeneratedChildren.h',
            'layout/HitTestCache.cpp',
            'layout/HitTestCache.h',
            'layout/HitTestLocation.cpp',
            'layout/HitTestLocation.h',
            'layout/HitTestResult.cpp',
            'layout/HitTestingTransformState.cpp',
            'layout/HitTestingTransformState.h',
            'layout/ImageQualityController.cpp',
            'layout/ImageQualityController.h',
            'layout/LayoutState.cpp',
            'layout/OrderIterator.cpp',
            'layout/OrderIterator.h',
            'layout/PaintInvalidationState.cpp',
            'layout/PaintInvalidationState.h',
            'layout/PointerEventsHitRules.cpp',
            'layout/PointerEventsHitRules.h',
            'layout/LayoutDeprecatedFlexibleBox.cpp',
            'layout/LayoutDeprecatedFlexibleBox.h',
            'layout/LayoutAnalyzer.cpp',
            'layout/LayoutAnalyzer.h',
            'layout/LayoutBlock.cpp',
            'layout/LayoutBlockFlow.cpp',
            'layout/LayoutBlockFlowLine.cpp',
            'layout/LayoutBox.cpp',
            'layout/LayoutBoxModelObject.cpp',
            'layout/LayoutBR.cpp',
            'layout/LayoutButton.cpp',
            'layout/LayoutButton.h',
            'layout/LayoutCounter.cpp',
            'layout/LayoutCounter.h',
            'layout/LayoutDetailsMarker.cpp',
            'layout/LayoutDetailsMarker.h',
            'layout/LayoutEmbeddedObject.cpp',
            'layout/LayoutFlexibleBox.cpp',
            'layout/LayoutFlexibleBox.h',
            'layout/LayoutFieldset.cpp',
            'layout/LayoutFieldset.h',
            'layout/LayoutFileUploadControl.cpp',
            'layout/LayoutFileUploadControl.h',
            'layout/LayoutFlowThread.cpp',
            'layout/LayoutFlowThread.h',
            'layout/LayoutFrame.cpp',
            'layout/LayoutFrame.h',
            'layout/LayoutFrameSet.cpp',
            'layout/LayoutFrameSet.h',
            'layout/LayoutFullScreen.cpp',
            'layout/LayoutFullScreen.h',
            'layout/LayoutGeometryMap.cpp',
            'layout/LayoutGeometryMap.h',
            'layout/LayoutGeometryMapStep.h',
            'layout/LayoutGrid.cpp',
            'layout/LayoutGrid.h',
            'layout/LayoutHTMLCanvas.cpp',
            'layout/LayoutHTMLCanvas.h',
            'layout/LayoutIFrame.cpp',
            'layout/LayoutIFrame.h',
            'layout/LayoutImage.cpp',
            'layout/LayoutImageResource.cpp',
            'layout/LayoutImageResourceStyleImage.cpp',
            'layout/LayoutInline.cpp',
            'layout/LayoutInline.h',
            'layout/LayoutListBox.cpp',
            'layout/LayoutListBox.h',
            'layout/LayoutListItem.cpp',
            'layout/LayoutListMarker.cpp',
            'layout/LayoutListMarker.h',
            'layout/LayoutMedia.cpp',
            'layout/LayoutMedia.h',
            'layout/LayoutMenuList.cpp',
            'layout/LayoutMenuList.h',
            'layout/LayoutMeter.cpp',
            'layout/LayoutMeter.h',
            'layout/LayoutMultiColumnFlowThread.cpp',
            'layout/LayoutMultiColumnFlowThread.h',
            'layout/LayoutMultiColumnSet.cpp',
            'layout/LayoutMultiColumnSet.h',
            'layout/LayoutMultiColumnSpannerPlaceholder.cpp',
            'layout/LayoutMultiColumnSpannerPlaceholder.h',
            'layout/LayoutObject.cpp',
            'layout/LayoutObjectChildList.cpp',
            'layout/LayoutPagedFlowThread.cpp',
            'layout/LayoutPagedFlowThread.h',
            'layout/LayoutPart.cpp',
            'layout/LayoutProgress.cpp',
            'layout/LayoutProgress.h',
            'layout/LayoutQuote.cpp',
            'layout/LayoutQuote.h',
            'layout/LayoutReplaced.cpp',
            'layout/LayoutReplica.cpp',
            'layout/LayoutReplica.h',
            'layout/LayoutRuby.cpp',
            'layout/LayoutRuby.h',
            'layout/LayoutRubyBase.cpp',
            'layout/LayoutRubyBase.h',
            'layout/LayoutRubyRun.cpp',
            'layout/LayoutRubyRun.h',
            'layout/LayoutRubyText.cpp',
            'layout/LayoutRubyText.h',
            'layout/LayoutScrollbar.cpp',
            'layout/LayoutScrollbar.h',
            'layout/LayoutScrollbarPart.cpp',
            'layout/LayoutScrollbarPart.h',
            'layout/LayoutScrollbarTheme.cpp',
            'layout/LayoutScrollbarTheme.h',
            'layout/LayoutSearchField.cpp',
            'layout/LayoutSearchField.h',
            'layout/LayoutSlider.cpp',
            'layout/LayoutSlider.h',
            'layout/LayoutSliderContainer.cpp',
            'layout/LayoutSliderContainer.h',
            'layout/LayoutSliderThumb.cpp',
            'layout/LayoutSliderThumb.h',
            'layout/LayoutText.cpp',
            'layout/LayoutTextCombine.cpp',
            'layout/LayoutTextCombine.h',
            'layout/LayoutTextFragment.cpp',
            'layout/LayoutTextFragment.h',
            'layout/LayoutTable.cpp',
            'layout/LayoutTable.h',
            'layout/LayoutTableCaption.cpp',
            'layout/LayoutTableCaption.h',
            'layout/LayoutTableCell.cpp',
            'layout/LayoutTableCell.h',
            'layout/LayoutTableCol.cpp',
            'layout/LayoutTableCol.h',
            'layout/LayoutTableRow.cpp',
            'layout/LayoutTableRow.h',
            'layout/LayoutTableSection.cpp',
            'layout/LayoutTableSection.h',
            'layout/LayoutTextControl.cpp',
            'layout/LayoutTextControl.h',
            'layout/LayoutTextControlMultiLine.cpp',
            'layout/LayoutTextControlMultiLine.h',
            'layout/LayoutTextControlSingleLine.cpp',
            'layout/LayoutTextControlSingleLine.h',
            'layout/LayoutTextTrackContainer.cpp',
            'layout/LayoutTextTrackContainer.h',
            'layout/LayoutTheme.cpp',
            'layout/LayoutTheme.h',
            'layout/LayoutThemeAndroid.cpp',
            'layout/LayoutThemeAndroid.h',
            'layout/LayoutThemeDefault.cpp',
            'layout/LayoutThemeDefault.h',
            'layout/LayoutThemeFontProvider.cpp',
            'layout/LayoutThemeFontProvider.h',
            'layout/LayoutThemeFontProviderLinux.cpp',
            'layout/LayoutThemeFontProviderWin.cpp',
            'layout/LayoutThemeLinux.cpp',
            'layout/LayoutThemeLinux.h',
            'layout/LayoutThemeMac.h',
            'layout/LayoutThemeMac.mm',
            'layout/LayoutThemeWin.cpp',
            'layout/LayoutThemeWin.h',
            'layout/LayoutTreeAsText.cpp',
            'layout/LayoutVTTCue.cpp',
            'layout/LayoutVTTCue.h',
            'layout/LayoutVideo.cpp',
            'layout/LayoutVideo.h',
            'layout/LayoutView.cpp',
            'layout/LayoutWordBreak.cpp',
            'layout/LayoutWordBreak.h',
            'layout/MultiColumnFragmentainerGroup.cpp',
            'layout/MultiColumnFragmentainerGroup.h',
            'layout/OverflowModel.h',
            'layout/ScrollAlignment.cpp',
            'layout/SubtreeLayoutScope.cpp',
            'layout/SubtreeLayoutScope.h',
            'layout/TableLayoutAlgorithm.h',
            'layout/TableLayoutAlgorithmAuto.cpp',
            'layout/TableLayoutAlgorithmAuto.h',
            'layout/TableLayoutAlgorithmFixed.cpp',
            'layout/TableLayoutAlgorithmFixed.h',
            'layout/TextAutosizer.cpp',
            'layout/TextAutosizer.h',
            'layout/TextRunConstructor.cpp',
            'layout/TextRunConstructor.h',
            'layout/TracedLayoutObject.cpp',
            'layout/TracedLayoutObject.h',
            'layout/VerticalPositionCache.h',
            'layout/compositing/CompositedLayerMapping.cpp',
            'layout/compositing/CompositedLayerMapping.h',
            'layout/compositing/CompositingInputsUpdater.cpp',
            'layout/compositing/CompositingInputsUpdater.h',
            'layout/compositing/CompositingLayerAssigner.cpp',
            'layout/compositing/CompositingLayerAssigner.h',
            'layout/compositing/CompositingReasonFinder.cpp',
            'layout/compositing/CompositingReasonFinder.h',
            'layout/compositing/CompositingRequirementsUpdater.cpp',
            'layout/compositing/CompositingRequirementsUpdater.h',
            'layout/compositing/CompositingState.h',
            'layout/compositing/CompositingTriggers.h',
            'layout/compositing/PaintLayerCompositor.cpp',
            'layout/compositing/PaintLayerCompositor.h',
            'layout/compositing/GraphicsLayerTreeBuilder.cpp',
            'layout/compositing/GraphicsLayerTreeBuilder.h',
            'layout/compositing/GraphicsLayerUpdater.cpp',
            'layout/compositing/GraphicsLayerUpdater.h',
            'layout/line/AbstractInlineTextBox.cpp',
            'layout/line/AbstractInlineTextBox.h',
            'layout/line/BreakingContext.cpp',
            'layout/line/EllipsisBox.cpp',
            'layout/line/EllipsisBox.h',
            'layout/line/GlyphOverflow.h',
            'layout/line/InlineBox.cpp',
            'layout/line/InlineFlowBox.cpp',
            'layout/line/InlineIterator.h',
            'layout/line/InlineTextBox.cpp',
            'layout/line/LineBoxList.cpp',
            'layout/line/LineBreaker.cpp',
            'layout/line/LineBreaker.h',
            'layout/line/LineWidth.cpp',
            'layout/line/LineWidth.h',
            'layout/line/RootInlineBox.cpp',
            'layout/line/TrailingObjects.cpp',
            'layout/line/TrailingObjects.h',
            'layout/shapes/BoxShape.cpp',
            'layout/shapes/BoxShape.h',
            'layout/shapes/PolygonShape.cpp',
            'layout/shapes/PolygonShape.h',
            'layout/shapes/RasterShape.cpp',
            'layout/shapes/RasterShape.h',
            'layout/shapes/RectangleShape.cpp',
            'layout/shapes/RectangleShape.h',
            'layout/shapes/Shape.cpp',
            'layout/shapes/Shape.h',
            'layout/shapes/ShapeInterval.h',
            'layout/shapes/ShapeOutsideInfo.cpp',
            'layout/shapes/ShapeOutsideInfo.h',
            'style/AppliedTextDecoration.cpp',
            'style/BasicShapes.cpp',
            'style/BorderEdge.cpp',
            'style/BorderEdge.h',
            'style/BorderImageLength.h',
            'style/BorderImageLengthBox.h',
            'style/CachedUAStyle.h',
            'style/ContentData.cpp',
            'style/CounterDirectives.cpp',
            'style/FillLayer.cpp',
            'style/GridCoordinate.h',
            'style/GridResolvedPosition.cpp',
            'style/GridResolvedPosition.h',
            'style/ComputedStyle.cpp',
            'style/ComputedStyle.h',
            'style/NinePieceImage.cpp',
            'style/PathStyleMotionPath.cpp',
            'style/PathStyleMotionPath.h',
            'style/QuotesData.cpp',
            'style/QuotesData.h',
            'style/ShadowData.cpp',
            'style/ShadowData.h',
            'style/ShadowList.cpp',
            'style/ShadowList.h',
            'style/StyleBackgroundData.cpp',
            'style/StyleBoxData.cpp',
            'style/StyleContentAlignmentData.h',
            'style/StyleDeprecatedFlexibleBoxData.cpp',
            'style/StyleFetchedImage.cpp',
            'style/StyleFetchedImageSet.cpp',
            'style/StyleFilterData.cpp',
            'style/StyleFlexibleBoxData.cpp',
            'style/StyleGeneratedImage.cpp',
            'style/StyleGridData.cpp',
            'style/StyleGridItemData.cpp',
            'style/StyleInheritedData.cpp',
            'style/StyleMotionData.cpp',
            'style/StyleMotionData.h',
            'style/StyleMotionPath.h',
            'style/StyleMultiColData.cpp',
            'style/StylePendingImage.h',
            'style/StyleRareInheritedData.cpp',
            'style/StyleRareNonInheritedData.cpp',
            'style/StyleScrollSnapData.cpp',
            'style/StyleScrollSnapData.h',
            'style/StyleSelfAlignmentData.h',
            'style/StyleSurroundData.cpp',
            'style/StyleTransformData.cpp',
            'style/StyleVisualData.cpp',
            'style/StyleWillChangeData.cpp',
            'layout/svg/line/SVGInlineFlowBox.cpp',
            'layout/svg/line/SVGInlineFlowBox.h',
            'layout/svg/line/SVGInlineTextBox.cpp',
            'layout/svg/line/SVGInlineTextBox.h',
            'layout/svg/line/SVGRootInlineBox.cpp',
            'layout/svg/line/SVGRootInlineBox.h',
        ],
        'webcore_non_rendering_files': [
            'Init.cpp',
            'Init.h',
            'animation/AngleSVGInterpolation.h',
            'animation/KeyframeEffect.cpp',
            'animation/KeyframeEffect.h',
            'animation/AnimationClock.cpp',
            'animation/AnimationClock.h',
            'animation/EffectModel.h',
            'animation/AnimationInputHelpers.cpp',
            'animation/AnimationInputHelpers.h',
            'animation/AnimationEffect.cpp',
            'animation/AnimationEffect.h',
            'animation/AnimationEffectTiming.cpp',
            'animation/AnimationEffectTiming.h',
            'animation/Animation.cpp',
            'animation/Animation.h',
            'animation/AnimationStack.cpp',
            'animation/AnimationStack.h',
            'animation/AnimationTimeline.cpp',
            'animation/AnimationTimeline.h',
            'animation/AnimationTranslationUtil.cpp',
            'animation/AnimationTranslationUtil.h',
            'animation/CSSValueInterpolationType.cpp',
            'animation/CSSValueInterpolationType.h',
            'animation/CompositorAnimations.cpp',
            'animation/CompositorAnimations.h',
            'animation/CompositorAnimationsImpl.h',
            'animation/CompositorPendingAnimations.cpp',
            'animation/CompositorPendingAnimations.h',
            'animation/ColorInterpolationType.cpp',
            'animation/ColorInterpolationType.h',
            'animation/ColorPropertyFunctions.cpp',
            'animation/ColorPropertyFunctions.h',
            'animation/ColorStyleInterpolation.cpp',
            'animation/ColorStyleInterpolation.h',
            'animation/ConstantStyleInterpolation.h',
            'animation/DefaultSVGInterpolation.cpp',
            'animation/DefaultSVGInterpolation.h',
            'animation/DeferredLegacyStyleInterpolation.cpp',
            'animation/DeferredLegacyStyleInterpolation.h',
            'animation/DocumentAnimation.h',
            'animation/DocumentAnimations.cpp',
            'animation/DocumentAnimations.h',
            'animation/DoubleStyleInterpolation.h',
            'animation/DoubleStyleInterpolation.cpp',
            'animation/EffectInput.cpp',
            'animation/EffectInput.h',
            'animation/ElementAnimation.h',
            'animation/ElementAnimations.cpp',
            'animation/ElementAnimations.h',
            'animation/FilterStyleInterpolation.h',
            'animation/FilterStyleInterpolation.cpp',
            'animation/ImageSliceStyleInterpolation.cpp',
            'animation/ImageSliceStyleInterpolation.h',
            'animation/ImageStyleInterpolation.cpp',
            'animation/ImageStyleInterpolation.h',
            'animation/InertEffect.cpp',
            'animation/InertEffect.h',
            'animation/IntegerOptionalIntegerSVGInterpolation.cpp',
            'animation/IntegerOptionalIntegerSVGInterpolation.h',
            'animation/IntegerSVGInterpolation.h',
            'animation/InterpolableValue.cpp',
            'animation/InterpolableValue.h',
            'animation/Interpolation.cpp',
            'animation/Interpolation.h',
            'animation/InterpolationEffect.cpp',
            'animation/InterpolationEffect.h',
            'animation/InterpolationType.h',
            'animation/InterpolationValue.h',
            'animation/InvalidatableStyleInterpolation.cpp',
            'animation/InvalidatableStyleInterpolation.h',
            'animation/KeyframeEffectModel.cpp',
            'animation/KeyframeEffectModel.h',
            'animation/LegacyStyleInterpolation.h',
            'animation/LengthBoxStyleInterpolation.cpp',
            'animation/LengthBoxStyleInterpolation.h',
            'animation/LengthInterpolationType.cpp',
            'animation/LengthInterpolationType.h',
            'animation/LengthPairStyleInterpolation.cpp',
            'animation/LengthPairStyleInterpolation.h',
            'animation/LengthPropertyFunctions.cpp',
            'animation/LengthPropertyFunctions.h',
            'animation/LengthSVGInterpolation.cpp',
            'animation/LengthSVGInterpolation.h',
            'animation/LengthStyleInterpolation.cpp',
            'animation/LengthStyleInterpolation.h',
            'animation/NonInterpolableValue.h',
            'animation/NumberInterpolationType.cpp',
            'animation/NumberInterpolationType.h',
            'animation/NumberOptionalNumberSVGInterpolation.h',
            'animation/NumberPropertyFunctions.cpp',
            'animation/NumberPropertyFunctions.h',
            'animation/NumberSVGInterpolation.cpp',
            'animation/NumberSVGInterpolation.h',
            'animation/PaintInterpolationType.cpp',
            'animation/PaintInterpolationType.h',
            'animation/PaintPropertyFunctions.cpp',
            'animation/PaintPropertyFunctions.h',
            'animation/PrimitiveInterpolation.h',
            'animation/PropertyHandle.cpp',
            'animation/PropertyHandle.h',
            'animation/RectSVGInterpolation.cpp',
            'animation/RectSVGInterpolation.h',
            'animation/SVGInterpolation.cpp',
            'animation/SVGInterpolation.h',
            'animation/SVGStrokeDasharrayStyleInterpolation.cpp',
            'animation/SVGStrokeDasharrayStyleInterpolation.h',
            'animation/SampledEffect.cpp',
            'animation/SampledEffect.h',
            'animation/ListSVGInterpolation.h',
            'animation/ListStyleInterpolation.h',
            'animation/PathSVGInterpolation.cpp',
            'animation/PathSVGInterpolation.h',
            'animation/PointSVGInterpolation.h',
            'animation/ShadowStyleInterpolation.cpp',
            'animation/ShadowStyleInterpolation.h',
            'animation/StringKeyframe.cpp',
            'animation/StringKeyframe.h',
            'animation/StyleInterpolation.h',
            'animation/Timing.cpp',
            'animation/Timing.h',
            'animation/TimingCalculations.h',
            'animation/TimingInput.cpp',
            'animation/TimingInput.h',
            'animation/TransformSVGInterpolation.cpp',
            'animation/TransformSVGInterpolation.h',
            'animation/UnderlyingValue.h',
            'animation/VisibilityStyleInterpolation.cpp',
            'animation/VisibilityStyleInterpolation.h',
            'animation/animatable/AnimatableClipPathOperation.cpp',
            'animation/animatable/AnimatableClipPathOperation.h',
            'animation/animatable/AnimatableColor.cpp',
            'animation/animatable/AnimatableColor.h',
            'animation/animatable/AnimatableDouble.cpp',
            'animation/animatable/AnimatableDouble.h',
            'animation/animatable/AnimatableDoubleAndBool.cpp',
            'animation/animatable/AnimatableDoubleAndBool.h',
            'animation/animatable/AnimatableFilterOperations.cpp',
            'animation/animatable/AnimatableFilterOperations.h',
            'animation/animatable/AnimatableImage.cpp',
            'animation/animatable/AnimatableImage.h',
            'animation/animatable/AnimatableLength.cpp',
            'animation/animatable/AnimatableLength.h',
            'animation/animatable/AnimatableLengthBox.cpp',
            'animation/animatable/AnimatableLengthBox.h',
            'animation/animatable/AnimatableLengthBoxAndBool.cpp',
            'animation/animatable/AnimatableLengthBoxAndBool.h',
            'animation/animatable/AnimatableLengthPoint.cpp',
            'animation/animatable/AnimatableLengthPoint.h',
            'animation/animatable/AnimatableLengthPoint3D.cpp',
            'animation/animatable/AnimatableLengthPoint3D.h',
            'animation/animatable/AnimatableLengthSize.cpp',
            'animation/animatable/AnimatableLengthSize.h',
            'animation/animatable/AnimatableNeutral.h',
            'animation/animatable/AnimatableRepeatable.cpp',
            'animation/animatable/AnimatableRepeatable.h',
            'animation/animatable/AnimatableSVGPaint.cpp',
            'animation/animatable/AnimatableSVGPaint.h',
            'animation/animatable/AnimatableShadow.cpp',
            'animation/animatable/AnimatableShadow.h',
            'animation/animatable/AnimatableShapeValue.cpp',
            'animation/animatable/AnimatableShapeValue.h',
            'animation/animatable/AnimatableStrokeDasharrayList.cpp',
            'animation/animatable/AnimatableStrokeDasharrayList.h',
            'animation/animatable/AnimatableTransform.cpp',
            'animation/animatable/AnimatableTransform.h',
            'animation/animatable/AnimatableUnknown.h',
            'animation/animatable/AnimatableValue.cpp',
            'animation/animatable/AnimatableValue.h',
            'animation/animatable/AnimatableValueKeyframe.cpp',
            'animation/animatable/AnimatableValueKeyframe.h',
            'animation/animatable/AnimatableVisibility.cpp',
            'animation/animatable/AnimatableVisibility.h',
            'animation/css/CSSAnimatableValueFactory.cpp',
            'animation/css/CSSAnimatableValueFactory.h',
            'animation/css/CSSAnimationData.cpp',
            'animation/css/CSSAnimationData.h',
            'animation/css/CSSAnimations.cpp',
            'animation/css/CSSAnimations.h',
            'animation/css/CSSAnimationUpdate.h',
            'animation/css/CSSPropertyEquality.cpp',
            'animation/css/CSSPropertyEquality.h',
            'animation/css/CSSTimingData.cpp',
            'animation/css/CSSTimingData.h',
            'animation/css/CSSTransitionData.cpp',
            'animation/css/CSSTransitionData.h',
            'compositing/DisplayListCompositingBuilder.cpp',
            'compositing/DisplayListCompositingBuilder.h',
            'clipboard/DataObject.cpp',
            'clipboard/DataObject.h',
            'clipboard/DataObjectItem.cpp',
            'clipboard/DataObjectItem.h',
            'clipboard/DataTransfer.cpp',
            'clipboard/DataTransfer.h',
            'clipboard/DataTransferItem.cpp',
            'clipboard/DataTransferItem.h',
            'clipboard/DataTransferItemList.cpp',
            'clipboard/DataTransferItemList.h',
            'clipboard/DraggedIsolatedFileSystem.cpp',
            'clipboard/DraggedIsolatedFileSystem.h',
            'clipboard/Pasteboard.cpp',
            'clipboard/Pasteboard.h',
            'css/BasicShapeFunctions.cpp',
            'css/BinaryDataFontFaceSource.cpp',
            'css/BinaryDataFontFaceSource.h',
            'css/CSSBasicShapeValues.cpp',
            'css/CSSBorderImage.cpp',
            'css/CSSBorderImage.h',
            'css/CSSBorderImageSliceValue.cpp',
            'css/CSSBorderImageSliceValue.h',
            'css/CSSCalculationValue.cpp',
            'css/CSSCalculationValue.h',
            'css/CSSCanvasValue.cpp',
            'css/CSSCanvasValue.h',
            'css/CSSComputedStyleDeclaration.cpp',
            'css/CSSContentDistributionValue.cpp',
            'css/CSSContentDistributionValue.h',
            'css/CSSCounterValue.cpp',
            'css/CSSCounterValue.h',
            'css/CSSCrossfadeValue.cpp',
            'css/CSSCrossfadeValue.h',
            'css/CSSCursorImageValue.cpp',
            'css/CSSCustomFontData.h',
            'css/CSSDefaultStyleSheets.cpp',
            'css/CSSDefaultStyleSheets.h',
            'css/CSSFontFace.cpp',
            'css/CSSFontFace.h',
            'css/CSSFontFaceRule.cpp',
            'css/CSSFontFaceRule.h',
            'css/CSSFontFaceSource.cpp',
            'css/CSSFontFaceSource.h',
            'css/CSSFontFaceSrcValue.cpp',
            'css/CSSFontFaceSrcValue.h',
            'css/CSSFontFeatureValue.cpp',
            'css/CSSFontFeatureValue.h',
            'css/CSSFontSelector.cpp',
            'css/CSSFontSelector.h',
            'css/CSSFontSelectorClient.h',
            'css/CSSFunctionValue.cpp',
            'css/CSSFunctionValue.h',
            'css/CSSGradientValue.cpp',
            'css/CSSGradientValue.h',
            'css/CSSGridLineNamesValue.cpp',
            'css/CSSGridLineNamesValue.h',
            'css/CSSGridTemplateAreasValue.cpp',
            'css/CSSGridTemplateAreasValue.h',
            'css/CSSGroupingRule.cpp',
            'css/CSSGroupingRule.h',
            'css/CSSImageGeneratorValue.cpp',
            'css/CSSImageSetValue.cpp',
            'css/CSSImageValue.cpp',
            'css/CSSImportRule.cpp',
            'css/CSSImportRule.h',
            'css/CSSInheritedValue.cpp',
            'css/CSSInheritedValue.h',
            'css/CSSInitialValue.cpp',
            'css/CSSInitialValue.h',
            'css/CSSKeyframeRule.cpp',
            'css/CSSKeyframeRule.h',
            'css/CSSKeyframesRule.cpp',
            'css/CSSKeyframesRule.h',
            'css/CSSMarkup.cpp',
            'css/CSSMarkup.h',
            'css/CSSMatrix.cpp',
            'css/CSSMatrix.h',
            'css/CSSMediaRule.cpp',
            'css/CSSMediaRule.h',
            'css/CSSNamespaceRule.cpp',
            'css/CSSNamespaceRule.h',
            'css/CSSPageRule.cpp',
            'css/CSSPageRule.h',
            'css/CSSPathValue.cpp',
            'css/CSSPathValue.h',
            'css/CSSPrimitiveValue.cpp',
            'css/CSSPrimitiveValueMappings.h',
            'css/CSSProperty.cpp',
            'css/CSSPropertySourceData.cpp',
            'css/CSSQuadValue.cpp',
            'css/CSSQuadValue.h',
            'css/CSSReflectValue.cpp',
            'css/CSSRule.cpp',
            'css/CSSRule.h',
            'css/CSSRuleList.cpp',
            'css/CSSRuleList.h',
            'css/CSSSVGDocumentValue.cpp',
            'css/CSSSVGDocumentValue.h',
            'css/CSSSegmentedFontFace.cpp',
            'css/CSSSegmentedFontFace.h',
            'css/CSSSelector.cpp',
            'css/CSSSelectorList.cpp',
            'css/CSSSelectorList.h',
            'css/CSSShadowValue.cpp',
            'css/CSSShadowValue.h',
            'css/CSSStyleDeclaration.h',
            'css/CSSStyleRule.cpp',
            'css/CSSStyleRule.h',
            'css/CSSStyleSheet.cpp',
            'css/CSSStyleSheet.h',
            'css/CSSSupportsRule.cpp',
            'css/CSSSupportsRule.h',
            'css/CSSTimingFunctionValue.cpp',
            'css/CSSTimingFunctionValue.h',
            'css/CSSToLengthConversionData.cpp',
            'css/CSSToLengthConversionData.h',
            'css/CSSUnicodeRangeValue.cpp',
            'css/CSSUnicodeRangeValue.h',
            'css/CSSUnsetValue.cpp',
            'css/CSSUnsetValue.h',
            'css/CSSValue.cpp',
            'css/CSSValueList.cpp',
            'css/CSSValuePair.cpp',
            'css/CSSValuePair.h',
            'css/CSSValuePool.cpp',
            'css/CSSValuePool.h',
            'css/CSSViewportRule.cpp',
            'css/CSSViewportRule.h',
            'css/DOMWindowCSS.cpp',
            'css/DOMWindowCSS.h',
            'css/DocumentFontFaceSet.cpp',
            'css/DocumentFontFaceSet.h',
            'css/ElementRuleCollector.cpp',
            'css/ElementRuleCollector.h',
            'css/FontFace.cpp',
            'css/FontFace.h',
            'css/FontFaceCache.cpp',
            'css/FontFaceCache.h',
            'css/FontFaceSet.cpp',
            'css/FontFaceSet.h',
            'css/FontFaceSetForEachCallback.h',
            'css/FontFaceSetLoadEvent.cpp',
            'css/FontFaceSetLoadEvent.h',
            'css/FontLoader.cpp',
            'css/FontLoader.h',
            'css/FontSize.cpp',
            'css/FontSize.h',
            'css/FontStyleMatcher.cpp',
            'css/FontStyleMatcher.h',
            'css/HashTools.h',
            'css/KeyframeStyleRuleCSSStyleDeclaration.cpp',
            'css/KeyframeStyleRuleCSSStyleDeclaration.h',
            'css/ComputedStyleCSSValueMapping.h',
            'css/ComputedStyleCSSValueMapping.cpp',
            'css/LocalFontFaceSource.cpp',
            'css/LocalFontFaceSource.h',
            'css/MediaList.cpp',
            'css/MediaList.h',
            'css/MediaQuery.cpp',
            'css/MediaQuery.h',
            'css/MediaQueryEvaluator.cpp',
            'css/MediaQueryEvaluator.h',
            'css/MediaQueryExp.cpp',
            'css/MediaQueryExp.h',
            'css/MediaQueryList.cpp',
            'css/MediaQueryList.h',
            'css/MediaQueryListEvent.h',
            'css/MediaQueryListListener.cpp',
            'css/MediaQueryListListener.h',
            'css/MediaQueryMatcher.cpp',
            'css/MediaQueryMatcher.h',
            'css/MediaValues.cpp',
            'css/MediaValuesCached.cpp',
            'css/MediaValuesDynamic.cpp',
            'css/PageRuleCollector.cpp',
            'css/PageRuleCollector.h',
            'css/PropertySetCSSStyleDeclaration.cpp',
            'css/PropertySetCSSStyleDeclaration.h',
            'css/PseudoStyleRequest.h',
            'css/RemoteFontFaceSource.cpp',
            'css/RemoteFontFaceSource.h',
            'css/RuleFeature.cpp',
            'css/RuleFeature.h',
            'css/RuleSet.cpp',
            'css/RuleSet.h',
            'css/SelectorChecker.cpp',
            'css/SelectorChecker.h',
            'css/SelectorFilter.cpp',
            'css/SelectorFilter.h',
            'css/StyleColor.cpp',
            'css/StyleColor.h',
            'css/StyleMedia.cpp',
            'css/StyleMedia.h',
            'css/StylePropertySerializer.cpp',
            'css/StylePropertySerializer.h',
            'css/StylePropertySet.cpp',
            'css/StylePropertySet.h',
            'css/StylePropertyShorthandCustom.cpp',
            'css/StyleRule.cpp',
            'css/StyleRule.h',
            'css/StyleRuleImport.cpp',
            'css/StyleRuleImport.h',
            'css/StyleRuleKeyframe.cpp',
            'css/StyleRuleKeyframe.h',
            'css/StyleRuleNamespace.h',
            'css/StyleSheet.cpp',
            'css/StyleSheet.h',
            'css/StyleSheetContents.cpp',
            'css/StyleSheetContents.h',
            'css/StyleSheetList.cpp',
            'css/StyleSheetList.h',
            'css/TreeBoundaryCrossingRules.cpp',
            'css/TreeBoundaryCrossingRules.h',
            'css/invalidation/InvalidationSet.cpp',
            'css/invalidation/InvalidationSet.h',
            'css/invalidation/StyleInvalidator.cpp',
            'css/invalidation/StyleInvalidator.h',
            'css/invalidation/StyleSheetInvalidationAnalysis.cpp',
            'css/invalidation/StyleSheetInvalidationAnalysis.h',
            'css/parser/CSSParser.cpp',
            'css/parser/CSSParser.h',
            'css/parser/CSSParserFastPaths.cpp',
            'css/parser/CSSParserFastPaths.h',
            'css/parser/CSSParserImpl.cpp',
            'css/parser/CSSParserImpl.h',
            'css/parser/CSSParserMode.cpp',
            'css/parser/CSSParserMode.h',
            'css/parser/CSSParserObserverWrapper.cpp',
            'css/parser/CSSParserToken.cpp',
            'css/parser/CSSParserTokenRange.cpp',
            'css/parser/CSSParserTokenRange.h',
            'css/parser/CSSParserValues.cpp',
            'css/parser/CSSParserSelector.h',
            'css/parser/CSSParserSelector.cpp',
            'css/parser/CSSPropertyParser.cpp',
            'css/parser/CSSPropertyParser.h',
            'css/parser/CSSSelectorParser.cpp',
            'css/parser/CSSSelectorParser.h',
            'css/parser/CSSSupportsParser.cpp',
            'css/parser/CSSSupportsParser.h',
            'css/parser/CSSTokenizer.cpp',
            'css/parser/CSSTokenizerInputStream.cpp',
            'css/parser/LegacyCSSPropertyParser.cpp',
            'css/parser/MediaQueryBlockWatcher.cpp',
            'css/parser/MediaQueryParser.cpp',
            'css/parser/SizesAttributeParser.cpp',
            'css/parser/SizesCalcParser.cpp',
            'css/resolver/AnimatedStyleBuilder.cpp',
            'css/resolver/AnimatedStyleBuilder.h',
            'css/resolver/CSSToStyleMap.cpp',
            'css/resolver/CSSToStyleMap.h',
            'css/resolver/ElementResolveContext.cpp',
            'css/resolver/ElementResolveContext.h',
            'css/resolver/ElementStyleResources.cpp',
            'css/resolver/ElementStyleResources.h',
            'css/resolver/FilterOperationResolver.cpp',
            'css/resolver/FilterOperationResolver.h',
            'css/resolver/FontBuilder.cpp',
            'css/resolver/FontBuilder.h',
            'css/resolver/MatchRequest.h',
            'css/resolver/MatchResult.cpp',
            'css/resolver/MatchResult.h',
            'css/resolver/MatchedPropertiesCache.cpp',
            'css/resolver/MatchedPropertiesCache.h',
            'css/resolver/MediaQueryResult.h',
            'css/resolver/ScopedStyleResolver.cpp',
            'css/resolver/ScopedStyleResolver.h',
            'css/resolver/SharedStyleFinder.cpp',
            'css/resolver/SharedStyleFinder.h',
            'css/resolver/StyleAdjuster.cpp',
            'css/resolver/StyleAdjuster.h',
            'css/resolver/StyleBuilderConverter.cpp',
            'css/resolver/StyleBuilderConverter.h',
            'css/resolver/StyleBuilderCustom.cpp',
            'css/resolver/StyleResolver.cpp',
            'css/resolver/StyleResolver.h',
            'css/resolver/StyleResolverParentScope.cpp',
            'css/resolver/StyleResolverParentScope.h',
            'css/resolver/StyleResolverState.cpp',
            'css/resolver/StyleResolverState.h',
            'css/resolver/StyleResolverStats.cpp',
            'css/resolver/StyleResolverStats.h',
            'css/resolver/StyleResourceLoader.cpp',
            'css/resolver/StyleResourceLoader.h',
            'css/resolver/TransformBuilder.cpp',
            'css/resolver/TransformBuilder.h',
            'css/resolver/ViewportStyleResolver.cpp',
            'css/resolver/ViewportStyleResolver.h',
            'editing/CaretBase.cpp',
            'editing/CaretBase.h',
            'editing/CompositionUnderline.h',
            'editing/DOMSelection.cpp',
            'editing/DOMSelection.h',
            'editing/DragCaretController.cpp',
            'editing/DragCaretController.h',
            'editing/EditingBehavior.cpp',
            'editing/EditingBehavior.h',
            'editing/EditingStrategy.cpp',
            'editing/EditingStrategy.h',
            'editing/EditingStyle.cpp',
            'editing/EditingUtilities.cpp',
            'editing/EditingUtilities.h',
            'editing/Editor.cpp',
            'editing/EditorKeyBindings.cpp',
            'editing/EphemeralRange.cpp',
            'editing/EphemeralRange.h',
            'editing/FrameSelection.cpp',
            'editing/GranularityStrategy.cpp',
            'editing/InputMethodController.cpp',
            'editing/InputMethodController.h',
            'editing/PendingSelection.cpp',
            'editing/PendingSelection.h',
            'editing/PlainTextRange.cpp',
            'editing/PlainTextRange.h',
            'editing/Position.cpp',
            'editing/Position.h',
            'editing/PositionIterator.cpp',
            'editing/PositionIterator.h',
            'editing/PositionWithAffinity.cpp',
            'editing/PositionWithAffinity.h',
            'editing/RenderedPosition.cpp',
            'editing/RenderedPosition.h',
            'editing/SelectionController.cpp',
            'editing/SelectionController.h',
            'editing/SelectionEditor.cpp',
            'editing/SelectionEditor.h',
            'editing/SelectionType.h',
            'editing/SurroundingText.cpp',
            'editing/SurroundingText.h',
            'editing/VisiblePosition.cpp',
            'editing/VisibleSelection.cpp',
            'editing/VisibleUnits.cpp',
            'editing/commands/AppendNodeCommand.cpp',
            'editing/commands/AppendNodeCommand.h',
            'editing/commands/ApplyBlockElementCommand.cpp',
            'editing/commands/ApplyBlockElementCommand.h',
            'editing/commands/ApplyStyleCommand.cpp',
            'editing/commands/ApplyStyleCommand.h',
            'editing/commands/BreakBlockquoteCommand.cpp',
            'editing/commands/BreakBlockquoteCommand.h',
            'editing/commands/CompositeEditCommand.cpp',
            'editing/commands/CompositeEditCommand.h',
            'editing/commands/CreateLinkCommand.cpp',
            'editing/commands/CreateLinkCommand.h',
            'editing/commands/DeleteFromTextNodeCommand.cpp',
            'editing/commands/DeleteFromTextNodeCommand.h',
            'editing/commands/DeleteSelectionCommand.cpp',
            'editing/commands/DeleteSelectionCommand.h',
            'editing/commands/EditCommand.cpp',
            'editing/commands/EditCommand.h',
            'editing/commands/EditorCommand.cpp',
            'editing/commands/FormatBlockCommand.cpp',
            'editing/commands/FormatBlockCommand.h',
            'editing/commands/IndentOutdentCommand.cpp',
            'editing/commands/IndentOutdentCommand.h',
            'editing/commands/InsertIntoTextNodeCommand.cpp',
            'editing/commands/InsertIntoTextNodeCommand.h',
            'editing/commands/InsertLineBreakCommand.cpp',
            'editing/commands/InsertLineBreakCommand.h',
            'editing/commands/InsertListCommand.cpp',
            'editing/commands/InsertListCommand.h',
            'editing/commands/InsertNodeBeforeCommand.cpp',
            'editing/commands/InsertNodeBeforeCommand.h',
            'editing/commands/InsertParagraphSeparatorCommand.cpp',
            'editing/commands/InsertParagraphSeparatorCommand.h',
            'editing/commands/InsertTextCommand.cpp',
            'editing/commands/InsertTextCommand.h',
            'editing/commands/MergeIdenticalElementsCommand.cpp',
            'editing/commands/MergeIdenticalElementsCommand.h',
            'editing/commands/MoveSelectionCommand.cpp',
            'editing/commands/MoveSelectionCommand.h',
            'editing/commands/RemoveCSSPropertyCommand.cpp',
            'editing/commands/RemoveCSSPropertyCommand.h',
            'editing/commands/RemoveFormatCommand.cpp',
            'editing/commands/RemoveFormatCommand.h',
            'editing/commands/RemoveNodeCommand.cpp',
            'editing/commands/RemoveNodeCommand.h',
            'editing/commands/RemoveNodePreservingChildrenCommand.cpp',
            'editing/commands/RemoveNodePreservingChildrenCommand.h',
            'editing/commands/ReplaceNodeWithSpanCommand.cpp',
            'editing/commands/ReplaceNodeWithSpanCommand.h',
            'editing/commands/ReplaceSelectionCommand.cpp',
            'editing/commands/ReplaceSelectionCommand.h',
            'editing/commands/SetNodeAttributeCommand.cpp',
            'editing/commands/SetNodeAttributeCommand.h',
            'editing/commands/SimplifyMarkupCommand.cpp',
            'editing/commands/SimplifyMarkupCommand.h',
            'editing/commands/SmartReplace.h',
            'editing/commands/SmartReplaceCF.cpp',
            'editing/commands/SmartReplaceICU.cpp',
            'editing/commands/SplitElementCommand.cpp',
            'editing/commands/SplitElementCommand.h',
            'editing/commands/SplitTextNodeCommand.cpp',
            'editing/commands/SplitTextNodeCommand.h',
            'editing/commands/SplitTextNodeContainingElementCommand.cpp',
            'editing/commands/SplitTextNodeContainingElementCommand.h',
            'editing/commands/TextInsertionBaseCommand.cpp',
            'editing/commands/TextInsertionBaseCommand.h',
            'editing/commands/TypingCommand.cpp',
            'editing/commands/TypingCommand.h',
            'editing/commands/UndoStack.cpp',
            'editing/commands/UndoStack.h',
            'editing/commands/UndoStep.h',
            'editing/commands/UnlinkCommand.cpp',
            'editing/commands/UnlinkCommand.h',
            'editing/commands/WrapContentsInDummySpanCommand.cpp',
            'editing/commands/WrapContentsInDummySpanCommand.h',
            'editing/iterators/BackwardsCharacterIterator.cpp',
            'editing/iterators/BitStack.cpp',
            'editing/iterators/FullyClippedStateStack.cpp',
            'editing/iterators/SearchBuffer.cpp',
            'editing/iterators/SearchBuffer.h',
            'editing/iterators/TextIterator.cpp',
            'editing/iterators/TextIterator.h',
            'editing/iterators/TextIteratorTextState.cpp',
            'editing/iterators/TextIteratorTextState.h',
            'editing/iterators/CharacterIterator.cpp',
            'editing/iterators/SimplifiedBackwardsTextIterator.cpp',
            'editing/iterators/WordAwareIterator.cpp',
            'editing/markers/DocumentMarker.cpp',
            'editing/markers/DocumentMarker.h',
            'editing/markers/DocumentMarkerController.cpp',
            'editing/markers/DocumentMarkerController.h',
            'editing/markers/RenderedDocumentMarker.h',
            'editing/serializers/HTMLInterchange.cpp',
            'editing/serializers/HTMLInterchange.h',
            'editing/serializers/MarkupAccumulator.cpp',
            'editing/serializers/MarkupAccumulator.h',
            'editing/serializers/MarkupFormatter.cpp',
            'editing/serializers/MarkupFormatter.h',
            'editing/serializers/Serialization.cpp',
            'editing/serializers/Serialization.h',
            'editing/serializers/StyledMarkupAccumulator.cpp',
            'editing/serializers/StyledMarkupAccumulator.h',
            'editing/serializers/StyledMarkupSerializer.cpp',
            'editing/serializers/StyledMarkupSerializer.h',
            'editing/serializers/TextOffset.cpp',
            'editing/serializers/TextOffset.h',
            'editing/spellcheck/SpellCheckRequester.cpp',
            'editing/spellcheck/SpellCheckRequester.h',
            'editing/spellcheck/SpellChecker.cpp',
            'editing/spellcheck/SpellChecker.h',
            'editing/spellcheck/TextCheckingHelper.cpp',
            'editing/spellcheck/TextCheckingHelper.h',
            'fetch/AccessControlStatus.h',
            'fetch/CSSStyleSheetResource.cpp',
            'fetch/CSSStyleSheetResource.h',
            'fetch/CachedMetadata.h',
            'fetch/CachedMetadataHandler.h',
            'fetch/ClientHintsPreferences.cpp',
            'fetch/ClientHintsPreferences.h',
            'fetch/CrossOriginAccessControl.cpp',
            'fetch/CrossOriginAccessControl.h',
            'fetch/DocumentResource.cpp',
            'fetch/DocumentResource.h',
            'fetch/DocumentResourceReference.h',
            'fetch/FetchContext.cpp',
            'fetch/FetchContext.h',
            'fetch/FetchInitiatorInfo.h',
            'fetch/FetchRequest.cpp',
            'fetch/FetchRequest.h',
            'fetch/FetchUtils.cpp',
            'fetch/FetchUtils.h',
            'fetch/FontResource.cpp',
            'fetch/FontResource.h',
            'fetch/ImageResource.cpp',
            'fetch/ImageResource.h',
            'fetch/LinkFetchResource.cpp',
            'fetch/LinkFetchResource.h',
            'fetch/MemoryCache.cpp',
            'fetch/MemoryCache.h',
            'fetch/RawResource.cpp',
            'fetch/RawResource.h',
            'fetch/Resource.cpp',
            'fetch/Resource.h',
            'fetch/ResourceClientWalker.h',
            'fetch/ResourceFetcher.cpp',
            'fetch/ResourceFetcher.h',
            'fetch/ResourceLoadPriorityOptimizer.cpp',
            'fetch/ResourceLoadPriorityOptimizer.h',
            'fetch/ResourceLoader.cpp',
            'fetch/ResourceLoader.h',
            'fetch/ResourceLoaderOptions.h',
            'fetch/ResourceLoaderSet.cpp',
            'fetch/ResourceLoaderSet.h',
            'fetch/ResourcePtr.cpp',
            'fetch/ResourcePtr.h',
            'fetch/ScriptResource.cpp',
            'fetch/ScriptResource.h',
            'fetch/SubstituteData.h',
            'fetch/TextResource.cpp',
            'fetch/TextResource.h',
            'fetch/UniqueIdentifier.cpp',
            'fetch/UniqueIdentifier.h',
            'fetch/XSLStyleSheetResource.cpp',
            'fetch/XSLStyleSheetResource.h',
            'fileapi/Blob.cpp',
            'fileapi/Blob.h',
            'fileapi/File.cpp',
            'fileapi/File.h',
            'fileapi/FileCallback.h',
            'fileapi/FileError.cpp',
            'fileapi/FileError.h',
            'fileapi/FileList.cpp',
            'fileapi/FileList.h',
            'fileapi/FileReader.cpp',
            'fileapi/FileReader.h',
            'fileapi/FileReaderLoader.cpp',
            'fileapi/FileReaderLoader.h',
            'fileapi/FileReaderLoaderClient.h',
            'fileapi/FileReaderSync.cpp',
            'fileapi/FileReaderSync.h',
            'frame/BarProp.cpp',
            'frame/BarProp.h',
            'frame/Console.cpp',
            'frame/Console.h',
            'frame/ConsoleBase.cpp',
            'frame/ConsoleBase.h',
            'frame/DOMTimer.cpp',
            'frame/DOMTimer.h',
            'frame/DOMTimerCoordinator.cpp',
            'frame/DOMTimerCoordinator.h',
            'frame/DOMWindow.cpp',
            'frame/DOMWindow.h',
            'frame/DOMWindowBase64.cpp',
            'frame/DOMWindowBase64.h',
            'frame/DOMWindowEventHandlers.h',
            'frame/DOMWindowLifecycleNotifier.cpp',
            'frame/DOMWindowLifecycleNotifier.h',
            'frame/DOMWindowLifecycleObserver.h',
            'frame/DOMWindowProperty.cpp',
            'frame/DOMWindowProperty.h',
            'frame/DOMWindowTimers.cpp',
            'frame/DOMWindowTimers.h',
            'frame/DeprecatedScheduleStyleRecalcDuringLayout.cpp',
            'frame/DeprecatedScheduleStyleRecalcDuringLayout.h',
            'frame/DeviceSingleWindowEventController.cpp',
            'frame/DeviceSingleWindowEventController.h',
            'frame/EventHandlerRegistry.cpp',
            'frame/EventHandlerRegistry.h',
            'frame/Frame.cpp',
            'frame/Frame.h',
            'frame/FrameConsole.cpp',
            'frame/FrameHost.cpp',
            'frame/FrameHost.h',
            'frame/FrameOwner.h',
            'frame/FrameView.cpp',
            'frame/FrameView.h',
            'frame/FrameViewAutoSizeInfo.cpp',
            'frame/History.cpp',
            'frame/History.h',
            'frame/ImageBitmap.cpp',
            'frame/ImageBitmap.h',
            'frame/LayoutSubtreeRootList.cpp',
            'frame/LayoutSubtreeRootList.h',
            'frame/LocalDOMWindow.cpp',
            'frame/LocalDOMWindow.h',
            'frame/LocalFrame.cpp',
            'frame/LocalFrame.h',
            'frame/LocalFrameLifecycleNotifier.cpp',
            'frame/LocalFrameLifecycleNotifier.h',
            'frame/LocalFrameLifecycleObserver.h',
            'frame/Location.cpp',
            'frame/Location.h',
            'frame/Navigator.cpp',
            'frame/Navigator.h',
            'frame/NavigatorCPU.cpp',
            'frame/NavigatorCPU.h',
            'frame/NavigatorID.cpp',
            'frame/NavigatorID.h',
            'frame/NavigatorLanguage.cpp',
            'frame/NavigatorLanguage.h',
            'frame/NavigatorOnLine.h',
            'frame/OriginsUsingFeatures.cpp',
            'frame/OriginsUsingFeatures.h',
            'frame/PageScaleConstraints.cpp',
            'frame/PageScaleConstraints.h',
            'frame/PageScaleConstraintsSet.cpp',
            'frame/PageScaleConstraintsSet.h',
            'frame/PlatformEventController.cpp',
            'frame/PlatformEventController.h',
            'frame/PlatformEventDispatcher.cpp',
            'frame/PlatformEventDispatcher.h',
            'frame/RemoteDOMWindow.cpp',
            'frame/RemoteDOMWindow.h',
            'frame/RemoteFrame.cpp',
            'frame/RemoteFrame.h',
            'frame/RemoteFrameClient.h',
            'frame/RemoteFrameView.cpp',
            'frame/RemoteFrameView.h',
            'frame/RootFrameViewport.cpp',
            'frame/RootFrameViewport.h',
            'frame/Screen.cpp',
            'frame/Screen.h',
            'frame/Settings.cpp',
            'frame/SettingsDelegate.cpp',
            'frame/SettingsDelegate.h',
            'frame/SmartClip.cpp',
            'frame/SmartClip.h',
            'frame/SubresourceIntegrity.cpp',
            'frame/SubresourceIntegrity.h',
            'frame/SuspendableTimer.cpp',
            'frame/SuspendableTimer.h',
            'frame/TopControls.cpp',
            'frame/TopControls.h',
            'frame/UseCounter.cpp',
            'frame/VisualViewport.cpp',
            'frame/VisualViewport.h',
            'frame/csp/CSPDirectiveList.cpp',
            'frame/csp/CSPSource.cpp',
            'frame/csp/CSPSourceList.cpp',
            'frame/csp/ContentSecurityPolicy.cpp',
            'frame/csp/MediaListDirective.cpp',
            'frame/csp/SourceListDirective.cpp',
            'imagebitmap/ImageBitmapFactories.cpp',
            'imagebitmap/ImageBitmapFactories.h',
            'inspector/AsyncCallChain.cpp',
            'inspector/AsyncCallChain.h',
            'inspector/AsyncCallTracker.cpp',
            'inspector/AsyncCallTracker.h',
            'inspector/AsyncOperationMap.h',
            'inspector/ConsoleAPITypes.h',
            'inspector/ConsoleMessage.cpp',
            'inspector/ConsoleMessage.h',
            'inspector/ConsoleMessageStorage.cpp',
            'inspector/ConsoleMessageStorage.h',
            'inspector/ContentSearchUtils.cpp',
            'inspector/ContentSearchUtils.h',
            'inspector/DOMEditor.cpp',
            'inspector/DOMEditor.h',
            'inspector/DOMPatchSupport.cpp',
            'inspector/DOMPatchSupport.h',
            'inspector/DevToolsHost.cpp',
            'inspector/DevToolsHost.h',
            'inspector/EventListenerInfo.cpp',
            'inspector/EventListenerInfo.h',
            'inspector/IdentifiersFactory.cpp',
            'inspector/IdentifiersFactory.h',
            'inspector/InjectedScript.cpp',
            'inspector/InjectedScript.h',
            'inspector/InjectedScriptNative.cpp',
            'inspector/InjectedScriptNative.h',
            'inspector/InjectedScriptHost.cpp',
            'inspector/InjectedScriptHost.h',
            'inspector/InjectedScriptManager.cpp',
            'inspector/InjectedScriptManager.h',
            'inspector/InspectorAnimationAgent.cpp',
            'inspector/InspectorAnimationAgent.h',
            'inspector/InspectorApplicationCacheAgent.cpp',
            'inspector/InspectorApplicationCacheAgent.h',
            'inspector/InspectorBaseAgent.cpp',
            'inspector/InspectorCSSAgent.cpp',
            'inspector/InspectorCSSAgent.h',
            'inspector/InspectorConsoleAgent.cpp',
            'inspector/InspectorConsoleAgent.h',
            'inspector/InspectorConsoleInstrumentation.h',
            'inspector/InspectorDOMAgent.cpp',
            'inspector/InspectorDOMDebuggerAgent.cpp',
            'inspector/InspectorDOMDebuggerAgent.h',
            'inspector/InspectorDebuggerAgent.cpp',
            'inspector/InspectorDebuggerAgent.h',
            'inspector/InspectorFrontendChannel.h',
            'inspector/InspectorHeapProfilerAgent.cpp',
            'inspector/InspectorHeapProfilerAgent.h',
            'inspector/InspectorHighlight.cpp',
            'inspector/InspectorHighlight.h',
            'inspector/InspectorHistory.cpp',
            'inspector/InspectorHistory.h',
            'inspector/InspectorInputAgent.cpp',
            'inspector/InspectorInputAgent.h',
            'inspector/InspectorInspectorAgent.cpp',
            'inspector/InspectorInstrumentation.cpp',
            'inspector/InspectorInstrumentation.h',
            'inspector/InspectorInstrumentationCustomInl.h',
            'inspector/InspectorLayerTreeAgent.cpp',
            'inspector/InspectorLayerTreeAgent.h',
            'inspector/InspectorMemoryAgent.cpp',
            'inspector/InspectorMemoryAgent.h',
            'inspector/InspectorOverlayHost.cpp',
            'inspector/InspectorOverlayHost.h',
            'inspector/InspectorPageAgent.cpp',
            'inspector/InspectorPageAgent.h',
            'inspector/InspectorProfilerAgent.cpp',
            'inspector/InspectorProfilerAgent.h',
            'inspector/InspectorResourceAgent.cpp',
            'inspector/InspectorResourceAgent.h',
            'inspector/InspectorResourceContentLoader.cpp',
            'inspector/InspectorResourceContentLoader.h',
            'inspector/InspectorRuntimeAgent.cpp',
            'inspector/InspectorRuntimeAgent.h',
            'inspector/InspectorState.cpp',
            'inspector/InspectorState.h',
            'inspector/InspectorStateClient.h',
            'inspector/InspectorStyleSheet.cpp',
            'inspector/InspectorStyleSheet.h',
            'inspector/InspectorTaskRunner.cpp',
            'inspector/InspectorTaskRunner.h',
            'inspector/InspectorTimelineAgent.cpp',
            'inspector/InspectorTimelineAgent.h',
            'inspector/InspectorTraceEvents.cpp',
            'inspector/InspectorTraceEvents.h',
            'inspector/InspectorTracingAgent.cpp',
            'inspector/InspectorTracingAgent.h',
            'inspector/InspectorWorkerAgent.cpp',
            'inspector/InspectorWorkerAgent.h',
            'inspector/InstanceCounters.cpp',
            'inspector/InstanceCounters.h',
            'inspector/InstrumentingAgents.h',
            'inspector/JSONParser.cpp',
            'inspector/JSONParser.h',
            'inspector/LayoutEditor.cpp',
            'inspector/LayoutEditor.h',
            'inspector/MainThreadDebugger.cpp',
            'inspector/MainThreadDebugger.h',
            'inspector/NetworkResourcesData.cpp',
            'inspector/NetworkResourcesData.h',
            'inspector/PageConsoleAgent.cpp',
            'inspector/PageConsoleAgent.h',
            'inspector/PageDebuggerAgent.cpp',
            'inspector/PageDebuggerAgent.h',
            'inspector/PageRuntimeAgent.cpp',
            'inspector/PageRuntimeAgent.h',
            'inspector/PromiseTracker.cpp',
            'inspector/PromiseTracker.h',
            'inspector/RemoteObjectId.cpp',
            'inspector/RemoteObjectId.h',
            'inspector/ScriptArguments.cpp',
            'inspector/ScriptArguments.h',
            'inspector/ScriptAsyncCallStack.cpp',
            'inspector/ScriptAsyncCallStack.h',
            'inspector/ScriptCallFrame.cpp',
            'inspector/ScriptCallFrame.h',
            'inspector/ScriptCallStack.cpp',
            'inspector/ScriptCallStack.h',
            'inspector/ScriptDebuggerBase.cpp',
            'inspector/ScriptDebuggerBase.h',
            'inspector/v8/InspectorWrapper.cpp',
            'inspector/v8/InspectorWrapper.h',
            'inspector/v8/JavaScriptCallFrame.cpp',
            'inspector/v8/JavaScriptCallFrame.h',
            'inspector/v8/ScriptBreakpoint.h',
            'inspector/v8/V8AsyncCallTracker.cpp',
            'inspector/v8/V8AsyncCallTracker.h',
            'inspector/v8/V8DebuggerAgent.h',
            'inspector/v8/V8DebuggerAgentImpl.cpp',
            'inspector/v8/V8DebuggerAgentImpl.h',
            'inspector/v8/V8Debugger.h',
            'inspector/v8/V8DebuggerClient.h',
            'inspector/v8/V8DebuggerImpl.cpp',
            'inspector/v8/V8DebuggerImpl.h',
            'inspector/v8/V8DebuggerListener.cpp',
            'inspector/v8/V8DebuggerListener.h',
            'inspector/v8/V8InjectedScriptHost.cpp',
            'inspector/v8/V8InjectedScriptHost.h',
            'inspector/v8/V8JavaScriptCallFrame.cpp',
            'inspector/v8/V8JavaScriptCallFrame.h',
            'inspector/v8/V8RuntimeAgent.h',
            'inspector/v8/V8RuntimeAgentImpl.cpp',
            'inspector/v8/V8RuntimeAgentImpl.h',
            'inspector/WorkerConsoleAgent.cpp',
            'inspector/WorkerConsoleAgent.h',
            'inspector/WorkerDebuggerAgent.cpp',
            'inspector/WorkerDebuggerAgent.h',
            'inspector/WorkerInspectorController.cpp',
            'inspector/WorkerInspectorController.h',
            'inspector/WorkerRuntimeAgent.cpp',
            'inspector/WorkerRuntimeAgent.h',
            'inspector/WorkerThreadDebugger.cpp',
            'inspector/WorkerThreadDebugger.h',
            'loader/BeaconLoader.cpp',
            'loader/BeaconLoader.h',
            'loader/CookieJar.cpp',
            'loader/CrossOriginPreflightResultCache.cpp',
            'loader/DocumentLoadTiming.cpp',
            'loader/DocumentLoader.cpp',
            'loader/DocumentThreadableLoader.cpp',
            'loader/DocumentThreadableLoader.h',
            'loader/DocumentThreadableLoaderClient.h',
            'loader/DocumentWriter.cpp',
            'loader/EmptyClients.cpp',
            'loader/EmptyClients.h',
            'loader/FormSubmission.cpp',
            'loader/FrameFetchContext.cpp',
            'loader/FrameFetchContext.h',
            'loader/FrameLoadRequest.h',
            'loader/FrameLoader.cpp',
            'loader/FrameLoaderStateMachine.cpp',
            'loader/HistoryItem.cpp',
            'loader/HistoryItem.h',
            'loader/HttpEquiv.cpp',
            'loader/HttpEquiv.h',
            'loader/ImageLoader.cpp',
            'loader/ImageLoader.h',
            'loader/LinkHeader.cpp',
            'loader/LinkLoader.cpp',
            'loader/LinkLoader.h',
            'loader/LinkLoaderClient.h',
            'loader/MixedContentChecker.cpp',
            'loader/MixedContentChecker.h',
            'loader/NavigationPolicy.cpp',
            'loader/NavigationPolicy.h',
            'loader/NavigationScheduler.cpp',
            'loader/PingLoader.cpp',
            'loader/PingLoader.h',
            'loader/PrerenderHandle.cpp',
            'loader/PrerenderHandle.h',
            'loader/PrerendererClient.cpp',
            'loader/PrerendererClient.h',
            'loader/ProgressTracker.cpp',
            'loader/SinkDocument.cpp',
            'loader/SinkDocument.h',
            'loader/TextResourceDecoderBuilder.cpp',
            'loader/TextResourceDecoderBuilder.h',
            'loader/TextTrackLoader.cpp',
            'loader/TextTrackLoader.h',
            'loader/ThreadableLoader.cpp',
            'loader/ThreadableLoaderClient.h',
            'loader/ThreadableLoaderClientWrapper.h',
            'loader/WorkerLoaderClientBridge.cpp',
            'loader/WorkerLoaderClientBridge.h',
            'loader/WorkerLoaderClientBridgeSyncHelper.cpp',
            'loader/WorkerLoaderClientBridgeSyncHelper.h',
            'loader/WorkerThreadableLoader.cpp',
            'loader/WorkerThreadableLoader.h',
            'loader/appcache/ApplicationCache.cpp',
            'loader/appcache/ApplicationCache.h',
            'loader/appcache/ApplicationCacheHost.cpp',
            'loader/appcache/ApplicationCacheHost.h',
            'page/AutoscrollController.cpp',
            'page/AutoscrollController.h',
            'page/ChromeClient.cpp',
            'page/ChromeClient.h',
            'page/ContextMenuController.cpp',
            'page/ContextMenuProvider.h',
            'page/CreateWindow.cpp',
            'page/CreateWindow.h',
            'page/CustomContextMenuProvider.cpp',
            'page/CustomContextMenuProvider.h',
            'page/DOMWindowPagePopup.cpp',
            'page/DOMWindowPagePopup.h',
            'page/DragController.cpp',
            'page/DragData.cpp',
            'page/EventSource.cpp',
            'page/EventSource.h',
            'page/EventWithHitTestResults.h',
            'page/FocusController.cpp',
            'page/FrameTree.cpp',
            'page/NetworkStateNotifier.cpp',
            'page/NetworkStateNotifier.h',
            'page/Page.cpp',
            'page/Page.h',
            'page/PageAnimator.cpp',
            'page/PageAnimator.h',
            'page/PageLifecycleNotifier.cpp',
            'page/PageLifecycleNotifier.h',
            'page/PageLifecycleObserver.h',
            'page/PagePopupClient.cpp',
            'page/PagePopupClient.h',
            'page/PagePopupController.cpp',
            'page/PagePopupController.h',
            'page/PageSerializer.cpp',
            'page/PageVisibilityState.cpp',
            'page/PointerLockController.cpp',
            'page/PointerLockController.h',
            'page/PopupOpeningObserver.h',
            'page/PrintContext.cpp',
            'page/ScopedPageLoadDeferrer.cpp',
            'page/ScopedPageLoadDeferrer.h',
            'page/SpatialNavigation.cpp',
            'page/TouchAdjustment.cpp',
            'page/TouchAdjustment.h',
            'page/TouchDisambiguation.cpp',
            'page/TouchDisambiguation.h',
            'page/WindowFeatures.cpp',
            'page/scrolling/ScrollingConstraints.cpp',
            'page/scrolling/ScrollingConstraints.h',
            'page/scrolling/ScrollingCoordinator.cpp',
            'page/scrolling/ScrollingCoordinator.h',
            'page/scrolling/ScrollCustomizationCallbacks.cpp',
            'page/scrolling/ScrollCustomizationCallbacks.h',
            'page/scrolling/ScrollState.cpp',
            'page/scrolling/ScrollState.h',
            'page/scrolling/ScrollStateCallback.cpp',
            'page/scrolling/ScrollStateCallback.h',
            'paint/BackgroundImageGeometry.cpp',
            'paint/BackgroundImageGeometry.h',
            'paint/BlockFlowPainter.cpp',
            'paint/BlockFlowPainter.h',
            'paint/BlockPainter.cpp',
            'paint/BlockPainter.h',
            'paint/BoxBorderPainter.cpp',
            'paint/BoxBorderPainter.h',
            'paint/BoxClipper.cpp',
            'paint/BoxClipper.h',
            'paint/BoxDecorationData.cpp',
            'paint/BoxDecorationData.h',
            'paint/BoxPainter.cpp',
            'paint/BoxPainter.h',
            'paint/ClipScope.cpp',
            'paint/ClipScope.h',
            'paint/CompositingRecorder.cpp',
            'paint/CompositingRecorder.h',
            'paint/DetailsMarkerPainter.cpp',
            'paint/DetailsMarkerPainter.h',
            'paint/EllipsisBoxPainter.cpp',
            'paint/EllipsisBoxPainter.h',
            'paint/EmbeddedObjectPainter.cpp',
            'paint/EmbeddedObjectPainter.h',
            'paint/FieldsetPainter.cpp',
            'paint/FieldsetPainter.h',
            'paint/FileUploadControlPainter.cpp',
            'paint/FileUploadControlPainter.h',
            'paint/FilterEffectBuilder.cpp',
            'paint/FilterEffectBuilder.h',
            'paint/FilterPainter.cpp',
            'paint/FilterPainter.h',
            'paint/FloatClipRecorder.cpp',
            'paint/FloatClipRecorder.h',
            'paint/FramePainter.cpp',
            'paint/FramePainter.h',
            'paint/FrameSetPainter.cpp',
            'paint/FrameSetPainter.h',
            'paint/GridPainter.cpp',
            'paint/GridPainter.h',
            'paint/HTMLCanvasPainter.cpp',
            'paint/HTMLCanvasPainter.h',
            'paint/ImagePainter.cpp',
            'paint/ImagePainter.h',
            'paint/InlineFlowBoxPainter.cpp',
            'paint/InlineFlowBoxPainter.h',
            'paint/InlinePainter.cpp',
            'paint/InlinePainter.h',
            'paint/InlineTextBoxPainter.cpp',
            'paint/InlineTextBoxPainter.h',
            'paint/LayerClipRecorder.cpp',
            'paint/LayerClipRecorder.h',
            'paint/LayerFixedPositionRecorder.cpp',
            'paint/LayerFixedPositionRecorder.h',
            'paint/LayoutObjectDrawingRecorder.h',
            'paint/LineBoxListPainter.cpp',
            'paint/LineBoxListPainter.h',
            'paint/LineLayoutPaintShim.h',
            'paint/ListItemPainter.cpp',
            'paint/ListItemPainter.h',
            'paint/ListMarkerPainter.cpp',
            'paint/ListMarkerPainter.h',
            'paint/MediaControlsPainter.cpp',
            'paint/MediaControlsPainter.h',
            'paint/MultiColumnSetPainter.cpp',
            'paint/MultiColumnSetPainter.h',
            'paint/NinePieceImageGrid.cpp',
            'paint/NinePieceImageGrid.h',
            'paint/NinePieceImagePainter.cpp',
            'paint/NinePieceImagePainter.h',
            'paint/ObjectPainter.cpp',
            'paint/ObjectPainter.h',
            'paint/PaintInfo.h',
            'paint/PaintLayer.cpp',
            'paint/PaintLayerClipper.cpp',
            'paint/PaintLayerFilterInfo.cpp',
            'paint/PaintLayerFilterInfo.h',
            'paint/PaintLayerFragment.h',
            'paint/PaintLayerReflectionInfo.cpp',
            'paint/PaintLayerPainter.cpp',
            'paint/PaintLayerPainter.h',
            'paint/PaintLayerPaintingInfo.h',
            'paint/PaintLayerScrollableArea.cpp',
            'paint/PaintLayerStackingNode.cpp',
            'paint/PaintLayerStackingNodeIterator.cpp',
            'paint/PaintPhase.cpp',
            'paint/PaintPhase.h',
            'paint/PartPainter.cpp',
            'paint/PartPainter.h',
            'paint/ReplacedPainter.cpp',
            'paint/ReplacedPainter.h',
            'paint/ReplicaPainter.cpp',
            'paint/ReplicaPainter.h',
            'paint/RootInlineBoxPainter.cpp',
            'paint/RootInlineBoxPainter.h',
            'paint/RoundedInnerRectClipper.cpp',
            'paint/RoundedInnerRectClipper.h',
            'paint/SVGClipPainter.cpp',
            'paint/SVGClipPainter.h',
            'paint/SVGContainerPainter.cpp',
            'paint/SVGContainerPainter.h',
            'paint/SVGFilterPainter.cpp',
            'paint/SVGFilterPainter.h',
            'paint/SVGForeignObjectPainter.cpp',
            'paint/SVGForeignObjectPainter.h',
            'paint/SVGImagePainter.cpp',
            'paint/SVGImagePainter.h',
            'paint/SVGInlineFlowBoxPainter.cpp',
            'paint/SVGInlineFlowBoxPainter.h',
            'paint/SVGInlineTextBoxPainter.cpp',
            'paint/SVGInlineTextBoxPainter.h',
            'paint/SVGMaskPainter.cpp',
            'paint/SVGMaskPainter.h',
            'paint/SVGPaintContext.cpp',
            'paint/SVGPaintContext.h',
            'paint/SVGRootInlineBoxPainter.cpp',
            'paint/SVGRootInlineBoxPainter.h',
            'paint/SVGRootPainter.cpp',
            'paint/SVGRootPainter.h',
            'paint/SVGShapePainter.cpp',
            'paint/SVGShapePainter.h',
            'paint/SVGTextPainter.cpp',
            'paint/SVGTextPainter.h',
            'paint/ScopeRecorder.cpp',
            'paint/ScopeRecorder.h',
            'paint/ScrollableAreaPainter.cpp',
            'paint/ScrollableAreaPainter.h',
            'paint/ScrollbarPainter.cpp',
            'paint/ScrollbarPainter.h',
            'paint/ScrollRecorder.cpp',
            'paint/ScrollRecorder.h',
            'paint/TableCellPainter.cpp',
            'paint/TableCellPainter.h',
            'paint/TablePainter.cpp',
            'paint/TablePainter.h',
            'paint/TableRowPainter.cpp',
            'paint/TableRowPainter.h',
            'paint/TableSectionPainter.cpp',
            'paint/TableSectionPainter.h',
            'paint/TextPainter.cpp',
            'paint/TextPainter.h',
            'paint/ThemePainter.cpp',
            'paint/ThemePainter.h',
            'paint/ThemePainterDefault.cpp',
            'paint/ThemePainterDefault.h',
            'paint/ThemePainterMac.mm',
            'paint/ThemePainterMac.h',
            'paint/Transform3DRecorder.cpp',
            'paint/Transform3DRecorder.h',
            'paint/TransformRecorder.cpp',
            'paint/TransformRecorder.h',
            'paint/VideoPainter.cpp',
            'paint/VideoPainter.h',
            'paint/ViewPainter.cpp',
            'paint/ViewPainter.h',
            'plugins/PluginView.h',
            'streams/ReadableByteStream.cpp',
            'streams/ReadableByteStream.h',
            'streams/ReadableByteStreamReader.h',
            'streams/ReadableStream.cpp',
            'streams/ReadableStream.h',
            'streams/ReadableStreamImpl.h',
            'streams/ReadableStreamReader.cpp',
            'streams/ReadableStreamReader.h',
            'streams/Stream.cpp',
            'streams/Stream.h',
            'streams/UnderlyingSource.h',
            'timing/ConsoleMemory.cpp',
            'timing/ConsoleMemory.h',
            'timing/DOMWindowPerformance.cpp',
            'timing/DOMWindowPerformance.h',
            'timing/MemoryInfo.cpp',
            'timing/Performance.cpp',
            'timing/Performance.h',
            'timing/PerformanceBase.cpp',
            'timing/PerformanceBase.h',
            'timing/PerformanceCompositeTiming.cpp',
            'timing/PerformanceCompositeTiming.h',
            'timing/PerformanceEntry.cpp',
            'timing/PerformanceEntry.h',
            'timing/PerformanceMark.h',
            'timing/PerformanceMeasure.h',
            'timing/PerformanceNavigation.cpp',
            'timing/PerformanceNavigation.h',
            'timing/PerformanceObserver.cpp',
            'timing/PerformanceObserver.h',
            'timing/PerformanceObserverCallback.h',
            'timing/PerformanceObserverEntryList.cpp',
            'timing/PerformanceObserverEntryList.h',
            'timing/PerformanceRenderTiming.cpp',
            'timing/PerformanceRenderTiming.h',
            'timing/PerformanceResourceTiming.cpp',
            'timing/PerformanceResourceTiming.h',
            'timing/PerformanceTiming.cpp',
            'timing/PerformanceTiming.h',
            'timing/PerformanceUserTiming.cpp',
            'timing/PerformanceUserTiming.h',
            'timing/SharedWorkerPerformance.cpp',
            'timing/WorkerGlobalScopePerformance.cpp',
            'timing/WorkerGlobalScopePerformance.h',
            'timing/WorkerPerformance.cpp',
            'timing/WorkerPerformance.h',
            'workers/AbstractWorker.cpp',
            'workers/AbstractWorker.h',
            'workers/DedicatedWorkerGlobalScope.cpp',
            'workers/DedicatedWorkerGlobalScope.h',
            'workers/DedicatedWorkerMessagingProxy.cpp',
            'workers/DedicatedWorkerMessagingProxy.h',
            'workers/DedicatedWorkerThread.cpp',
            'workers/DedicatedWorkerThread.h',
            'workers/InProcessWorkerBase.cpp',
            'workers/InProcessWorkerBase.h',
            'workers/SharedWorker.cpp',
            'workers/SharedWorker.h',
            'workers/SharedWorkerGlobalScope.cpp',
            'workers/SharedWorkerGlobalScope.h',
            'workers/SharedWorkerRepositoryClient.h',
            'workers/SharedWorkerThread.cpp',
            'workers/SharedWorkerThread.h',
            'workers/Worker.cpp',
            'workers/Worker.h',
            'workers/WorkerClients.h',
            'workers/WorkerConsole.cpp',
            'workers/WorkerConsole.h',
            'workers/WorkerEventQueue.cpp',
            'workers/WorkerEventQueue.h',
            'workers/WorkerGlobalScope.cpp',
            'workers/WorkerGlobalScope.h',
            'workers/WorkerGlobalScopeProxy.h',
            'workers/WorkerGlobalScopeProxyProvider.cpp',
            'workers/WorkerGlobalScopeProxyProvider.h',
            'workers/WorkerInspectorProxy.cpp',
            'workers/WorkerInspectorProxy.h',
            'workers/WorkerLoaderProxy.cpp',
            'workers/WorkerLoaderProxy.h',
            'workers/WorkerLocation.h',
            'workers/WorkerMessagingProxy.cpp',
            'workers/WorkerMessagingProxy.h',
            'workers/WorkerNavigator.cpp',
            'workers/WorkerNavigator.h',
            'workers/WorkerObjectProxy.cpp',
            'workers/WorkerObjectProxy.h',
            'workers/WorkerReportingProxy.h',
            'workers/WorkerScriptLoader.cpp',
            'workers/WorkerScriptLoader.h',
            'workers/WorkerThread.cpp',
            'workers/WorkerThread.h',
            'workers/WorkerThreadStartupData.cpp',
            'workers/WorkerThreadStartupData.h',
            'xml/DOMParser.cpp',
            'xml/DOMParser.h',
            'xml/DocumentXPathEvaluator.cpp',
            'xml/DocumentXPathEvaluator.h',
            'xml/DocumentXSLT.cpp',
            'xml/DocumentXSLT.h',
            'xml/NativeXPathNSResolver.cpp',
            'xml/NativeXPathNSResolver.h',
            'xml/XMLSerializer.cpp',
            'xml/XMLSerializer.h',
            'xml/XPathEvaluator.cpp',
            'xml/XPathEvaluator.h',
            'xml/XPathExpression.cpp',
            'xml/XPathExpression.h',
            'xml/XPathExpressionNode.cpp',
            'xml/XPathExpressionNode.h',
            'xml/XPathFunctions.cpp',
            'xml/XPathFunctions.h',
            'xml/XPathNSResolver.h',
            'xml/XPathNodeSet.cpp',
            'xml/XPathNodeSet.h',
            'xml/XPathParser.cpp',
            'xml/XPathParser.h',
            'xml/XPathPath.cpp',
            'xml/XPathPath.h',
            'xml/XPathPredicate.cpp',
            'xml/XPathPredicate.h',
            'xml/XPathResult.cpp',
            'xml/XPathResult.h',
            'xml/XPathStep.cpp',
            'xml/XPathStep.h',
            'xml/XPathUtil.cpp',
            'xml/XPathUtil.h',
            'xml/XPathValue.cpp',
            'xml/XPathValue.h',
            'xml/XPathVariableReference.cpp',
            'xml/XPathVariableReference.h',
            'xml/XSLImportRule.cpp',
            'xml/XSLImportRule.h',
            'xml/XSLStyleSheet.h',
            'xml/XSLStyleSheetLibxslt.cpp',
            'xml/XSLTExtensions.cpp',
            'xml/XSLTExtensions.h',
            'xml/XSLTProcessor.cpp',
            'xml/XSLTProcessor.h',
            'xml/XSLTProcessorLibxslt.cpp',
            'xml/XSLTUnicodeSort.cpp',
            'xml/XSLTUnicodeSort.h',
            'xml/parser/MarkupTokenizerInlines.h',
            'xml/parser/SharedBufferReader.cpp',
            'xml/parser/SharedBufferReader.h',
            'xml/parser/XMLDocumentParser.cpp',
            'xml/parser/XMLDocumentParser.h',
            'xml/parser/XMLDocumentParserScope.cpp',
            'xml/parser/XMLDocumentParserScope.h',
            'xml/parser/XMLErrors.cpp',
            'xml/parser/XMLErrors.h',
            'xml/parser/XMLParserInput.h',
            'xmlhttprequest/XMLHttpRequest.cpp',
            'xmlhttprequest/XMLHttpRequest.h',
            'xmlhttprequest/XMLHttpRequestEventTarget.h',
            'xmlhttprequest/XMLHttpRequestProgressEvent.h',
            'xmlhttprequest/XMLHttpRequestProgressEventThrottle.cpp',
            'xmlhttprequest/XMLHttpRequestProgressEventThrottle.h',
            'xmlhttprequest/XMLHttpRequestUpload.cpp',
            'xmlhttprequest/XMLHttpRequestUpload.h',
        ],
        'webcore_dom_files': [
            'dom/AXObjectCache.cpp',
            'dom/AXObjectCache.h',
            'dom/ActiveDOMObject.cpp',
            'dom/AddConsoleMessageTask.cpp',
            'dom/AddConsoleMessageTask.h',
            'dom/Attr.cpp',
            'dom/AttributeCollection.h',
            'dom/CDATASection.cpp',
            'dom/CDATASection.h',
            'dom/CSSSelectorWatch.cpp',
            'dom/CharacterData.cpp',
            'dom/ChildFrameDisconnector.cpp',
            'dom/ChildFrameDisconnector.h',
            'dom/ChildListMutationScope.cpp',
            'dom/ChildListMutationScope.h',
            'dom/ChildNodeList.cpp',
            'dom/ChildNodeList.h',
            'dom/ClassCollection.cpp',
            'dom/ClassCollection.h',
            'dom/ClientRect.cpp',
            'dom/ClientRect.h',
            'dom/ClientRectList.cpp',
            'dom/ClientRectList.h',
            'dom/Comment.cpp',
            'dom/Comment.h',
            'dom/CompositorProxy.cpp',
            'dom/CompositorProxy.h',
            'dom/ContainerNode.cpp',
            'dom/ContextFeatures.cpp',
            'dom/ContextFeatures.h',
            'dom/ContextLifecycleNotifier.cpp',
            'dom/ContextLifecycleNotifier.h',
            'dom/ContextLifecycleObserver.h',
            'dom/CrossThreadTask.h',
            'dom/DOMArrayBuffer.cpp',
            'dom/DOMArrayBuffer.h',
            'dom/DOMArrayBufferBase.h',
            'dom/DOMArrayBufferView.h',
            'dom/DOMArrayPiece.cpp',
            'dom/DOMArrayPiece.h',
            'dom/DOMDataView.cpp',
            'dom/DOMDataView.h',
            'dom/DOMError.cpp',
            'dom/DOMError.h',
            'dom/DOMException.cpp',
            'dom/DOMException.h',
            'dom/DOMImplementation.cpp',
            'dom/DOMMatrix.cpp',
            'dom/DOMMatrix.h',
            'dom/DOMMatrixReadOnly.cpp',
            'dom/DOMMatrixReadOnly.h',
            'dom/DOMNodeIds.cpp',
            'dom/DOMNodeIds.h',
            'dom/DOMPoint.cpp',
            'dom/DOMPoint.h',
            'dom/DOMPointReadOnly.cpp',
            'dom/DOMPointReadOnly.h',
            'dom/DOMRect.cpp',
            'dom/DOMRect.h',
            'dom/DOMRectReadOnly.cpp',
            'dom/DOMRectReadOnly.h',
            'dom/DOMSettableTokenList.cpp',
            'dom/DOMSettableTokenList.h',
            'dom/DOMSharedArrayBuffer.cpp',
            'dom/DOMSharedArrayBuffer.h',
            'dom/DOMStringList.cpp',
            'dom/DOMStringList.h',
            'dom/DOMStringMap.cpp',
            'dom/DOMStringMap.h',
            'dom/DOMTokenList.cpp',
            'dom/DOMTokenList.h',
            'dom/DOMTypedArray.cpp',
            'dom/DOMTypedArray.h',
            'dom/DOMURL.cpp',
            'dom/DOMURL.h',
            'dom/DOMURLUtils.cpp',
            'dom/DOMURLUtils.h',
            'dom/DOMURLUtilsReadOnly.cpp',
            'dom/DOMURLUtilsReadOnly.h',
            'dom/DatasetDOMStringMap.cpp',
            'dom/DatasetDOMStringMap.h',
            'dom/DecodedDataDocumentParser.cpp',
            'dom/DecodedDataDocumentParser.h',
            'dom/Document.cpp',
            'dom/DocumentEncodingData.cpp',
            'dom/DocumentEncodingData.h',
            'dom/DocumentFragment.cpp',
            'dom/DocumentFullscreen.cpp',
            'dom/DocumentFullscreen.h',
            'dom/DocumentInit.cpp',
            'dom/DocumentInit.h',
            'dom/DocumentLifecycle.cpp',
            'dom/DocumentLifecycle.h',
            'dom/DocumentLifecycleNotifier.cpp',
            'dom/DocumentLifecycleNotifier.h',
            'dom/DocumentLifecycleObserver.h',
            'dom/DocumentOrderedList.cpp',
            'dom/DocumentOrderedList.h',
            'dom/DocumentOrderedMap.cpp',
            'dom/DocumentParser.cpp',
            'dom/DocumentStyleSheetCollection.cpp',
            'dom/DocumentStyleSheetCollection.h',
            'dom/DocumentStyleSheetCollector.cpp',
            'dom/DocumentStyleSheetCollector.h',
            'dom/DocumentTiming.cpp',
            'dom/DocumentTiming.h',
            'dom/DocumentType.cpp',
            'dom/DocumentVisibilityObserver.cpp',
            'dom/Element.cpp',
            'dom/Element.h',
            'dom/ElementData.cpp',
            'dom/ElementData.h',
            'dom/ElementDataCache.cpp',
            'dom/ElementDataCache.h',
            'dom/ElementFullscreen.cpp',
            'dom/ElementFullscreen.h',
            'dom/ElementRareData.cpp',
            'dom/ElementRareData.h',
            'dom/ElementTraversal.h',
            'dom/EmptyNodeList.cpp',
            'dom/EmptyNodeList.h',
            'dom/ExecutionContext.cpp',
            'dom/ExecutionContext.h',
            'dom/ExecutionContextTask.h',
            'dom/FirstLetterPseudoElement.cpp',
            'dom/FirstLetterPseudoElement.h',
            'dom/FlexibleArrayBufferView.h',
            'dom/FrameRequestCallback.h',
            'dom/FrameRequestCallbackCollection.cpp',
            'dom/FrameRequestCallbackCollection.h',
            'dom/Fullscreen.cpp',
            'dom/Fullscreen.h',
            'dom/GlobalEventHandlers.h',
            'dom/IconURL.cpp',
            'dom/IconURL.h',
            'dom/IdleDeadline.cpp',
            'dom/IdleDeadline.h',
            'dom/IdleRequestCallback.h',
            'dom/IdTargetObserver.cpp',
            'dom/IdTargetObserver.h',
            'dom/IdTargetObserverRegistry.cpp',
            'dom/IdTargetObserverRegistry.h',
            'dom/IgnoreDestructiveWriteCountIncrementer.h',
            'dom/IncrementLoadEventDelayCount.cpp',
            'dom/IncrementLoadEventDelayCount.h',
            'dom/Iterator.h',
            'dom/LayoutTreeBuilder.cpp',
            'dom/LayoutTreeBuilder.h',
            'dom/LayoutTreeBuilderTraversal.cpp',
            'dom/LayoutTreeBuilderTraversal.h',
            'dom/LiveNodeList.cpp',
            'dom/LiveNodeList.h',
            'dom/LiveNodeListBase.cpp',
            'dom/LiveNodeListBase.h',
            'dom/MainThreadTaskRunner.cpp',
            'dom/MainThreadTaskRunner.h',
            'dom/MessageChannel.cpp',
            'dom/MessageChannel.h',
            'dom/MessagePort.cpp',
            'dom/Microtask.cpp',
            'dom/Microtask.h',
            'dom/MutationCallback.h',
            'dom/MutationObserver.cpp',
            'dom/MutationObserver.h',
            'dom/MutationObserverInterestGroup.cpp',
            'dom/MutationObserverInterestGroup.h',
            'dom/MutationObserverRegistration.cpp',
            'dom/MutationObserverRegistration.h',
            'dom/MutationRecord.cpp',
            'dom/MutationRecord.h',
            'dom/NameNodeList.cpp',
            'dom/NameNodeList.h',
            'dom/NamedNodeMap.cpp',
            'dom/Node.cpp',
            'dom/NodeChildRemovalTracker.cpp',
            'dom/NodeChildRemovalTracker.h',
            'dom/NodeComputedStyle.h',
            'dom/NodeFilter.cpp',
            'dom/NodeFilter.h',
            'dom/NodeFilterCondition.h',
            'dom/NodeIterator.cpp',
            'dom/NodeIterator.h',
            'dom/NodeIteratorBase.cpp',
            'dom/NodeIteratorBase.h',
            'dom/NodeListsNodeData.cpp',
            'dom/NodeListsNodeData.h',
            'dom/NodeRareData.cpp',
            'dom/NodeRareData.h',
            'dom/NodeTraversal.cpp',
            'dom/NodeTraversal.h',
            'dom/NodeWithIndex.h',
            'dom/NonDocumentTypeChildNode.h',
            'dom/NonElementParentNode.h',
            'dom/NthIndexCache.cpp',
            'dom/NthIndexCache.h',
            'dom/ParentNode.h',
            'dom/PendingScript.cpp',
            'dom/PresentationAttributeStyle.cpp',
            'dom/PresentationAttributeStyle.h',
            'dom/ProcessingInstruction.cpp',
            'dom/ProcessingInstruction.h',
            'dom/PseudoElement.cpp',
            'dom/QualifiedName.cpp',
            'dom/Range.cpp',
            'dom/RawDataDocumentParser.h',
            'dom/RemoteSecurityContext.cpp',
            'dom/RemoteSecurityContext.h',
            'dom/SandboxFlags.cpp',
            'dom/SandboxFlags.h',
            'dom/ScopedWindowFocusAllowedIndicator.h',
            'dom/ScriptLoader.cpp',
            'dom/ScriptLoader.h',
            'dom/ScriptRunner.cpp',
            'dom/ScriptRunner.h',
            'dom/ScriptableDocumentParser.cpp',
            'dom/ScriptableDocumentParser.h',
            'dom/ScriptedAnimationController.cpp',
            'dom/ScriptedAnimationController.h',
            'dom/ScriptedIdleTaskController.cpp',
            'dom/ScriptedIdleTaskController.h',
            'dom/SecurityContext.cpp',
            'dom/SecurityContext.h',
            'dom/SelectorQuery.cpp',
            'dom/SelectorQuery.h',
            'dom/ShadowTreeStyleSheetCollection.cpp',
            'dom/ShadowTreeStyleSheetCollection.h',
            'dom/SimulatedClickOptions.h',
            'dom/SpaceSplitString.cpp',
            'dom/StaticNodeList.h',
            'dom/StringCallback.cpp',
            'dom/StringCallback.h',
            'dom/StyleChangeReason.cpp',
            'dom/StyleChangeReason.h',
            'dom/StyleElement.cpp',
            'dom/StyleElement.h',
            'dom/StyleEngine.cpp',
            'dom/StyleEngine.h',
            'dom/StyleSheetCandidate.cpp',
            'dom/StyleSheetCandidate.h',
            'dom/StyleSheetCollection.cpp',
            'dom/StyleSheetCollection.h',
            'dom/TagCollection.cpp',
            'dom/TagCollection.h',
            'dom/Text.cpp',
            'dom/TextLinkColors.cpp',
            'dom/TextLinkColors.h',
            'dom/Touch.cpp',
            'dom/Touch.h',
            'dom/TouchList.cpp',
            'dom/TouchList.h',
            'dom/TransformSource.h',
            'dom/TransformSourceLibxslt.cpp',
            'dom/TreeScope.cpp',
            'dom/TreeScope.h',
            'dom/TreeScopeAdopter.cpp',
            'dom/TreeScopeAdopter.h',
            'dom/TreeScopeStyleSheetCollection.cpp',
            'dom/TreeScopeStyleSheetCollection.h',
            'dom/TreeShared.h',
            'dom/TreeWalker.cpp',
            'dom/TreeWalker.h',
            'dom/UserActionElementSet.cpp',
            'dom/UserActionElementSet.h',
            'dom/ViewportDescription.cpp',
            'dom/ViewportDescription.h',
            'dom/VisitedLinkState.cpp',
            'dom/VisitedLinkState.h',
            'dom/WeakIdentifierMap.h',
            'dom/XMLDocument.cpp',
            'dom/XMLDocument.h',
            'dom/custom/CustomElement.cpp',
            'dom/custom/CustomElement.h',
            'dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp',
            'dom/custom/CustomElementAsyncImportMicrotaskQueue.h',
            'dom/custom/CustomElementCallbackInvocation.cpp',
            'dom/custom/CustomElementCallbackInvocation.h',
            'dom/custom/CustomElementCallbackQueue.cpp',
            'dom/custom/CustomElementCallbackQueue.h',
            'dom/custom/CustomElementDefinition.cpp',
            'dom/custom/CustomElementDefinition.h',
            'dom/custom/CustomElementDescriptor.h',
            'dom/custom/CustomElementDescriptorHash.h',
            'dom/custom/CustomElementException.cpp',
            'dom/custom/CustomElementException.h',
            'dom/custom/CustomElementLifecycleCallbacks.h',
            'dom/custom/CustomElementMicrotaskDispatcher.cpp',
            'dom/custom/CustomElementMicrotaskDispatcher.h',
            'dom/custom/CustomElementMicrotaskImportStep.cpp',
            'dom/custom/CustomElementMicrotaskImportStep.h',
            'dom/custom/CustomElementMicrotaskQueueBase.cpp',
            'dom/custom/CustomElementMicrotaskQueueBase.h',
            'dom/custom/CustomElementMicrotaskResolutionStep.cpp',
            'dom/custom/CustomElementMicrotaskResolutionStep.h',
            'dom/custom/CustomElementMicrotaskRunQueue.cpp',
            'dom/custom/CustomElementMicrotaskRunQueue.h',
            'dom/custom/CustomElementMicrotaskStep.h',
            'dom/custom/CustomElementObserver.cpp',
            'dom/custom/CustomElementObserver.h',
            'dom/custom/CustomElementProcessingStack.cpp',
            'dom/custom/CustomElementProcessingStack.h',
            'dom/custom/CustomElementProcessingStep.h',
            'dom/custom/CustomElementRegistrationContext.cpp',
            'dom/custom/CustomElementRegistrationContext.h',
            'dom/custom/CustomElementRegistry.cpp',
            'dom/custom/CustomElementRegistry.h',
            'dom/custom/CustomElementScheduler.cpp',
            'dom/custom/CustomElementScheduler.h',
            'dom/custom/CustomElementSyncMicrotaskQueue.cpp',
            'dom/custom/CustomElementSyncMicrotaskQueue.h',
            'dom/custom/CustomElementUpgradeCandidateMap.cpp',
            'dom/custom/CustomElementUpgradeCandidateMap.h',
            'dom/shadow/ComposedTreeTraversal.cpp',
            'dom/shadow/ComposedTreeTraversal.h',
            'dom/shadow/DistributedNodes.cpp',
            'dom/shadow/DistributedNodes.h',
            'dom/shadow/ElementShadow.cpp',
            'dom/shadow/ElementShadow.h',
            'dom/shadow/InsertionPoint.cpp',
            'dom/shadow/InsertionPoint.h',
            'dom/shadow/SelectRuleFeatureSet.cpp',
            'dom/shadow/SelectRuleFeatureSet.h',
            'dom/shadow/ShadowRoot.cpp',
            'dom/shadow/ShadowRoot.h',
            'dom/shadow/ShadowRootRareData.h',
            'events/AnimationEvent.cpp',
            'events/AnimationEvent.h',
            'events/AnimationPlayerEvent.cpp',
            'events/AnimationPlayerEvent.h',
            'events/ApplicationCacheErrorEvent.cpp',
            'events/ApplicationCacheErrorEvent.h',
            'events/AutocompleteErrorEvent.h',
            'events/BeforeTextInsertedEvent.cpp',
            'events/BeforeTextInsertedEvent.h',
            'events/BeforeUnloadEvent.cpp',
            'events/BeforeUnloadEvent.h',
            'events/ClipboardEvent.cpp',
            'events/ClipboardEvent.h',
            'events/CompositionEvent.cpp',
            'events/CompositionEvent.h',
            'events/CustomEvent.cpp',
            'events/CustomEvent.h',
            'events/DOMWindowEventQueue.cpp',
            'events/DOMWindowEventQueue.h',
            'events/DragEvent.cpp',
            'events/DragEvent.h',
            'events/ErrorEvent.cpp',
            'events/ErrorEvent.h',
            'events/Event.cpp',
            'events/EventDispatchMediator.cpp',
            'events/EventDispatchMediator.h',
            'events/EventDispatcher.cpp',
            'events/EventDispatcher.h',
            'events/EventListenerMap.cpp',
            'events/EventPath.cpp',
            'events/EventPath.h',
            'events/EventQueue.h',
            'events/EventSender.h',
            'events/EventTarget.cpp',
            'events/FocusEvent.cpp',
            'events/FocusEvent.h',
            'events/GenericEventQueue.cpp',
            'events/GenericEventQueue.h',
            'events/GestureEvent.cpp',
            'events/GestureEvent.h',
            'events/HashChangeEvent.h',
            'events/KeyboardEvent.cpp',
            'events/MessageEvent.cpp',
            'events/MessageEvent.h',
            'events/MouseEvent.cpp',
            'events/MouseRelatedEvent.cpp',
            'events/MutationEvent.cpp',
            'events/MutationEvent.h',
            'events/NavigatorEvents.cpp',
            'events/NavigatorEvents.h',
            'events/NodeEventContext.cpp',
            'events/NodeEventContext.h',
            'events/PageTransitionEvent.cpp',
            'events/PageTransitionEvent.h',
            'events/PointerEvent.cpp',
            'events/PointerEvent.h',
            'events/PointerIdManager.cpp',
            'events/PointerIdManager.h',
            'events/PopStateEvent.cpp',
            'events/PopStateEvent.h',
            'events/ProgressEvent.cpp',
            'events/ProgressEvent.h',
            'events/PromiseRejectionEvent.cpp',
            'events/PromiseRejectionEvent.h',
            'events/RelatedEvent.cpp',
            'events/RelatedEvent.h',
            'events/ResourceProgressEvent.cpp',
            'events/ResourceProgressEvent.h',
            'events/ScopedEventQueue.cpp',
            'events/ScopedEventQueue.h',
            'events/SecurityPolicyViolationEvent.h',
            'events/TextEvent.cpp',
            'events/TextEvent.h',
            'events/TouchEvent.cpp',
            'events/TouchEvent.h',
            'events/TouchEventContext.cpp',
            'events/TouchEventContext.h',
            'events/TransitionEvent.cpp',
            'events/TransitionEvent.h',
            'events/TreeScopeEventContext.cpp',
            'events/TreeScopeEventContext.h',
            'events/UIEvent.cpp',
            'events/UIEventWithKeyState.cpp',
            'events/WheelEvent.cpp',
            'events/WheelEvent.h',
            'events/WindowEventContext.cpp',
            'events/WindowEventContext.h',
            'input/EventHandler.cpp',
            'input/EventHandler.h',
            'input/InputDeviceCapabilities.cpp',
            'input/InputDeviceCapabilities.h',
            'input/TouchActionUtil.cpp',
            'input/TouchActionUtil.h',
        ],
        'webcore_html_files': [
            'html/AutoplayExperimentConfig.cpp',
            'html/AutoplayExperimentConfig.h',
            'html/AutoplayExperimentHelper.cpp',
            'html/AutoplayExperimentHelper.h',
            'html/ClassList.cpp',
            'html/ClassList.h',
            'html/CrossOriginAttribute.cpp',
            'html/CrossOriginAttribute.h',
            'html/DocumentNameCollection.cpp',
            'html/DocumentNameCollection.h',
            'html/FormAssociatedElement.cpp',
            'html/FormData.cpp',
            'html/FormData.h',
            'html/HTMLAllCollection.cpp',
            'html/HTMLAllCollection.h',
            'html/HTMLAnchorElement.cpp',
            'html/HTMLAnchorElement.h',
            'html/HTMLAreaElement.cpp',
            'html/HTMLAreaElement.h',
            'html/HTMLAudioElement.cpp',
            'html/HTMLAudioElement.h',
            'html/HTMLBDIElement.h',
            'html/HTMLBRElement.cpp',
            'html/HTMLBRElement.h',
            'html/HTMLBaseElement.cpp',
            'html/HTMLBaseElement.h',
            'html/HTMLBodyElement.cpp',
            'html/HTMLBodyElement.h',
            'html/HTMLButtonElement.cpp',
            'html/HTMLButtonElement.h',
            'html/HTMLCanvasElement.cpp',
            'html/HTMLCanvasElement.h',
            'html/HTMLCollection.cpp',
            'html/HTMLContentElement.cpp',
            'html/HTMLContentElement.h',
            'html/HTMLDListElement.cpp',
            'html/HTMLDListElement.h',
            'html/HTMLDataListElement.cpp',
            'html/HTMLDataListElement.h',
            'html/HTMLDetailsElement.cpp',
            'html/HTMLDetailsElement.h',
            'html/HTMLDialogElement.cpp',
            'html/HTMLDialogElement.h',
            'html/HTMLDimension.cpp',
            'html/HTMLDimension.h',
            'html/HTMLDirectoryElement.cpp',
            'html/HTMLDirectoryElement.h',
            'html/HTMLDivElement.cpp',
            'html/HTMLDivElement.h',
            'html/HTMLDocument.cpp',
            'html/HTMLElement.cpp',
            'html/HTMLEmbedElement.cpp',
            'html/HTMLEmbedElement.h',
            'html/HTMLFieldSetElement.cpp',
            'html/HTMLFieldSetElement.h',
            'html/HTMLFontElement.cpp',
            'html/HTMLFontElement.h',
            'html/HTMLFormControlElement.cpp',
            'html/HTMLFormControlElementWithState.cpp',
            'html/HTMLFormControlsCollection.cpp',
            'html/HTMLFormControlsCollection.h',
            'html/HTMLFormElement.cpp',
            'html/HTMLFrameElement.cpp',
            'html/HTMLFrameElementBase.cpp',
            'html/HTMLFrameOwnerElement.cpp',
            'html/HTMLFrameSetElement.cpp',
            'html/HTMLFrameSetElement.h',
            'html/HTMLHRElement.cpp',
            'html/HTMLHRElement.h',
            'html/HTMLHeadElement.cpp',
            'html/HTMLHeadingElement.cpp',
            'html/HTMLHeadingElement.h',
            'html/HTMLHtmlElement.cpp',
            'html/HTMLHtmlElement.h',
            'html/HTMLIFrameElement.cpp',
            'html/HTMLImageElement.cpp',
            'html/HTMLImageElement.h',
            'html/HTMLImageFallbackHelper.h',
            'html/HTMLImageFallbackHelper.cpp',
            'html/HTMLImageLoader.cpp',
            'html/HTMLImageLoader.h',
            'html/HTMLInputElement.cpp',
            'html/HTMLKeygenElement.cpp',
            'html/HTMLKeygenElement.h',
            'html/HTMLLIElement.cpp',
            'html/HTMLLIElement.h',
            'html/HTMLLabelElement.cpp',
            'html/HTMLLabelElement.h',
            'html/HTMLLegendElement.cpp',
            'html/HTMLLegendElement.h',
            'html/HTMLLinkElement.cpp',
            'html/HTMLLinkElement.h',
            'html/HTMLMapElement.cpp',
            'html/HTMLMapElement.h',
            'html/HTMLMarqueeElement.cpp',
            'html/HTMLMarqueeElement.h',
            'html/HTMLMediaElement.cpp',
            'html/HTMLMediaSource.cpp',
            'html/HTMLMediaSource.h',
            'html/HTMLMenuElement.cpp',
            'html/HTMLMenuElement.h',
            'html/HTMLMenuItemElement.cpp',
            'html/HTMLMenuItemElement.h',
            'html/HTMLMetaElement.h',
            'html/HTMLMeterElement.cpp',
            'html/HTMLMeterElement.h',
            'html/HTMLModElement.cpp',
            'html/HTMLModElement.h',
            'html/HTMLNameCollection.cpp',
            'html/HTMLNameCollection.h',
            'html/HTMLNoEmbedElement.cpp',
            'html/HTMLNoEmbedElement.h',
            'html/HTMLNoScriptElement.cpp',
            'html/HTMLNoScriptElement.h',
            'html/HTMLOListElement.cpp',
            'html/HTMLOListElement.h',
            'html/HTMLObjectElement.cpp',
            'html/HTMLObjectElement.h',
            'html/HTMLOptGroupElement.cpp',
            'html/HTMLOptGroupElement.h',
            'html/HTMLOptionElement.cpp',
            'html/HTMLOptionElement.h',
            'html/HTMLOptionsCollection.cpp',
            'html/HTMLOptionsCollection.h',
            'html/HTMLOutputElement.cpp',
            'html/HTMLOutputElement.h',
            'html/HTMLParagraphElement.cpp',
            'html/HTMLParagraphElement.h',
            'html/HTMLParamElement.cpp',
            'html/HTMLParamElement.h',
            'html/HTMLPictureElement.cpp',
            'html/HTMLPlugInElement.cpp',
            'html/HTMLPlugInElement.h',
            'html/HTMLPreElement.cpp',
            'html/HTMLPreElement.h',
            'html/HTMLProgressElement.cpp',
            'html/HTMLProgressElement.h',
            'html/HTMLQuoteElement.cpp',
            'html/HTMLQuoteElement.h',
            'html/HTMLRTElement.cpp',
            'html/HTMLRTElement.h',
            'html/HTMLRubyElement.cpp',
            'html/HTMLRubyElement.h',
            'html/HTMLScriptElement.cpp',
            'html/HTMLScriptElement.h',
            'html/HTMLSelectElement.cpp',
            'html/HTMLSelectElement.h',
            'html/HTMLShadowElement.cpp',
            'html/HTMLShadowElement.h',
            'html/HTMLSourceElement.cpp',
            'html/HTMLSourceElement.h',
            'html/HTMLSpanElement.cpp',
            'html/HTMLSpanElement.h',
            'html/HTMLStyleElement.cpp',
            'html/HTMLStyleElement.h',
            'html/HTMLSummaryElement.cpp',
            'html/HTMLSummaryElement.h',
            'html/HTMLTableCaptionElement.cpp',
            'html/HTMLTableCaptionElement.h',
            'html/HTMLTableCellElement.cpp',
            'html/HTMLTableColElement.cpp',
            'html/HTMLTableColElement.h',
            'html/HTMLTableElement.cpp',
            'html/HTMLTableElement.h',
            'html/HTMLTablePartElement.cpp',
            'html/HTMLTableRowElement.cpp',
            'html/HTMLTableRowElement.h',
            'html/HTMLTableRowsCollection.cpp',
            'html/HTMLTableRowsCollection.h',
            'html/HTMLTableSectionElement.cpp',
            'html/HTMLTableSectionElement.h',
            'html/HTMLTagCollection.cpp',
            'html/HTMLTagCollection.h',
            'html/HTMLTemplateElement.cpp',
            'html/HTMLTemplateElement.h',
            'html/HTMLTextAreaElement.cpp',
            'html/HTMLTextFormControlElement.cpp',
            'html/HTMLTitleElement.cpp',
            'html/HTMLTitleElement.h',
            'html/HTMLTrackElement.cpp',
            'html/HTMLTrackElement.h',
            'html/HTMLUListElement.cpp',
            'html/HTMLUListElement.h',
            'html/HTMLUnknownElement.h',
            'html/HTMLVideoElement.cpp',
            'html/HTMLVideoElement.h',
            'html/HTMLViewSourceDocument.cpp',
            'html/HTMLViewSourceDocument.h',
            'html/HTMLWBRElement.cpp',
            'html/HTMLWBRElement.h',
            'html/ImageData.cpp',
            'html/ImageData.h',
            'html/ImageDocument.cpp',
            'html/ImageDocument.h',
            'html/LabelableElement.cpp',
            'html/LabelsNodeList.cpp',
            'html/LabelsNodeList.h',
            'html/LinkManifest.cpp',
            'html/LinkManifest.h',
            'html/LinkRelAttribute.cpp',
            'html/LinkRelAttribute.h',
            'html/LinkResource.cpp',
            'html/LinkResource.h',
            'html/MediaController.cpp',
            'html/MediaController.h',
            'html/MediaDocument.cpp',
            'html/MediaDocument.h',
            'html/MediaError.h',
            'html/MediaFragmentURIParser.cpp',
            'html/MediaFragmentURIParser.h',
            'html/MediaKeyError.h',
            'html/MediaKeyEvent.cpp',
            'html/MediaKeyEvent.h',
            'html/PluginDocument.cpp',
            'html/PluginDocument.h',
            'html/PublicURLManager.cpp',
            'html/PublicURLManager.h',
            'html/RadioNodeList.cpp',
            'html/RadioNodeList.h',
            'html/TextDocument.cpp',
            'html/TextDocument.h',
            'html/TextMetrics.h',
            'html/TimeRanges.cpp',
            'html/TimeRanges.h',
            'html/URLRegistry.h',
            'html/ValidityState.cpp',
            'html/ValidityState.h',
            'html/WindowNameCollection.cpp',
            'html/WindowNameCollection.h',
            'html/canvas/CanvasFontCache.cpp',
            'html/canvas/CanvasFontCache.h',
            'html/canvas/CanvasImageSource.h',
            'html/canvas/CanvasRenderingContext.cpp',
            'html/canvas/CanvasRenderingContext.h',
            'html/canvas/CanvasRenderingContextFactory.h',
            'html/forms/BaseButtonInputType.cpp',
            'html/forms/BaseButtonInputType.h',
            'html/forms/BaseCheckableInputType.cpp',
            'html/forms/BaseCheckableInputType.h',
            'html/forms/BaseChooserOnlyDateAndTimeInputType.cpp',
            'html/forms/BaseChooserOnlyDateAndTimeInputType.h',
            'html/forms/BaseClickableWithKeyInputType.cpp',
            'html/forms/BaseClickableWithKeyInputType.h',
            'html/forms/BaseDateAndTimeInputType.cpp',
            'html/forms/BaseDateAndTimeInputType.h',
            'html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp',
            'html/forms/BaseMultipleFieldsDateAndTimeInputType.h',
            'html/forms/BaseTextInputType.cpp',
            'html/forms/BaseTextInputType.h',
            'html/forms/ButtonInputType.cpp',
            'html/forms/ButtonInputType.h',
            'html/forms/CheckboxInputType.cpp',
            'html/forms/CheckboxInputType.h',
            'html/forms/ColorChooser.cpp',
            'html/forms/ColorChooser.h',
            'html/forms/ColorChooserClient.cpp',
            'html/forms/ColorChooserClient.h',
            'html/forms/ColorInputType.cpp',
            'html/forms/ColorInputType.h',
            'html/forms/DateInputType.cpp',
            'html/forms/DateInputType.h',
            'html/forms/DateTimeChooser.cpp',
            'html/forms/DateTimeChooser.h',
            'html/forms/DateTimeChooserClient.cpp',
            'html/forms/DateTimeChooserClient.h',
            'html/forms/DateTimeFieldsState.cpp',
            'html/forms/DateTimeFieldsState.h',
            'html/forms/DateTimeLocalInputType.cpp',
            'html/forms/DateTimeLocalInputType.h',
            'html/forms/EmailInputType.cpp',
            'html/forms/EmailInputType.h',
            'html/forms/FileInputType.cpp',
            'html/forms/FileInputType.h',
            'html/forms/FormController.cpp',
            'html/forms/FormController.h',
            'html/forms/HiddenInputType.cpp',
            'html/forms/HiddenInputType.h',
            'html/forms/ImageInputType.cpp',
            'html/forms/ImageInputType.h',
            'html/forms/InputType.cpp',
            'html/forms/InputType.h',
            'html/forms/InputTypeView.cpp',
            'html/forms/InputTypeView.h',
            'html/forms/MonthInputType.cpp',
            'html/forms/MonthInputType.h',
            'html/forms/NumberInputType.cpp',
            'html/forms/NumberInputType.h',
            'html/forms/PasswordInputType.cpp',
            'html/forms/PasswordInputType.h',
            'html/forms/RadioButtonGroupScope.cpp',
            'html/forms/RadioButtonGroupScope.h',
            'html/forms/RadioInputType.cpp',
            'html/forms/RadioInputType.h',
            'html/forms/RangeInputType.cpp',
            'html/forms/RangeInputType.h',
            'html/forms/ResetInputType.cpp',
            'html/forms/ResetInputType.h',
            'html/forms/SearchInputType.cpp',
            'html/forms/SearchInputType.h',
            'html/forms/StepRange.cpp',
            'html/forms/StepRange.h',
            'html/forms/SubmitInputType.cpp',
            'html/forms/SubmitInputType.h',
            'html/forms/TelephoneInputType.cpp',
            'html/forms/TelephoneInputType.h',
            'html/forms/TextFieldInputType.cpp',
            'html/forms/TextFieldInputType.h',
            'html/forms/TextInputType.cpp',
            'html/forms/TextInputType.h',
            'html/forms/TimeInputType.cpp',
            'html/forms/TimeInputType.h',
            'html/forms/TypeAhead.cpp',
            'html/forms/TypeAhead.h',
            'html/forms/URLInputType.cpp',
            'html/forms/URLInputType.h',
            'html/forms/WeekInputType.cpp',
            'html/forms/WeekInputType.h',
            'html/imports/HTMLImport.cpp',
            'html/imports/HTMLImport.h',
            'html/imports/HTMLImportChild.cpp',
            'html/imports/HTMLImportChild.h',
            'html/imports/HTMLImportChildClient.h',
            'html/imports/HTMLImportLoader.cpp',
            'html/imports/HTMLImportLoader.h',
            'html/imports/HTMLImportState.h',
            'html/imports/HTMLImportStateResolver.cpp',
            'html/imports/HTMLImportStateResolver.h',
            'html/imports/HTMLImportTreeRoot.cpp',
            'html/imports/HTMLImportTreeRoot.h',
            'html/imports/HTMLImportsController.cpp',
            'html/imports/HTMLImportsController.h',
            'html/imports/LinkImport.cpp',
            'html/imports/LinkImport.h',
            'html/parser/AtomicHTMLToken.h',
            'html/parser/BackgroundHTMLInputStream.cpp',
            'html/parser/BackgroundHTMLInputStream.h',
            'html/parser/BackgroundHTMLParser.cpp',
            'html/parser/BackgroundHTMLParser.h',
            'html/parser/CSSPreloadScanner.cpp',
            'html/parser/CSSPreloadScanner.h',
            'html/parser/CompactHTMLToken.cpp',
            'html/parser/CompactHTMLToken.h',
            'html/parser/HTMLConstructionSite.cpp',
            'html/parser/HTMLConstructionSite.h',
            'html/parser/HTMLDocumentParser.cpp',
            'html/parser/HTMLDocumentParser.h',
            'html/parser/HTMLElementStack.cpp',
            'html/parser/HTMLElementStack.h',
            'html/parser/HTMLEntityParser.cpp',
            'html/parser/HTMLEntityParser.h',
            'html/parser/HTMLEntitySearch.cpp',
            'html/parser/HTMLEntitySearch.h',
            'html/parser/HTMLEntityTable.h',
            'html/parser/HTMLFormattingElementList.cpp',
            'html/parser/HTMLFormattingElementList.h',
            'html/parser/HTMLInputStream.h',
            'html/parser/HTMLMetaCharsetParser.cpp',
            'html/parser/HTMLMetaCharsetParser.h',
            'html/parser/HTMLParserIdioms.cpp',
            'html/parser/HTMLParserOptions.cpp',
            'html/parser/HTMLParserOptions.h',
            'html/parser/HTMLParserScheduler.cpp',
            'html/parser/HTMLParserScheduler.h',
            'html/parser/HTMLParserThread.cpp',
            'html/parser/HTMLParserThread.h',
            'html/parser/HTMLPreloadScanner.cpp',
            'html/parser/HTMLPreloadScanner.h',
            'html/parser/HTMLResourcePreloader.cpp',
            'html/parser/HTMLResourcePreloader.h',
            'html/parser/HTMLScriptRunner.cpp',
            'html/parser/HTMLScriptRunner.h',
            'html/parser/HTMLScriptRunnerHost.h',
            'html/parser/HTMLSourceTracker.cpp',
            'html/parser/HTMLSourceTracker.h',
            'html/parser/HTMLSrcsetParser.cpp',
            'html/parser/HTMLSrcsetParser.h',
            'html/parser/HTMLStackItem.h',
            'html/parser/HTMLToken.h',
            'html/parser/HTMLTokenizer.cpp',
            'html/parser/HTMLTokenizer.h',
            'html/parser/HTMLTreeBuilder.cpp',
            'html/parser/HTMLTreeBuilder.h',
            'html/parser/HTMLTreeBuilderSimulator.cpp',
            'html/parser/HTMLTreeBuilderSimulator.h',
            'html/parser/HTMLViewSourceParser.cpp',
            'html/parser/HTMLViewSourceParser.h',
            'html/parser/InputStreamPreprocessor.h',
            'html/parser/NestingLevelIncrementer.h',
            'html/parser/PreloadRequest.cpp',
            'html/parser/ResourcePreloader.cpp',
            'html/parser/TextDocumentParser.cpp',
            'html/parser/TextDocumentParser.h',
            'html/parser/TextResourceDecoder.cpp',
            'html/parser/TextResourceDecoder.h',
            'html/parser/XSSAuditor.cpp',
            'html/parser/XSSAuditor.h',
            'html/parser/XSSAuditorDelegate.cpp',
            'html/parser/XSSAuditorDelegate.h',
            'html/shadow/ClearButtonElement.cpp',
            'html/shadow/ClearButtonElement.h',
            'html/shadow/DateTimeEditElement.cpp',
            'html/shadow/DateTimeEditElement.h',
            'html/shadow/DateTimeFieldElement.cpp',
            'html/shadow/DateTimeFieldElement.h',
            'html/shadow/DateTimeFieldElements.cpp',
            'html/shadow/DateTimeFieldElements.h',
            'html/shadow/DateTimeNumericFieldElement.cpp',
            'html/shadow/DateTimeNumericFieldElement.h',
            'html/shadow/DateTimeSymbolicFieldElement.cpp',
            'html/shadow/DateTimeSymbolicFieldElement.h',
            'html/shadow/DetailsMarkerControl.cpp',
            'html/shadow/DetailsMarkerControl.h',
            'html/shadow/MediaControlElementTypes.cpp',
            'html/shadow/MediaControlElementTypes.h',
            'html/shadow/MediaControlElements.cpp',
            'html/shadow/MediaControlElements.h',
            'html/shadow/MediaControls.cpp',
            'html/shadow/MediaControls.h',
            'html/shadow/MeterShadowElement.cpp',
            'html/shadow/MeterShadowElement.h',
            'html/shadow/PickerIndicatorElement.cpp',
            'html/shadow/PickerIndicatorElement.h',
            'html/shadow/ProgressShadowElement.cpp',
            'html/shadow/ProgressShadowElement.h',
            'html/shadow/ShadowElementNames.cpp',
            'html/shadow/ShadowElementNames.h',
            'html/shadow/SliderThumbElement.cpp',
            'html/shadow/SliderThumbElement.h',
            'html/shadow/SpinButtonElement.cpp',
            'html/shadow/SpinButtonElement.h',
            'html/shadow/TextControlInnerElements.cpp',
            'html/shadow/TextControlInnerElements.h',
            'html/track/AudioTrack.cpp',
            'html/track/AudioTrack.h',
            'html/track/AudioTrackList.cpp',
            'html/track/AudioTrackList.h',
            'html/track/AutomaticTrackSelection.cpp',
            'html/track/AutomaticTrackSelection.h',
            'html/track/CueTimeline.cpp',
            'html/track/CueTimeline.h',
            'html/track/InbandTextTrack.cpp',
            'html/track/InbandTextTrack.h',
            'html/track/LoadableTextTrack.cpp',
            'html/track/LoadableTextTrack.h',
            'html/track/TextTrack.cpp',
            'html/track/TextTrack.h',
            'html/track/TextTrackContainer.cpp',
            'html/track/TextTrackContainer.h',
            'html/track/TextTrackCue.cpp',
            'html/track/TextTrackCue.h',
            'html/track/TextTrackCueList.cpp',
            'html/track/TextTrackCueList.h',
            'html/track/TextTrackList.cpp',
            'html/track/TrackBase.cpp',
            'html/track/TrackBase.h',
            'html/track/TrackEvent.cpp',
            'html/track/TrackListBase.h',
            'html/track/VideoTrack.cpp',
            'html/track/VideoTrack.h',
            'html/track/VideoTrackList.cpp',
            'html/track/VideoTrackList.h',
            'html/track/vtt/BufferedLineReader.cpp',
            'html/track/vtt/BufferedLineReader.h',
            'html/track/vtt/VTTCue.cpp',
            'html/track/vtt/VTTCue.h',
            'html/track/vtt/VTTElement.cpp',
            'html/track/vtt/VTTElement.h',
            'html/track/vtt/VTTParser.cpp',
            'html/track/vtt/VTTParser.h',
            'html/track/vtt/VTTRegion.cpp',
            'html/track/vtt/VTTRegion.h',
            'html/track/vtt/VTTRegionList.cpp',
            'html/track/vtt/VTTRegionList.h',
            'html/track/vtt/VTTScanner.cpp',
            'html/track/vtt/VTTScanner.h',
            'html/track/vtt/VTTToken.h',
            'html/track/vtt/VTTTokenizer.cpp',
            'html/track/vtt/VTTTokenizer.h',
        ],
        'webcore_svg_files': [
            'style/SVGComputedStyle.cpp',
            'style/SVGComputedStyleDefs.cpp',
            'layout/svg/ReferenceFilterBuilder.cpp',
            'layout/svg/ReferenceFilterBuilder.h',
            'layout/svg/LayoutSVGBlock.cpp',
            'layout/svg/LayoutSVGBlock.h',
            'layout/svg/LayoutSVGContainer.cpp',
            'layout/svg/LayoutSVGContainer.h',
            'layout/svg/LayoutSVGEllipse.cpp',
            'layout/svg/LayoutSVGEllipse.h',
            'layout/svg/LayoutSVGForeignObject.cpp',
            'layout/svg/LayoutSVGForeignObject.h',
            'layout/svg/LayoutSVGGradientStop.cpp',
            'layout/svg/LayoutSVGGradientStop.h',
            'layout/svg/LayoutSVGHiddenContainer.cpp',
            'layout/svg/LayoutSVGHiddenContainer.h',
            'layout/svg/LayoutSVGImage.cpp',
            'layout/svg/LayoutSVGImage.h',
            'layout/svg/LayoutSVGInline.cpp',
            'layout/svg/LayoutSVGInline.h',
            'layout/svg/LayoutSVGInlineText.cpp',
            'layout/svg/LayoutSVGInlineText.h',
            'layout/svg/LayoutSVGModelObject.cpp',
            'layout/svg/LayoutSVGModelObject.h',
            'layout/svg/LayoutSVGPath.cpp',
            'layout/svg/LayoutSVGPath.h',
            'layout/svg/LayoutSVGRect.cpp',
            'layout/svg/LayoutSVGRect.h',
            'layout/svg/LayoutSVGResourceClipper.cpp',
            'layout/svg/LayoutSVGResourceClipper.h',
            'layout/svg/LayoutSVGResourceContainer.cpp',
            'layout/svg/LayoutSVGResourceContainer.h',
            'layout/svg/LayoutSVGResourceFilter.cpp',
            'layout/svg/LayoutSVGResourceFilter.h',
            'layout/svg/LayoutSVGResourceFilterPrimitive.cpp',
            'layout/svg/LayoutSVGResourceFilterPrimitive.h',
            'layout/svg/LayoutSVGResourceGradient.cpp',
            'layout/svg/LayoutSVGResourceGradient.h',
            'layout/svg/LayoutSVGResourceLinearGradient.cpp',
            'layout/svg/LayoutSVGResourceLinearGradient.h',
            'layout/svg/LayoutSVGResourceMarker.cpp',
            'layout/svg/LayoutSVGResourceMarker.h',
            'layout/svg/LayoutSVGResourceMasker.cpp',
            'layout/svg/LayoutSVGResourceMasker.h',
            'layout/svg/LayoutSVGResourcePaintServer.cpp',
            'layout/svg/LayoutSVGResourcePaintServer.h',
            'layout/svg/LayoutSVGResourcePattern.cpp',
            'layout/svg/LayoutSVGResourcePattern.h',
            'layout/svg/LayoutSVGResourceRadialGradient.cpp',
            'layout/svg/LayoutSVGResourceRadialGradient.h',
            'layout/svg/LayoutSVGRoot.cpp',
            'layout/svg/LayoutSVGRoot.h',
            'layout/svg/LayoutSVGShape.cpp',
            'layout/svg/LayoutSVGShape.h',
            'layout/svg/LayoutSVGText.cpp',
            'layout/svg/LayoutSVGText.h',
            'layout/svg/LayoutSVGTextPath.cpp',
            'layout/svg/LayoutSVGTextPath.h',
            'layout/svg/LayoutSVGTransformableContainer.cpp',
            'layout/svg/LayoutSVGTransformableContainer.h',
            'layout/svg/LayoutSVGTSpan.cpp',
            'layout/svg/LayoutSVGTSpan.h',
            'layout/svg/LayoutSVGViewportContainer.cpp',
            'layout/svg/LayoutSVGViewportContainer.h',
            'layout/svg/SVGLayoutSupport.cpp',
            'layout/svg/SVGLayoutSupport.h',
            'layout/svg/SVGLayoutTreeAsText.cpp',
            'layout/svg/SVGLayoutTreeAsText.h',
            'layout/svg/SVGMarkerData.h',
            'layout/svg/SVGResources.cpp',
            'layout/svg/SVGResources.h',
            'layout/svg/SVGResourcesCache.cpp',
            'layout/svg/SVGResourcesCycleSolver.cpp',
            'layout/svg/SVGResourcesCycleSolver.h',
            'layout/svg/SVGTextChunkBuilder.cpp',
            'layout/svg/SVGTextChunkBuilder.h',
            'layout/svg/SVGTextFragment.h',
            'layout/svg/SVGTextLayoutAttributes.cpp',
            'layout/svg/SVGTextLayoutAttributes.h',
            'layout/svg/SVGTextLayoutAttributesBuilder.cpp',
            'layout/svg/SVGTextLayoutAttributesBuilder.h',
            'layout/svg/SVGTextLayoutEngine.cpp',
            'layout/svg/SVGTextLayoutEngine.h',
            'layout/svg/SVGTextLayoutEngineBaseline.cpp',
            'layout/svg/SVGTextLayoutEngineBaseline.h',
            'layout/svg/SVGTextLayoutEngineSpacing.cpp',
            'layout/svg/SVGTextLayoutEngineSpacing.h',
            'layout/svg/SVGTextMetrics.cpp',
            'layout/svg/SVGTextMetrics.h',
            'layout/svg/SVGTextMetricsBuilder.cpp',
            'layout/svg/SVGTextMetricsBuilder.h',
            'layout/svg/SVGTextQuery.cpp',
            'layout/svg/SVGTextQuery.h',
            'svg/ColorDistance.cpp',
            'svg/ColorDistance.h',
            'svg/GradientAttributes.h',
            'svg/LinearGradientAttributes.h',
            'svg/PatternAttributes.h',
            'svg/RadialGradientAttributes.h',
            'svg/SVGAElement.cpp',
            'svg/SVGAElement.h',
            'svg/SVGAngle.cpp',
            'svg/SVGAngleTearOff.cpp',
            'svg/SVGAnimateElement.cpp',
            'svg/SVGAnimateElement.h',
            'svg/SVGAnimateMotionElement.cpp',
            'svg/SVGAnimateMotionElement.h',
            'svg/SVGAnimateTransformElement.cpp',
            'svg/SVGAnimateTransformElement.h',
            'svg/SVGAnimatedAngle.cpp',
            'svg/SVGAnimatedColor.cpp',
            'svg/SVGAnimatedEnumerationBase.cpp',
            'svg/SVGAnimatedInteger.cpp',
            'svg/SVGAnimatedIntegerOptionalInteger.cpp',
            'svg/SVGAnimatedLength.cpp',
            'svg/SVGAnimatedNumber.cpp',
            'svg/SVGAnimatedNumberOptionalNumber.cpp',
            'svg/SVGAnimatedPath.cpp',
            'svg/SVGAnimatedString.cpp',
            'svg/SVGAnimatedString.h',
            'svg/SVGAnimatedTypeAnimator.cpp',
            'svg/SVGAnimatedTypeAnimator.h',
            'svg/SVGAnimationElement.cpp',
            'svg/SVGAnimationElement.h',
            'svg/SVGBoolean.cpp',
            'svg/SVGBoolean.h',
            'svg/SVGCircleElement.cpp',
            'svg/SVGCircleElement.h',
            'svg/SVGClipPathElement.cpp',
            'svg/SVGClipPathElement.h',
            'svg/SVGComponentTransferFunctionElement.cpp',
            'svg/SVGComponentTransferFunctionElement.h',
            'svg/SVGCursorElement.cpp',
            'svg/SVGCursorElement.h',
            'svg/SVGDefsElement.cpp',
            'svg/SVGDefsElement.h',
            'svg/SVGDescElement.cpp',
            'svg/SVGDescElement.h',
            'svg/SVGDiscardElement.cpp',
            'svg/SVGDiscardElement.h',
            'svg/SVGDocumentExtensions.cpp',
            'svg/SVGElement.cpp',
            'svg/SVGElementRareData.cpp',
            'svg/SVGElementRareData.h',
            'svg/SVGEllipseElement.cpp',
            'svg/SVGEllipseElement.h',
            'svg/SVGEnumeration.cpp',
            'svg/SVGFEBlendElement.cpp',
            'svg/SVGFEBlendElement.h',
            'svg/SVGFEColorMatrixElement.cpp',
            'svg/SVGFEColorMatrixElement.h',
            'svg/SVGFEComponentTransferElement.cpp',
            'svg/SVGFEComponentTransferElement.h',
            'svg/SVGFECompositeElement.cpp',
            'svg/SVGFECompositeElement.h',
            'svg/SVGFEConvolveMatrixElement.cpp',
            'svg/SVGFEConvolveMatrixElement.h',
            'svg/SVGFEDiffuseLightingElement.cpp',
            'svg/SVGFEDiffuseLightingElement.h',
            'svg/SVGFEDisplacementMapElement.cpp',
            'svg/SVGFEDisplacementMapElement.h',
            'svg/SVGFEDistantLightElement.cpp',
            'svg/SVGFEDistantLightElement.h',
            'svg/SVGFEDropShadowElement.cpp',
            'svg/SVGFEDropShadowElement.h',
            'svg/SVGFEFloodElement.cpp',
            'svg/SVGFEFloodElement.h',
            'svg/SVGFEFuncAElement.cpp',
            'svg/SVGFEFuncAElement.h',
            'svg/SVGFEFuncBElement.cpp',
            'svg/SVGFEFuncBElement.h',
            'svg/SVGFEFuncGElement.cpp',
            'svg/SVGFEFuncGElement.h',
            'svg/SVGFEFuncRElement.cpp',
            'svg/SVGFEFuncRElement.h',
            'svg/SVGFEGaussianBlurElement.cpp',
            'svg/SVGFEGaussianBlurElement.h',
            'svg/SVGFEImageElement.cpp',
            'svg/SVGFEImageElement.h',
            'svg/SVGFELightElement.cpp',
            'svg/SVGFELightElement.h',
            'svg/SVGFEMergeElement.cpp',
            'svg/SVGFEMergeElement.h',
            'svg/SVGFEMergeNodeElement.cpp',
            'svg/SVGFEMergeNodeElement.h',
            'svg/SVGFEMorphologyElement.cpp',
            'svg/SVGFEMorphologyElement.h',
            'svg/SVGFEOffsetElement.cpp',
            'svg/SVGFEOffsetElement.h',
            'svg/SVGFEPointLightElement.cpp',
            'svg/SVGFEPointLightElement.h',
            'svg/SVGFESpecularLightingElement.cpp',
            'svg/SVGFESpecularLightingElement.h',
            'svg/SVGFESpotLightElement.cpp',
            'svg/SVGFESpotLightElement.h',
            'svg/SVGFETileElement.cpp',
            'svg/SVGFETileElement.h',
            'svg/SVGFETurbulenceElement.cpp',
            'svg/SVGFETurbulenceElement.h',
            'svg/SVGFilterElement.cpp',
            'svg/SVGFilterElement.h',
            'svg/SVGFilterPrimitiveStandardAttributes.cpp',
            'svg/SVGFilterPrimitiveStandardAttributes.h',
            'svg/SVGFitToViewBox.cpp',
            'svg/SVGFitToViewBox.h',
            'svg/SVGForeignObjectElement.cpp',
            'svg/SVGForeignObjectElement.h',
            'svg/SVGGElement.cpp',
            'svg/SVGGElement.h',
            'svg/SVGGeometryElement.cpp',
            'svg/SVGGeometryElement.h',
            'svg/SVGGradientElement.cpp',
            'svg/SVGGradientElement.h',
            'svg/SVGGraphicsElement.cpp',
            'svg/SVGGraphicsElement.h',
            'svg/SVGImageElement.cpp',
            'svg/SVGImageElement.h',
            'svg/SVGImageLoader.cpp',
            'svg/SVGImageLoader.h',
            'svg/SVGInteger.cpp',
            'svg/SVGInteger.h',
            'svg/SVGIntegerOptionalInteger.cpp',
            'svg/SVGIntegerOptionalInteger.h',
            'svg/SVGLength.cpp',
            'svg/SVGLengthContext.cpp',
            'svg/SVGLengthList.cpp',
            'svg/SVGLengthTearOff.cpp',
            'svg/SVGLineElement.cpp',
            'svg/SVGLineElement.h',
            'svg/SVGLinearGradientElement.cpp',
            'svg/SVGLinearGradientElement.h',
            'svg/SVGMPathElement.cpp',
            'svg/SVGMPathElement.h',
            'svg/SVGMarkerElement.cpp',
            'svg/SVGMarkerElement.h',
            'svg/SVGMaskElement.cpp',
            'svg/SVGMaskElement.h',
            'svg/SVGMatrixTearOff.cpp',
            'svg/SVGMatrixTearOff.h',
            'svg/SVGMetadataElement.cpp',
            'svg/SVGMetadataElement.h',
            'svg/SVGNumber.cpp',
            'svg/SVGNumber.h',
            'svg/SVGNumberList.cpp',
            'svg/SVGNumberList.h',
            'svg/SVGNumberOptionalNumber.cpp',
            'svg/SVGNumberOptionalNumber.h',
            'svg/SVGNumberTearOff.cpp',
            'svg/SVGNumberTearOff.h',
            'svg/SVGParserUtilities.cpp',
            'svg/SVGParserUtilities.h',
            'svg/SVGParsingError.h',
            'svg/SVGPathBlender.cpp',
            'svg/SVGPathBlender.h',
            'svg/SVGPathBuilder.cpp',
            'svg/SVGPathBuilder.h',
            'svg/SVGPathByteStream.h',
            'svg/SVGPathByteStreamBuilder.cpp',
            'svg/SVGPathByteStreamBuilder.h',
            'svg/SVGPathByteStreamSource.cpp',
            'svg/SVGPathByteStreamSource.h',
            'svg/SVGPathConsumer.h',
            'svg/SVGPathElement.cpp',
            'svg/SVGPathElement.h',
            'svg/SVGPathParser.cpp',
            'svg/SVGPathParser.h',
            'svg/SVGPathSeg.cpp',
            'svg/SVGPathSeg.h',
            'svg/SVGPathSegArc.h',
            'svg/SVGPathSegArcAbs.h',
            'svg/SVGPathSegArcRel.h',
            'svg/SVGPathSegClosePath.h',
            'svg/SVGPathSegCurvetoCubic.h',
            'svg/SVGPathSegCurvetoCubicAbs.h',
            'svg/SVGPathSegCurvetoCubicRel.h',
            'svg/SVGPathSegCurvetoCubicSmooth.h',
            'svg/SVGPathSegCurvetoCubicSmoothAbs.h',
            'svg/SVGPathSegCurvetoCubicSmoothRel.h',
            'svg/SVGPathSegCurvetoQuadratic.h',
            'svg/SVGPathSegCurvetoQuadraticAbs.h',
            'svg/SVGPathSegCurvetoQuadraticRel.h',
            'svg/SVGPathSegCurvetoQuadraticSmoothAbs.h',
            'svg/SVGPathSegCurvetoQuadraticSmoothRel.h',
            'svg/SVGPathSegLinetoAbs.h',
            'svg/SVGPathSegLinetoHorizontal.h',
            'svg/SVGPathSegLinetoHorizontalAbs.h',
            'svg/SVGPathSegLinetoHorizontalRel.h',
            'svg/SVGPathSegLinetoRel.h',
            'svg/SVGPathSegLinetoVertical.h',
            'svg/SVGPathSegLinetoVerticalAbs.h',
            'svg/SVGPathSegLinetoVerticalRel.h',
            'svg/SVGPathSegList.cpp',
            'svg/SVGPathSegList.h',
            'svg/SVGPathSegListBuilder.cpp',
            'svg/SVGPathSegListBuilder.h',
            'svg/SVGPathSegListSource.cpp',
            'svg/SVGPathSegListSource.h',
            'svg/SVGPathSegListTearOff.h',
            'svg/SVGPathSegMovetoAbs.h',
            'svg/SVGPathSegMovetoRel.h',
            'svg/SVGPathSource.h',
            'svg/SVGPathStringBuilder.cpp',
            'svg/SVGPathStringBuilder.h',
            'svg/SVGPathStringSource.cpp',
            'svg/SVGPathStringSource.h',
            'svg/SVGPathTraversalStateBuilder.cpp',
            'svg/SVGPathTraversalStateBuilder.h',
            'svg/SVGPathUtilities.cpp',
            'svg/SVGPathUtilities.h',
            'svg/SVGPatternElement.cpp',
            'svg/SVGPatternElement.h',
            'svg/SVGPoint.cpp',
            'svg/SVGPoint.h',
            'svg/SVGPointList.cpp',
            'svg/SVGPointList.h',
            'svg/SVGPointTearOff.cpp',
            'svg/SVGPointTearOff.h',
            'svg/SVGPolyElement.cpp',
            'svg/SVGPolyElement.h',
            'svg/SVGPolygonElement.cpp',
            'svg/SVGPolygonElement.h',
            'svg/SVGPolylineElement.cpp',
            'svg/SVGPolylineElement.h',
            'svg/SVGPreserveAspectRatio.cpp',
            'svg/SVGPreserveAspectRatioTearOff.cpp',
            'svg/SVGRadialGradientElement.cpp',
            'svg/SVGRadialGradientElement.h',
            'svg/SVGRect.cpp',
            'svg/SVGRect.h',
            'svg/SVGRectElement.cpp',
            'svg/SVGRectElement.h',
            'svg/SVGRectTearOff.cpp',
            'svg/SVGRectTearOff.h',
            'svg/SVGSVGElement.cpp',
            'svg/SVGSVGElement.h',
            'svg/SVGScriptElement.cpp',
            'svg/SVGScriptElement.h',
            'svg/SVGSetElement.cpp',
            'svg/SVGSetElement.h',
            'svg/SVGStaticStringList.cpp',
            'svg/SVGStaticStringList.h',
            'svg/SVGStopElement.cpp',
            'svg/SVGStopElement.h',
            'svg/SVGString.cpp',
            'svg/SVGString.h',
            'svg/SVGStringList.cpp',
            'svg/SVGStringList.h',
            'svg/SVGStringListTearOff.cpp',
            'svg/SVGStringListTearOff.h',
            'svg/SVGStyleElement.cpp',
            'svg/SVGStyleElement.h',
            'svg/SVGSwitchElement.cpp',
            'svg/SVGSwitchElement.h',
            'svg/SVGSymbolElement.cpp',
            'svg/SVGSymbolElement.h',
            'svg/SVGTSpanElement.cpp',
            'svg/SVGTSpanElement.h',
            'svg/SVGTests.cpp',
            'svg/SVGTests.h',
            'svg/SVGTextContentElement.cpp',
            'svg/SVGTextContentElement.h',
            'svg/SVGTextElement.cpp',
            'svg/SVGTextElement.h',
            'svg/SVGTextPathElement.cpp',
            'svg/SVGTextPathElement.h',
            'svg/SVGTextPositioningElement.cpp',
            'svg/SVGTextPositioningElement.h',
            'svg/SVGTitleElement.cpp',
            'svg/SVGTitleElement.h',
            'svg/SVGTransform.cpp',
            'svg/SVGTransformDistance.cpp',
            'svg/SVGTransformDistance.h',
            'svg/SVGTransformList.cpp',
            'svg/SVGTransformListTearOff.cpp',
            'svg/SVGTransformTearOff.cpp',
            'svg/SVGURIReference.cpp',
            'svg/SVGURIReference.h',
            'svg/SVGUnitTypes.cpp',
            'svg/SVGUnitTypes.h',
            'svg/SVGUnknownElement.cpp',
            'svg/SVGUnknownElement.h',
            'svg/SVGUseElement.cpp',
            'svg/SVGUseElement.h',
            'svg/SVGViewElement.cpp',
            'svg/SVGViewElement.h',
            'svg/SVGViewSpec.cpp',
            'svg/SVGViewSpec.h',
            'svg/SVGZoomAndPan.cpp',
            'svg/SVGZoomAndPan.h',
            'svg/SVGZoomEvent.cpp',
            'svg/SVGZoomEvent.h',
            'svg/animation/SMILTime.cpp',
            'svg/animation/SMILTimeContainer.cpp',
            'svg/animation/SMILTimeContainer.h',
            'svg/animation/SVGSMILElement.cpp',
            'svg/graphics/SVGImage.cpp',
            'svg/graphics/SVGImage.h',
            'svg/graphics/SVGImageChromeClient.cpp',
            'svg/graphics/SVGImageChromeClient.h',
            'svg/graphics/SVGImageForContainer.cpp',
            'svg/graphics/SVGImageForContainer.h',
            'svg/graphics/filters/SVGFEImage.cpp',
            'svg/graphics/filters/SVGFEImage.h',
            'svg/graphics/filters/SVGFilterBuilder.cpp',
            'svg/graphics/filters/SVGFilterBuilder.h',
            'svg/properties/SVGAnimatedProperty.cpp',
            'svg/properties/SVGPropertyTearOff.cpp',
        ],
        'core_dictionary_idl_files': [
            'animation/KeyframeEffectOptions.idl',
            'animation/ComputedTimingProperties.idl',
            'css/FontFaceDescriptors.idl',
            'css/FontFaceSetLoadEventInit.idl',
            'css/MediaQueryListEventInit.idl',
            'dom/DOMPointInit.idl',
            'dom/ElementRegistrationOptions.idl',
            'dom/IdleRequestOptions.idl',
            'dom/MutationObserverInit.idl',
            'dom/shadow/ShadowRootInit.idl',
            'events/AnimationEventInit.idl',
            'events/AnimationPlayerEventInit.idl',
            'events/ApplicationCacheErrorEventInit.idl',
            'events/AutocompleteErrorEventInit.idl',
            'events/CompositionEventInit.idl',
            'events/CustomEventInit.idl',
            'events/DragEventInit.idl',
            'events/ErrorEventInit.idl',
            'events/EventInit.idl',
            'events/EventModifierInit.idl',
            'events/FocusEventInit.idl',
            'events/HashChangeEventInit.idl',
            'events/KeyboardEventInit.idl',
            'events/MessageEventInit.idl',
            'events/MouseEventInit.idl',
            'events/PageTransitionEventInit.idl',
            'events/PointerEventInit.idl',
            'events/PopStateEventInit.idl',
            'events/ProgressEventInit.idl',
            'events/PromiseRejectionEventInit.idl',
            'events/RelatedEventInit.idl',
            'events/SecurityPolicyViolationEventInit.idl',
            'events/TransitionEventInit.idl',
            'events/UIEventInit.idl',
            'events/WheelEventInit.idl',
            'fileapi/BlobPropertyBag.idl',
            'fileapi/FilePropertyBag.idl',
            'frame/ScrollOptions.idl',
            'frame/ScrollToOptions.idl',
            'html/MediaKeyEventInit.idl',
            'html/canvas/CanvasContextCreationAttributes.idl',
            'html/track/TrackEventInit.idl',
            'input/InputDeviceCapabilitiesInit.idl',
            'page/EventSourceInit.idl',
            'timing/PerformanceObserverInit.idl',
        ],
        'generated_core_dictionary_files': [
            '<(blink_core_output_dir)/animation/KeyframeEffectOptions.cpp',
            '<(blink_core_output_dir)/animation/KeyframeEffectOptions.h',
            '<(blink_core_output_dir)/animation/ComputedTimingProperties.cpp',
            '<(blink_core_output_dir)/animation/ComputedTimingProperties.h',
            '<(blink_core_output_dir)/css/FontFaceDescriptors.cpp',
            '<(blink_core_output_dir)/css/FontFaceDescriptors.h',
            '<(blink_core_output_dir)/css/FontFaceSetLoadEventInit.cpp',
            '<(blink_core_output_dir)/css/FontFaceSetLoadEventInit.h',
            '<(blink_core_output_dir)/css/MediaQueryListEventInit.cpp',
            '<(blink_core_output_dir)/css/MediaQueryListEventInit.h',
            '<(blink_core_output_dir)/dom/DOMPointInit.cpp',
            '<(blink_core_output_dir)/dom/DOMPointInit.h',
            '<(blink_core_output_dir)/dom/ElementRegistrationOptions.cpp',
            '<(blink_core_output_dir)/dom/ElementRegistrationOptions.h',
            '<(blink_core_output_dir)/dom/IdleRequestOptions.cpp',
            '<(blink_core_output_dir)/dom/IdleRequestOptions.h',
            '<(blink_core_output_dir)/dom/MutationObserverInit.cpp',
            '<(blink_core_output_dir)/dom/MutationObserverInit.h',
            '<(blink_core_output_dir)/dom/shadow/ShadowRootInit.cpp',
            '<(blink_core_output_dir)/dom/shadow/ShadowRootInit.h',
            '<(blink_core_output_dir)/events/AnimationEventInit.cpp',
            '<(blink_core_output_dir)/events/AnimationEventInit.h',
            '<(blink_core_output_dir)/events/AnimationPlayerEventInit.cpp',
            '<(blink_core_output_dir)/events/AnimationPlayerEventInit.h',
            '<(blink_core_output_dir)/events/ApplicationCacheErrorEventInit.cpp',
            '<(blink_core_output_dir)/events/ApplicationCacheErrorEventInit.h',
            '<(blink_core_output_dir)/events/AutocompleteErrorEventInit.cpp',
            '<(blink_core_output_dir)/events/AutocompleteErrorEventInit.h',
            '<(blink_core_output_dir)/events/CompositionEventInit.cpp',
            '<(blink_core_output_dir)/events/CompositionEventInit.h',
            '<(blink_core_output_dir)/events/CustomEventInit.cpp',
            '<(blink_core_output_dir)/events/CustomEventInit.h',
            '<(blink_core_output_dir)/events/DragEventInit.cpp',
            '<(blink_core_output_dir)/events/DragEventInit.h',
            '<(blink_core_output_dir)/events/ErrorEventInit.cpp',
            '<(blink_core_output_dir)/events/ErrorEventInit.h',
            '<(blink_core_output_dir)/events/EventInit.cpp',
            '<(blink_core_output_dir)/events/EventInit.h',
            '<(blink_core_output_dir)/events/EventModifierInit.cpp',
            '<(blink_core_output_dir)/events/EventModifierInit.h',
            '<(blink_core_output_dir)/events/FocusEventInit.cpp',
            '<(blink_core_output_dir)/events/FocusEventInit.h',
            '<(blink_core_output_dir)/events/HashChangeEventInit.cpp',
            '<(blink_core_output_dir)/events/HashChangeEventInit.h',
            '<(blink_core_output_dir)/events/KeyboardEventInit.cpp',
            '<(blink_core_output_dir)/events/KeyboardEventInit.h',
            '<(blink_core_output_dir)/events/MessageEventInit.cpp',
            '<(blink_core_output_dir)/events/MessageEventInit.h',
            '<(blink_core_output_dir)/events/MouseEventInit.cpp',
            '<(blink_core_output_dir)/events/MouseEventInit.h',
            '<(blink_core_output_dir)/events/PageTransitionEventInit.cpp',
            '<(blink_core_output_dir)/events/PageTransitionEventInit.h',
            '<(blink_core_output_dir)/events/PointerEventInit.cpp',
            '<(blink_core_output_dir)/events/PointerEventInit.h',
            '<(blink_core_output_dir)/events/PopStateEventInit.cpp',
            '<(blink_core_output_dir)/events/PopStateEventInit.h',
            '<(blink_core_output_dir)/events/ProgressEventInit.cpp',
            '<(blink_core_output_dir)/events/ProgressEventInit.h',
            '<(blink_core_output_dir)/events/PromiseRejectionEventInit.cpp',
            '<(blink_core_output_dir)/events/PromiseRejectionEventInit.h',
            '<(blink_core_output_dir)/events/RelatedEventInit.cpp',
            '<(blink_core_output_dir)/events/RelatedEventInit.h',
            '<(blink_core_output_dir)/events/SecurityPolicyViolationEventInit.cpp',
            '<(blink_core_output_dir)/events/SecurityPolicyViolationEventInit.h',
            '<(blink_core_output_dir)/events/TransitionEventInit.cpp',
            '<(blink_core_output_dir)/events/TransitionEventInit.h',
            '<(blink_core_output_dir)/events/UIEventInit.cpp',
            '<(blink_core_output_dir)/events/UIEventInit.h',
            '<(blink_core_output_dir)/events/WheelEventInit.cpp',
            '<(blink_core_output_dir)/events/WheelEventInit.h',
            '<(blink_core_output_dir)/fileapi/BlobPropertyBag.cpp',
            '<(blink_core_output_dir)/fileapi/BlobPropertyBag.h',
            '<(blink_core_output_dir)/fileapi/FilePropertyBag.cpp',
            '<(blink_core_output_dir)/fileapi/FilePropertyBag.h',
            '<(blink_core_output_dir)/frame/ScrollOptions.cpp',
            '<(blink_core_output_dir)/frame/ScrollOptions.h',
            '<(blink_core_output_dir)/frame/ScrollToOptions.cpp',
            '<(blink_core_output_dir)/frame/ScrollToOptions.h',
            '<(blink_core_output_dir)/html/MediaKeyEventInit.cpp',
            '<(blink_core_output_dir)/html/MediaKeyEventInit.h',
            '<(blink_core_output_dir)/html/canvas/CanvasContextCreationAttributes.cpp',
            '<(blink_core_output_dir)/html/canvas/CanvasContextCreationAttributes.h',
            '<(blink_core_output_dir)/html/track/TrackEventInit.cpp',
            '<(blink_core_output_dir)/html/track/TrackEventInit.h',
            '<(blink_core_output_dir)/input/InputDeviceCapabilitiesInit.cpp',
            '<(blink_core_output_dir)/input/InputDeviceCapabilitiesInit.h',
            '<(blink_core_output_dir)/page/EventSourceInit.cpp',
            '<(blink_core_output_dir)/page/EventSourceInit.h',
            '<(blink_core_output_dir)/timing/PerformanceObserverInit.cpp',
            '<(blink_core_output_dir)/timing/PerformanceObserverInit.h',
        ],
        'core_testing_dictionary_idl_files': [
            'testing/InternalDictionary.idl',
            'testing/InternalDictionaryDerived.idl',
        ],
        'webcore_testing_idl_files': [
            'testing/DictionaryTest.idl',
            'testing/GCObservation.idl',
            'testing/GarbageCollectedScriptWrappable.idl',
            'testing/InternalSettings.idl',
            'testing/LayerRect.idl',
            'testing/LayerRectList.idl',
            'testing/PrivateScriptTest.idl',
            'testing/RefCountedScriptWrappable.idl',
            'testing/TypeConversions.idl',
            'testing/UnionTypesTest.idl',
        ],
        # testing IDL files that have partial interfaces in modules.
        'webcore_testing_idl_with_modules_dependency_files': [
            'testing/Internals.idl',
        ],
        'webcore_testing_dependency_idl_files': [
            'testing/PartialPrivateScriptTest.idl',
        ],
        'generated_webcore_testing_idl_files': [
            '<(blink_core_output_dir)/testing/InternalRuntimeFlags.idl',
            '<(blink_core_output_dir)/testing/InternalSettingsGenerated.idl',
        ],
        'generated_core_testing_dictionary_files': [
            '<(blink_core_output_dir)/testing/InternalDictionary.cpp',
            '<(blink_core_output_dir)/testing/InternalDictionary.h',
            '<(blink_core_output_dir)/testing/InternalDictionaryDerived.cpp',
            '<(blink_core_output_dir)/testing/InternalDictionaryDerived.h',
        ],
        'webcore_testing_files': [
            '<(blink_core_output_dir)/testing/InternalSettingsGenerated.cpp',
            '<(blink_core_output_dir)/testing/InternalSettingsGenerated.h',
            'testing/CoreTestPrinters.cpp',
            'testing/DictionaryTest.cpp',
            'testing/DictionaryTest.h',
            'testing/DummyPageHolder.cpp',
            'testing/DummyPageHolder.h',
            'testing/GCObservation.cpp',
            'testing/GCObservation.h',
            'testing/GarbageCollectedScriptWrappable.cpp',
            'testing/GarbageCollectedScriptWrappable.h',
            'testing/InternalSettings.cpp',
            'testing/InternalSettings.h',
            'testing/Internals.cpp',
            'testing/Internals.h',
            'testing/LayerRect.h',
            'testing/LayerRectList.cpp',
            'testing/LayerRectList.h',
            'testing/NullExecutionContext.cpp',
            'testing/NullExecutionContext.h',
            'testing/PrivateScriptTest.cpp',
            'testing/PrivateScriptTest.h',
            'testing/RefCountedScriptWrappable.cpp',
            'testing/RefCountedScriptWrappable.h',
            'testing/TypeConversions.h',
            'testing/UnionTypesTest.cpp',
            'testing/UnionTypesTest.h',
            'testing/v8/WebCoreTestSupport.cpp',
            'testing/v8/WebCoreTestSupport.h',
        ],
        'core_unittest_files': [
            'animation/AnimationClockTest.cpp',
            'animation/AnimationInputHelpersTest.cpp',
            'animation/AnimationEffectTest.cpp',
            'animation/AnimationTest.cpp',
            'animation/AnimationStackTest.cpp',
            'animation/KeyframeEffectTest.cpp',
            'animation/AnimationTestHelper.cpp',
            'animation/AnimationTestHelper.h',
            'animation/AnimationTimelineTest.cpp',
            'animation/AnimationTranslationUtilTest.cpp',
            'animation/CompositorAnimationsTest.cpp',
            'animation/CompositorAnimationsTestHelper.h',
            'animation/ColorStyleInterpolationTest.cpp',
            'animation/DeferredLegacyStyleInterpolationTest.cpp',
            'animation/DoubleStyleInterpolationTest.cpp',
            'animation/EffectInputTest.cpp',
            'animation/FilterStyleInterpolationTest.cpp',
            'animation/InterpolableValueTest.cpp',
            'animation/InterpolationEffectTest.cpp',
            'animation/KeyframeEffectModelTest.cpp',
            'animation/LengthBoxStyleInterpolationTest.cpp',
            'animation/LengthPairStyleInterpolationTest.cpp',
            'animation/LengthStyleInterpolationTest.cpp',
            'animation/ListStyleInterpolationTest.cpp',
            'animation/PropertyHandleTest.cpp',
            'animation/SVGStrokeDasharrayStyleInterpolationTest.cpp',
            'animation/ShadowStyleInterpolationTest.cpp',
            'animation/TimingCalculationsTest.cpp',
            'animation/TimingInputTest.cpp',
            'animation/VisibilityStyleInterpolationTest.cpp',
            'animation/animatable/AnimatableColorTest.cpp',
            'animation/animatable/AnimatableDoubleAndBoolTest.cpp',
            'animation/animatable/AnimatableDoubleTest.cpp',
            'animation/animatable/AnimatableLengthTest.cpp',
            'animation/animatable/AnimatableNeutralTest.cpp',
            'animation/animatable/AnimatableStrokeDasharrayListTest.cpp',
            'animation/animatable/AnimatableUnknownTest.cpp',
            'animation/animatable/AnimatableValueTestHelper.cpp',
            'animation/animatable/AnimatableValueTestHelper.h',
            'animation/animatable/AnimatableValueTestHelperTest.cpp',
            'clipboard/DataObjectTest.cpp',
            'compositing/DisplayListCompositingBuilderTest.cpp',
            'compositing/DisplayListCompositingTest.cpp',
            'css/AffectedByFocusTest.cpp',
            'css/CSSCalculationValueTest.cpp',
            'css/CSSFontFaceTest.cpp',
            'css/CSSSelectorTest.cpp',
            'css/CSSTestHelper.cpp',
            'css/CSSTestHelper.h',
            'css/CSSValueTestHelper.h',
            'css/DragUpdateTest.cpp',
            'css/MediaQueryEvaluatorTest.cpp',
            'css/MediaQueryListTest.cpp',
            'css/MediaQueryMatcherTest.cpp',
            'css/MediaQuerySetTest.cpp',
            'css/MediaValuesTest.cpp',
            'css/RuleSetTest.cpp',
            'css/invalidation/InvalidationSetTest.cpp',
            'css/parser/CSSParserValuesTest.cpp',
            'css/parser/CSSPropertyParserTest.cpp',
            'css/parser/CSSSelectorParserTest.cpp',
            'css/parser/CSSTokenizerTest.cpp',
            'css/parser/MediaConditionTest.cpp',
            'css/parser/SizesAttributeParserTest.cpp',
            'css/parser/SizesCalcParserTest.cpp',
            'css/resolver/FontBuilderTest.cpp',
            'css/resolver/MatchResultTest.cpp',
            'dom/ActiveDOMObjectTest.cpp',
            'dom/AttrTest.cpp',
            'dom/CrossThreadTaskTest.cpp',
            'dom/DOMImplementationTest.cpp',
            'dom/DocumentTest.cpp',
            'dom/MainThreadTaskRunnerTest.cpp',
            'dom/NthIndexCacheTest.cpp',
            'dom/RangeTest.cpp',
            'dom/ScriptRunnerTest.cpp',
            'dom/StyleElementTest.cpp',
            'dom/TreeScopeStyleSheetCollectionTest.cpp',
            'dom/TreeScopeTest.cpp',
            'dom/shadow/ComposedTreeTraversalTest.cpp',
            'editing/EditingStrategyTest.cpp',
            'editing/EditingTestBase.cpp',
            'editing/EditingTestBase.h',
            'editing/EditingUtilitiesTest.cpp',
            'editing/FrameSelectionTest.cpp',
            'editing/GranularityStrategyTest.cpp',
            'editing/InputMethodControllerTest.cpp',
            'editing/iterators/CharacterIteratorTest.cpp',
            'editing/iterators/SearchBufferTest.cpp',
            'editing/iterators/SimplifiedBackwardsTextIteratorTest.cpp',
            'editing/iterators/TextIteratorTest.cpp',
            'editing/markers/DocumentMarkerControllerTest.cpp',
            'editing/PositionTest.cpp',
            'editing/SurroundingTextTest.cpp',
            'editing/VisiblePositionTest.cpp',
            'editing/VisibleSelectionTest.cpp',
            'editing/VisibleUnitsTest.cpp',
            'editing/serializers/StyledMarkupSerializerTest.cpp',
            'events/EventPathTest.cpp',
            'fetch/CachingCorrectnessTest.cpp',
            'fetch/ClientHintsPreferencesTest.cpp',
            'fetch/FetchUtilsTest.cpp',
            'fetch/ImageResourceTest.cpp',
            'fetch/MemoryCacheTest.cpp',
            'fetch/MockImageResourceClient.cpp',
            'fetch/RawResourceTest.cpp',
            'fetch/ResourceFetcherTest.cpp',
            'fetch/ResourceLoaderOptionsTest.cpp',
            'fetch/ResourceTest.cpp',
            'fileapi/FileListTest.cpp',
            'fileapi/FileTest.cpp',
            'frame/ImageBitmapTest.cpp',
            'frame/OriginsUsingFeaturesTest.cpp',
            'frame/RootFrameViewportTest.cpp',
            'frame/SubresourceIntegrityTest.cpp',
            'frame/UseCounterTest.cpp',
            'frame/csp/CSPSourceListTest.cpp',
            'frame/csp/CSPSourceTest.cpp',
            'frame/csp/ContentSecurityPolicyTest.cpp',
            'html/FormDataTest.cpp',
            'html/HTMLDimensionTest.cpp',
            'html/HTMLFormControlElementTest.cpp',
            'html/HTMLImageElementTest.cpp',
            'html/HTMLInputElementTest.cpp',
            'html/HTMLLinkElementSizesAttributeTest.cpp',
            'html/HTMLSelectElementTest.cpp',
            'html/HTMLTableRowElementTest.cpp',
            'html/HTMLTextFormControlElementTest.cpp',
            'html/LinkRelAttributeTest.cpp',
            'html/TimeRangesTest.cpp',
            'html/canvas/CanvasFontCacheTest.cpp',
            'html/forms/FileInputTypeTest.cpp',
            'html/parser/HTMLEntityParserTest.cpp',
            'html/parser/HTMLParserThreadTest.cpp',
            'html/parser/HTMLPreloadScannerTest.cpp',
            'html/parser/HTMLResourcePreloaderTest.cpp',
            'html/parser/HTMLSrcsetParserTest.cpp',
            'html/shadow/MediaControlsTest.cpp',
            'html/track/vtt/BufferedLineReaderTest.cpp',
            'html/track/vtt/VTTScannerTest.cpp',
            'input/EventHandlerTest.cpp',
            'layout/ImageQualityControllerTest.cpp',
            'layout/LayoutBlockTest.cpp',
            'layout/LayoutInlineTest.cpp',
            'layout/LayoutMultiColumnFlowThreadTest.cpp',
            'layout/LayoutObjectTest.cpp',
            'layout/LayoutPartTest.cpp',
            'layout/LayoutTableCellTest.cpp',
            'layout/LayoutTableRowTest.cpp',
            'layout/LayoutTestHelper.cpp',
            'layout/LayoutTestHelper.h',
            'layout/LayoutThemeTest.cpp',
            'layout/MultiColumnFragmentainerGroupTest.cpp',
            'layout/OverflowModelTest.cpp',
            'layout/shapes/BoxShapeTest.cpp',
            'loader/FrameFetchContextTest.cpp',
            'loader/LinkHeaderTest.cpp',
            'loader/LinkLoaderTest.cpp',
            'loader/MixedContentCheckerTest.cpp',
            'page/ContextMenuControllerTest.cpp',
            'page/NetworkStateNotifierTest.cpp',
            'page/PagePopupClientTest.cpp',
            'page/PrintContextTest.cpp',
            'page/scrolling/ScrollStateTest.cpp',
            'paint/DisplayItemListPaintTest.cpp',
            'paint/DisplayItemListPaintTest.h',
            'paint/LayerClipRecorderTest.cpp',
            'paint/LayoutObjectDrawingRecorderTest.cpp',
            'paint/NinePieceImageGridTest.cpp',
            'paint/PaintLayerPainterTest.cpp',
            'paint/TableCellPainterTest.cpp',
            'paint/TextPainterTest.cpp',
            'streams/ReadableStreamReaderTest.cpp',
            'streams/ReadableStreamTest.cpp',
            'style/ComputedStyleTest.cpp',
            'style/OutlineValueTest.cpp',
            'style/SVGComputedStyleTest.cpp',
            'svg/UnsafeSVGAttributeSanitizationTest.cpp',
            'testing/PrivateScriptTestTest.cpp',
            'timing/MemoryInfoTest.cpp',
            'workers/WorkerThreadTest.cpp',
            'xml/parser/SharedBufferReaderTest.cpp',
        ],
    }
}