summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/core.gypi
blob: 03c64b57f96824f7e8979943d03f382d551d1e2a (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
{
    'variables': {
        'core_idl_files': [
            'animation/ElementAnimation.idl',
            'css/CSS.idl',
            'css/CSSCharsetRule.idl',
            'css/CSSFontFaceLoadEvent.idl',
            'css/CSSFontFaceRule.idl',
            'css/CSSImportRule.idl',
            'css/CSSKeyframeRule.idl',
            'css/CSSKeyframesRule.idl',
            'css/CSSMediaRule.idl',
            'css/CSSPageRule.idl',
            'css/CSSPrimitiveValue.idl',
            'css/CSSRule.idl',
            'css/CSSRuleList.idl',
            'css/CSSStyleDeclaration.idl',
            'css/CSSStyleRule.idl',
            'css/CSSStyleSheet.idl',
            'css/CSSSupportsRule.idl',
            # We should probably add CSSUnknownRule.idl to this list,
            # but it currently causes a compile error.
            # 'css/CSSUnknownRule.idl',
            'css/CSSValue.idl',
            'css/CSSValueList.idl',
            'css/CSSVariablesMap.idl',
            'css/CSSVariablesMapForEachCallback.idl',
            'css/CSSViewportRule.idl',
            'css/Counter.idl',
            'css/DocumentFontFaceSet.idl',
            'css/FontFace.idl',
            'css/FontFaceSet.idl',
            'css/MediaList.idl',
            'css/MediaQueryList.idl',
            'css/RGBColor.idl',
            'css/Rect.idl',
            'css/StyleMedia.idl',
            'css/StyleSheet.idl',
            'css/StyleSheetList.idl',
            'css/WebKitCSSFilterRule.idl',
            'css/WebKitCSSFilterValue.idl',
            'css/WebKitCSSMatrix.idl',
            'css/WebKitCSSMixFunctionValue.idl',
            'css/WebKitCSSRegionRule.idl',
            'css/WebKitCSSTransformValue.idl',
            'dom/Attr.idl',
            'dom/CDATASection.idl',
            'dom/CharacterData.idl',
            'dom/ChildNode.idl',
            'dom/ClientRect.idl',
            'dom/ClientRectList.idl',
            'dom/Clipboard.idl',
            'dom/Comment.idl',
            'dom/DOMError.idl',
            'dom/DOMException.idl',
            'dom/DOMImplementation.idl',
            'dom/DOMSettableTokenList.idl',
            'dom/DOMStringList.idl',
            'dom/DOMStringMap.idl',
            'dom/DOMTokenList.idl',
            'dom/DataTransferItem.idl',
            'dom/DataTransferItemList.idl',
            'dom/Document.idl',
            'dom/DocumentFragment.idl',
            'dom/DocumentFullscreen.idl',
            'dom/DocumentType.idl',
            'dom/Element.idl',
            'dom/Entity.idl',
            'dom/GlobalEventHandlers.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/Notation.idl',
            'dom/ParentNode.idl',
            'dom/ProcessingInstruction.idl',
            'dom/Promise.idl',
            'dom/Range.idl',
            'dom/RequestAnimationFrameCallback.idl',
            'dom/StringCallback.idl',
            'dom/Text.idl',
            'dom/Touch.idl',
            'dom/TouchList.idl',
            'dom/TreeWalker.idl',
            'dom/URL.idl',
            'dom/URLUtils.idl',
            'dom/URLUtilsReadOnly.idl',
            'dom/WebKitNamedFlow.idl',
            'dom/WebKitNamedFlowCollection.idl',
            'dom/shadow/ShadowRoot.idl',
            'events/AutocompleteErrorEvent.idl',
            'events/BeforeLoadEvent.idl',
            'events/BeforeUnloadEvent.idl',
            'events/CompositionEvent.idl',
            'events/CustomEvent.idl',
            'events/ErrorEvent.idl',
            'events/Event.idl',
            'events/EventTarget.idl',
            'events/FocusEvent.idl',
            'events/HashChangeEvent.idl',
            'events/KeyboardEvent.idl',
            'events/MessageEvent.idl',
            'events/MouseEvent.idl',
            'events/MutationEvent.idl',
            'events/NavigatorEvents.idl',
            'events/OverflowEvent.idl',
            'events/PageTransitionEvent.idl',
            'events/PopStateEvent.idl',
            'events/ProgressEvent.idl',
            'events/ResourceProgressEvent.idl',
            'events/SecurityPolicyViolationEvent.idl',
            'events/TextEvent.idl',
            'events/TouchEvent.idl',
            'events/TransitionEvent.idl',
            'events/UIEvent.idl',
            'events/WebKitAnimationEvent.idl',
            'events/WheelEvent.idl',
            'fileapi/Blob.idl',
            'fileapi/File.idl',
            'fileapi/FileError.idl',
            'fileapi/FileList.idl',
            'fileapi/FileReader.idl',
            'fileapi/FileReaderSync.idl',
            'fileapi/Stream.idl',
            'frame/BarProp.idl',
            'frame/Console.idl',
            'frame/ConsoleBase.idl',
            'frame/History.idl',
            'frame/ImageBitmap.idl',
            'frame/Location.idl',
            'frame/Navigator.idl',
            'frame/NavigatorID.idl',
            'frame/NavigatorOnLine.idl',
            'frame/Screen.idl',
            'frame/SecurityPolicy.idl',
            'frame/WebKitPoint.idl',
            'frame/Window.idl',
            'frame/WindowBase64.idl',
            'frame/WindowEventHandlers.idl',
            'frame/WindowTimers.idl',
            'html/FormData.idl',
            'html/HTMLAllCollection.idl',
            'html/HTMLAnchorElement.idl',
            'html/HTMLAppletElement.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/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/HTMLInputElement.idl',
            'html/HTMLKeygenElement.idl',
            'html/HTMLLIElement.idl',
            'html/HTMLLabelElement.idl',
            'html/HTMLLegendElement.idl',
            'html/HTMLLinkElement.idl',
            'html/HTMLMapElement.idl',
            'html/HTMLMarqueeElement.idl',
            'html/HTMLMediaElement.idl',
            'html/HTMLMenuElement.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/HTMLPreElement.idl',
            'html/HTMLProgressElement.idl',
            'html/HTMLQuoteElement.idl',
            'html/HTMLScriptElement.idl',
            'html/HTMLSelectElement.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/HTMLVideoElement.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/canvas/ANGLEInstancedArrays.idl',
            'html/canvas/Canvas2DContextAttributes.idl',
            'html/canvas/CanvasGradient.idl',
            'html/canvas/CanvasPattern.idl',
            'html/canvas/CanvasRenderingContext.idl',
            'html/canvas/CanvasRenderingContext2D.idl',
            'html/canvas/EXTFragDepth.idl',
            'html/canvas/EXTTextureFilterAnisotropic.idl',
            'html/canvas/OESElementIndexUint.idl',
            'html/canvas/OESStandardDerivatives.idl',
            'html/canvas/OESTextureFloat.idl',
            'html/canvas/OESTextureFloatLinear.idl',
            'html/canvas/OESTextureHalfFloat.idl',
            'html/canvas/OESTextureHalfFloatLinear.idl',
            'html/canvas/OESVertexArrayObject.idl',
            'html/canvas/Path.idl',
            'html/canvas/WebGLActiveInfo.idl',
            'html/canvas/WebGLBuffer.idl',
            'html/canvas/WebGLCompressedTextureATC.idl',
            'html/canvas/WebGLCompressedTexturePVRTC.idl',
            'html/canvas/WebGLCompressedTextureS3TC.idl',
            'html/canvas/WebGLContextAttributes.idl',
            'html/canvas/WebGLContextEvent.idl',
            'html/canvas/WebGLDebugRendererInfo.idl',
            'html/canvas/WebGLDebugShaders.idl',
            'html/canvas/WebGLDepthTexture.idl',
            'html/canvas/WebGLDrawBuffers.idl',
            'html/canvas/WebGLFramebuffer.idl',
            'html/canvas/WebGLLoseContext.idl',
            'html/canvas/WebGLProgram.idl',
            'html/canvas/WebGLRenderbuffer.idl',
            'html/canvas/WebGLRenderingContext.idl',
            'html/canvas/WebGLShader.idl',
            'html/canvas/WebGLShaderPrecisionFormat.idl',
            'html/canvas/WebGLTexture.idl',
            'html/canvas/WebGLUniformLocation.idl',
            'html/canvas/WebGLVertexArrayObjectOES.idl',
            'html/ime/Composition.idl',
            'html/ime/InputMethodContext.idl',
            'html/shadow/HTMLContentElement.idl',
            'html/shadow/HTMLShadowElement.idl',
            'html/track/TextTrack.idl',
            'html/track/TextTrackCue.idl',
            'html/track/TextTrackCueList.idl',
            'html/track/TextTrackList.idl',
            'html/track/TrackEvent.idl',
            'html/track/vtt/VTTCue.idl',
            'html/track/vtt/VTTRegion.idl',
            'html/track/vtt/VTTRegionList.idl',
            'inspector/InjectedScriptHost.idl',
            'inspector/InspectorFrontendHost.idl',
            'inspector/InspectorOverlayHost.idl',
            'inspector/JavaScriptCallFrame.idl',
            'loader/appcache/ApplicationCache.idl',
            'page/EventSource.idl',
            'page/PagePopupController.idl',
            'page/Selection.idl',
            'page/WindowPagePopup.idl',
            'plugins/MimeType.idl',
            'plugins/MimeTypeArray.idl',
            'plugins/Plugin.idl',
            'plugins/PluginArray.idl',
            'speech/SpeechInputEvent.idl',
            'speech/SpeechInputResult.idl',
            'speech/SpeechInputResultList.idl',
            'storage/Storage.idl',
            'storage/StorageEvent.idl',
            'timing/MemoryInfo.idl',
            'timing/Performance.idl',
            'timing/PerformanceEntry.idl',
            'timing/PerformanceMark.idl',
            'timing/PerformanceMeasure.idl',
            'timing/PerformanceNavigation.idl',
            'timing/PerformanceResourceTiming.idl',
            'timing/PerformanceTiming.idl',
            'workers/AbstractWorker.idl',
            'workers/DedicatedWorkerGlobalScope.idl',
            'workers/SharedWorker.idl',
            'workers/SharedWorkerGlobalScope.idl',
            'workers/Worker.idl',
            'workers/WorkerConsole.idl',
            'workers/WorkerGlobalScope.idl',
            'workers/WorkerLocation.idl',
            'workers/WorkerNavigator.idl',
            'xml/DOMParser.idl',
            'xml/DocumentXPathEvaluator.idl',
            'xml/XMLHttpRequest.idl',
            'xml/XMLHttpRequestEventTarget.idl',
            'xml/XMLHttpRequestProgressEvent.idl',
            'xml/XMLHttpRequestUpload.idl',
            'xml/XMLSerializer.idl',
            'xml/XPathEvaluator.idl',
            'xml/XPathExpression.idl',
            'xml/XPathNSResolver.idl',
            'xml/XPathResult.idl',
            'xml/XSLTProcessor.idl',
        ],
        'svg_idl_files': [
            'svg/SVGAElement.idl',
            'svg/SVGAltGlyphDefElement.idl',
            'svg/SVGAltGlyphElement.idl',
            'svg/SVGAltGlyphItemElement.idl',
            'svg/SVGAngle.idl',
            'svg/SVGAnimateColorElement.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/SVGColor.idl',
            'svg/SVGComponentTransferFunctionElement.idl',
            'svg/SVGCursorElement.idl',
            'svg/SVGDefsElement.idl',
            'svg/SVGDescElement.idl',
            'svg/SVGDocument.idl',
            'svg/SVGElement.idl',
            'svg/SVGElementInstance.idl',
            'svg/SVGElementInstanceList.idl',
            'svg/SVGEllipseElement.idl',
            'svg/SVGExternalResourcesRequired.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/SVGFilterPrimitiveStandardAttributes.idl',
            'svg/SVGFitToViewBox.idl',
            'svg/SVGFontElement.idl',
            'svg/SVGFontFaceElement.idl',
            'svg/SVGFontFaceFormatElement.idl',
            'svg/SVGFontFaceNameElement.idl',
            'svg/SVGFontFaceSrcElement.idl',
            'svg/SVGFontFaceUriElement.idl',
            'svg/SVGForeignObjectElement.idl',
            'svg/SVGGElement.idl',
            'svg/SVGGlyphElement.idl',
            'svg/SVGGlyphRefElement.idl',
            'svg/SVGGeometryElement.idl',
            'svg/SVGGradientElement.idl',
            'svg/SVGGraphicsElement.idl',
            'svg/SVGHKernElement.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/SVGMissingGlyphElement.idl',
            'svg/SVGNumber.idl',
            'svg/SVGNumberList.idl',
            'svg/SVGPaint.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/SVGRenderingIntent.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/SVGTests.idl',
            'svg/SVGTextContentElement.idl',
            'svg/SVGTextElement.idl',
            'svg/SVGTextPathElement.idl',
            'svg/SVGTextPositioningElement.idl',
            'svg/SVGTitleElement.idl',
            'svg/SVGTransform.idl',
            'svg/SVGTransformList.idl',
            'svg/SVGURIReference.idl',
            'svg/SVGUnitTypes.idl',
            'svg/SVGUseElement.idl',
            'svg/SVGVKernElement.idl',
            'svg/SVGViewElement.idl',
            'svg/SVGViewSpec.idl',
            'svg/SVGZoomAndPan.idl',
            'svg/SVGZoomEvent.idl',
        ],
        'webcore_files': [
            'Init.cpp',
            'Init.h',
            'accessibility/AXObjectCache.cpp',
            'accessibility/AXARIAGrid.cpp',
            'accessibility/AXARIAGrid.h',
            'accessibility/AXARIAGridCell.cpp',
            'accessibility/AXARIAGridCell.h',
            'accessibility/AXARIAGridRow.cpp',
            'accessibility/AXARIAGridRow.h',
            'accessibility/AXImageMapLink.cpp',
            'accessibility/AXImageMapLink.h',
            'accessibility/AXInlineTextBox.cpp',
            'accessibility/AXInlineTextBox.h',
            'accessibility/AXList.cpp',
            'accessibility/AXList.h',
            'accessibility/AXListBox.cpp',
            'accessibility/AXListBox.h',
            'accessibility/AXListBoxOption.cpp',
            'accessibility/AXListBoxOption.h',
            'accessibility/AXMediaControls.cpp',
            'accessibility/AXMediaControls.h',
            'accessibility/AXMenuList.cpp',
            'accessibility/AXMenuList.h',
            'accessibility/AXMenuListOption.cpp',
            'accessibility/AXMenuListOption.h',
            'accessibility/AXMenuListPopup.cpp',
            'accessibility/AXMenuListPopup.h',
            'accessibility/AXMockObject.cpp',
            'accessibility/AXMockObject.h',
            'accessibility/AXNodeObject.cpp',
            'accessibility/AXNodeObject.h',
            'accessibility/AXObject.cpp',
            'accessibility/AXProgressIndicator.cpp',
            'accessibility/AXProgressIndicator.h',
            'accessibility/AXRenderObject.cpp',
            'accessibility/AXRenderObject.h',
            'accessibility/AXScrollView.cpp',
            'accessibility/AXScrollView.h',
            'accessibility/AXScrollbar.cpp',
            'accessibility/AXScrollbar.h',
            'accessibility/AXSlider.cpp',
            'accessibility/AXSlider.h',
            'accessibility/AXSpinButton.cpp',
            'accessibility/AXSpinButton.h',
            'accessibility/AXSVGRoot.cpp',
            'accessibility/AXSVGRoot.h',
            'accessibility/AXTable.cpp',
            'accessibility/AXTable.h',
            'accessibility/AXTableCell.cpp',
            'accessibility/AXTableCell.h',
            'accessibility/AXTableColumn.cpp',
            'accessibility/AXTableColumn.h',
            'accessibility/AXTableHeaderContainer.cpp',
            'accessibility/AXTableHeaderContainer.h',
            'accessibility/AXTableRow.cpp',
            'accessibility/AXTableRow.h',
            'animation/ActiveAnimations.cpp',
            'animation/ActiveAnimations.h',
            'animation/AnimatableClipPathOperation.cpp',
            'animation/AnimatableClipPathOperation.h',
            'animation/AnimatableColor.cpp',
            'animation/AnimatableColor.h',
            'animation/AnimatableDouble.cpp',
            'animation/AnimatableDouble.h',
            'animation/AnimatableFilterOperations.cpp',
            'animation/AnimatableFilterOperations.h',
            'animation/AnimatableImage.cpp',
            'animation/AnimatableImage.h',
            'animation/AnimatableLength.cpp',
            'animation/AnimatableLength.h',
            'animation/AnimatableLengthBox.cpp',
            'animation/AnimatableLengthBox.h',
            'animation/AnimatableLengthBoxAndBool.cpp',
            'animation/AnimatableLengthBoxAndBool.h',
            'animation/AnimatableLengthPoint.cpp',
            'animation/AnimatableLengthPoint.h',
            'animation/AnimatableLengthSize.cpp',
            'animation/AnimatableLengthSize.h',
            'animation/AnimatableNeutral.h',
            'animation/AnimatableRepeatable.cpp',
            'animation/AnimatableRepeatable.h',
            'animation/AnimatableSVGLength.cpp',
            'animation/AnimatableSVGLength.h',
            'animation/AnimatableSVGPaint.cpp',
            'animation/AnimatableSVGPaint.h',
            'animation/AnimatableShadow.cpp',
            'animation/AnimatableShadow.h',
            'animation/AnimatableShapeValue.cpp',
            'animation/AnimatableShapeValue.h',
            'animation/AnimatableStrokeDasharrayList.cpp',
            'animation/AnimatableStrokeDasharrayList.h',
            'animation/AnimatableTransform.cpp',
            'animation/AnimatableTransform.h',
            'animation/AnimatableUnknown.h',
            'animation/AnimatableValue.cpp',
            'animation/AnimatableValue.h',
            'animation/AnimatableVisibility.cpp',
            'animation/AnimatableVisibility.h',
            'animation/ElementAnimation.cpp',
            'animation/ElementAnimation.h',
            'animation/Animation.cpp',
            'animation/Animation.h',
            'animation/AnimationClock.h',
            'animation/AnimationEffect.h',
            'animation/AnimationStack.cpp',
            'animation/AnimationStack.h',
            'animation/CompositorAnimations.cpp',
            'animation/CompositorAnimations.h',
            'animation/CompositorAnimationsImpl.h',
            'animation/DocumentAnimations.cpp',
            'animation/DocumentAnimations.h',
            'animation/DocumentTimeline.cpp',
            'animation/DocumentTimeline.h',
            'animation/InertAnimation.cpp',
            'animation/InertAnimation.h',
            'animation/KeyframeAnimationEffect.cpp',
            'animation/KeyframeAnimationEffect.h',
            'animation/Player.cpp',
            'animation/Player.h',
            'animation/TimedItem.cpp',
            'animation/TimedItem.h',
            'animation/TimedItemCalculations.h',
            'animation/Timing.h',
            'animation/css/CSSAnimatableValueFactory.cpp',
            'animation/css/CSSAnimatableValueFactory.h',
            'animation/css/CSSAnimations.cpp',
            'animation/css/CSSAnimations.h',
            'animation/css/CSSPendingAnimations.cpp',
            'animation/css/CSSPendingAnimations.h',
            'animation/css/TransitionTimeline.cpp',
            'animation/css/TransitionTimeline.h',
            'css/BasicShapeFunctions.cpp',
            'css/CSSArrayFunctionValue.cpp',
            'css/CSSArrayFunctionValue.h',
            'css/CSSAspectRatioValue.cpp',
            'css/CSSAspectRatioValue.h',
            'css/CSSBasicShapes.cpp',
            'css/CSSBorderImage.cpp',
            'css/CSSBorderImage.h',
            'css/CSSBorderImageSliceValue.cpp',
            'css/CSSBorderImageSliceValue.h',
            'css/CSSCanvasValue.cpp',
            'css/CSSCanvasValue.h',
            'css/CSSCalculationValue.cpp',
            'css/CSSCalculationValue.h',
            'css/CSSCharsetRule.cpp',
            'css/CSSCharsetRule.h',
            'css/CSSComputedStyleDeclaration.cpp',
            'css/CSSCrossfadeValue.cpp',
            'css/CSSCrossfadeValue.h',
            'css/CSSCustomFontData.h',
            'css/CSSCursorImageValue.cpp',
            'css/CSSDefaultStyleSheets.cpp',
            'css/CSSDefaultStyleSheets.h',
            'css/CSSFilterRule.cpp',
            'css/CSSFilterRule.h',
            'css/CSSFilterValue.cpp',
            'css/CSSFilterValue.h',
            'css/CSSFontFace.cpp',
            'css/CSSFontFace.h',
            'css/CSSFontFaceLoadEvent.cpp',
            'css/CSSFontFaceLoadEvent.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/CSSFontValue.cpp',
            'css/CSSFontValue.h',
            'css/CSSFunctionValue.cpp',
            'css/CSSFunctionValue.h',
            'css/CSSGradientValue.cpp',
            'css/CSSGradientValue.h',
            'css/CSSGridLineNamesValue.cpp',
            'css/CSSGridLineNamesValue.h',
            'css/CSSGridTemplateValue.cpp',
            'css/CSSGridTemplateValue.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/CSSLengthFunctions.cpp',
            'css/CSSLengthFunctions.h',
            'css/CSSLineBoxContainValue.cpp',
            'css/CSSMatrix.cpp',
            'css/CSSMatrix.h',
            'css/CSSMediaRule.cpp',
            'css/CSSMediaRule.h',
            'css/CSSMixFunctionValue.cpp',
            'css/CSSMixFunctionValue.h',
            'css/CSSOMUtils.cpp',
            'css/CSSOMUtils.h',
            'css/CSSPageRule.cpp',
            'css/CSSPageRule.h',
            'css/CSSParser.h',
            'css/CSSParserMode.cpp',
            'css/CSSParserMode.h',
            'css/CSSParserValues.cpp',
            'css/CSSPrimitiveValue.cpp',
            'css/CSSPrimitiveValueMappings.h',
            'css/CSSProperty.cpp',
            'css/CSSPropertySourceData.cpp',
            'css/CSSReflectValue.cpp',
            'css/CSSRegionRule.cpp',
            'css/CSSRegionRule.h',
            'css/CSSRule.cpp',
            'css/CSSRule.h',
            'css/CSSRuleList.cpp',
            'css/CSSRuleList.h',
            'css/CSSSegmentedFontFace.cpp',
            'css/CSSSegmentedFontFace.h',
            'css/CSSSegmentedFontFaceCache.cpp',
            'css/CSSSegmentedFontFaceCache.h',
            'css/CSSSelector.cpp',
            'css/CSSSelectorList.cpp',
            'css/CSSSelectorList.h',
            'css/CSSShaderValue.cpp',
            'css/CSSShaderValue.h',
            'css/CSSShadowValue.cpp',
            'css/CSSShadowValue.h',
            'css/CSSStyleDeclaration.cpp',
            'css/CSSStyleDeclaration.h',
            'css/CSSStyleRule.cpp',
            'css/CSSStyleRule.h',
            'css/CSSStyleSheet.cpp',
            'css/CSSStyleSheet.h',
            'css/CSSSupportsRule.cpp',
            'css/CSSSupportsRule.h',
            'css/CSSSVGDocumentValue.cpp',
            'css/CSSSVGDocumentValue.h',
            'css/CSSTimingFunctionValue.cpp',
            'css/CSSTimingFunctionValue.h',
            'css/CSSTokenizer.h',
            'css/CSSToLengthConversionData.cpp',
            'css/CSSToLengthConversionData.h',
            'css/CSSTransformValue.cpp',
            'css/CSSUnicodeRangeValue.cpp',
            'css/CSSUnicodeRangeValue.h',
            'css/CSSUnknownRule.h',
            'css/CSSValue.cpp',
            'css/CSSValueList.cpp',
            'css/CSSValuePool.cpp',
            'css/CSSValuePool.h',
            'css/CSSVariablesIterator.h',
            'css/CSSVariablesMap.cpp',
            'css/CSSVariablesMap.h',
            'css/CSSVariablesMapForEachCallback.h',
            'css/CSSVariableValue.h',
            'css/CSSViewportRule.h',
            'css/CSSViewportRule.cpp',
            'css/Counter.h',
            'css/DOMWindowCSS.cpp',
            'css/DOMWindowCSS.h',
            'css/DocumentFontFaceSet.h',
            'css/DocumentFontFaceSet.cpp',
            'css/ElementRuleCollector.cpp',
            'css/ElementRuleCollector.h',
            'css/FontFaceSet.h',
            'css/FontFaceSet.cpp',
            'css/FontFace.cpp',
            'css/FontFace.h',
            'css/FontSize.cpp',
            'css/FontSize.h',
            'css/HashTools.h',
            'css/InspectorCSSOMWrappers.cpp',
            'css/InspectorCSSOMWrappers.h',
            'css/MediaFeatureNames.cpp',
            'css/MediaFeatureNames.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/MediaQueryListListener.cpp',
            'css/MediaQueryListListener.h',
            'css/MediaQueryMatcher.cpp',
            'css/MediaQueryMatcher.h',
            'css/PageRuleCollector.cpp',
            'css/PageRuleCollector.h',
            'css/PropertySetCSSStyleDeclaration.cpp',
            'css/PropertySetCSSStyleDeclaration.h',
            'css/PseudoStyleRequest.h',
            'css/RGBColor.cpp',
            'css/RGBColor.h',
            'css/Rect.h',
            'css/RuleFeature.cpp',
            'css/RuleFeature.h',
            'css/RuleSet.cpp',
            'css/RuleSet.h',
            'css/SVGCSSComputedStyleDeclaration.cpp',
            'css/SVGCSSParser.cpp',
            'css/SelectorChecker.cpp',
            'css/SelectorChecker.h',
            'css/SelectorCheckerFastPath.cpp',
            'css/SelectorCheckerFastPath.h',
            'css/SelectorFilter.cpp',
            'css/SelectorFilter.h',
            'css/SiblingTraversalStrategies.h',
            'css/StyleColor.h',
            'css/StyleInvalidationAnalysis.cpp',
            'css/StyleInvalidationAnalysis.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/StyleSheet.cpp',
            'css/StyleSheet.h',
            'css/StyleSheetContents.cpp',
            'css/StyleSheetContents.h',
            'css/StyleSheetList.cpp',
            'css/StyleSheetList.h',
            'css/TreeBoundaryCrossingRules.cpp',
            'css/TreeBoundaryCrossingRules.h',
            '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/MatchedPropertiesCache.cpp',
            'css/resolver/MatchedPropertiesCache.h',
            'css/resolver/MatchResult.cpp',
            'css/resolver/MatchResult.h',
            'css/resolver/MatchRequest.h',
            'css/resolver/MediaQueryResult.h',
            'css/resolver/ScopedStyleResolver.cpp',
            'css/resolver/ScopedStyleResolver.h',
            'css/resolver/ScopedStyleTree.cpp',
            'css/resolver/ScopedStyleTree.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/StyleResolverIncludes.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/AppendNodeCommand.cpp',
            'editing/AppendNodeCommand.h',
            'editing/ApplyBlockElementCommand.cpp',
            'editing/ApplyStyleCommand.cpp',
            'editing/ApplyStyleCommand.h',
            'editing/BreakBlockquoteCommand.cpp',
            'editing/BreakBlockquoteCommand.h',
            'editing/Caret.cpp',
            'editing/Caret.h',
            'editing/CompositeEditCommand.cpp',
            'editing/CompositionUnderline.h',
            'editing/CreateLinkCommand.cpp',
            'editing/CreateLinkCommand.h',
            'editing/DeleteFromTextNodeCommand.cpp',
            'editing/DeleteFromTextNodeCommand.h',
            'editing/DeleteSelectionCommand.cpp',
            'editing/EditCommand.cpp',
            'editing/EditingStyle.cpp',
            'editing/Editor.cpp',
            'editing/EditorCommand.cpp',
            'editing/EditorKeyBindings.cpp',
            'editing/FormatBlockCommand.cpp',
            'editing/FormatBlockCommand.h',
            'editing/FrameSelection.cpp',
            'editing/HTMLInterchange.cpp',
            'editing/IndentOutdentCommand.cpp',
            'editing/IndentOutdentCommand.h',
            'editing/InputMethodController.cpp',
            'editing/InputMethodController.h',
            'editing/InsertIntoTextNodeCommand.cpp',
            'editing/InsertIntoTextNodeCommand.h',
            'editing/InsertLineBreakCommand.cpp',
            'editing/InsertLineBreakCommand.h',
            'editing/InsertListCommand.cpp',
            'editing/InsertListCommand.h',
            'editing/InsertNodeBeforeCommand.cpp',
            'editing/InsertNodeBeforeCommand.h',
            'editing/InsertParagraphSeparatorCommand.cpp',
            'editing/InsertParagraphSeparatorCommand.h',
            'editing/InsertTextCommand.cpp',
            'editing/InsertTextCommand.h',
            'editing/MarkupAccumulator.cpp',
            'editing/MarkupAccumulator.h',
            'editing/MergeIdenticalElementsCommand.cpp',
            'editing/MergeIdenticalElementsCommand.h',
            'editing/ModifySelectionListLevel.cpp',
            'editing/ModifySelectionListLevel.h',
            'editing/MoveSelectionCommand.cpp',
            'editing/PlainTextRange.h',
            'editing/PlainTextRange.cpp',
            'editing/RemoveCSSPropertyCommand.cpp',
            'editing/RemoveCSSPropertyCommand.h',
            'editing/RemoveFormatCommand.cpp',
            'editing/RemoveFormatCommand.h',
            'editing/RemoveNodeCommand.cpp',
            'editing/RemoveNodeCommand.h',
            'editing/RemoveNodePreservingChildrenCommand.cpp',
            'editing/RemoveNodePreservingChildrenCommand.h',
            'editing/RenderedPosition.cpp',
            'editing/RenderedPosition.h',
            'editing/ReplaceNodeWithSpanCommand.cpp',
            'editing/ReplaceNodeWithSpanCommand.h',
            'editing/ReplaceSelectionCommand.cpp',
            'editing/SelectionType.h',
            'editing/SetNodeAttributeCommand.cpp',
            'editing/SetNodeAttributeCommand.h',
            'editing/SetSelectionCommand.cpp',
            'editing/SetSelectionCommand.h',
            'editing/SimplifyMarkupCommand.cpp',
            'editing/SmartReplaceCF.cpp',
            'editing/SmartReplaceICU.cpp',
            'editing/SpellChecker.cpp',
            'editing/SpellChecker.h',
            'editing/SpellCheckRequester.cpp',
            'editing/SpellCheckRequester.h',
            'editing/SpellingCorrectionCommand.cpp',
            'editing/SpellingCorrectionCommand.h',
            'editing/SplitElementCommand.cpp',
            'editing/SplitElementCommand.h',
            'editing/SplitTextNodeCommand.cpp',
            'editing/SplitTextNodeCommand.h',
            'editing/SplitTextNodeContainingElementCommand.cpp',
            'editing/SplitTextNodeContainingElementCommand.h',
            'editing/SurroundingText.cpp',
            'editing/SurroundingText.h',
            'editing/TextCheckingHelper.cpp',
            'editing/TextCheckingHelper.h',
            'editing/TextInsertionBaseCommand.cpp',
            'editing/TextInsertionBaseCommand.h',
            'editing/TextIterator.cpp',
            'editing/TypingCommand.cpp',
            'editing/UndoStack.cpp',
            'editing/UndoStack.h',
            'editing/UndoStep.h',
            'editing/UnlinkCommand.cpp',
            'editing/UnlinkCommand.h',
            'editing/VisiblePosition.cpp',
            'editing/VisibleSelection.cpp',
            'editing/VisibleUnits.cpp',
            'editing/WrapContentsInDummySpanCommand.cpp',
            'editing/WrapContentsInDummySpanCommand.h',
            'editing/htmlediting.cpp',
            'editing/markup.cpp',
            'fetch/CachedMetadata.cpp',
            'fetch/CachedMetadata.h',
            'fetch/CrossOriginAccessControl.cpp',
            'fetch/CrossOriginAccessControl.h',
            'fetch/CSSStyleSheetResource.cpp',
            'fetch/CSSStyleSheetResource.h',
            'fetch/DocumentResource.cpp',
            'fetch/DocumentResource.h',
            'fetch/DocumentResourceReference.h',
            'fetch/FetchContext.cpp',
            'fetch/FetchContext.h',
            'fetch/FetchRequest.cpp',
            'fetch/FetchRequest.h',
            'fetch/FontResource.cpp',
            'fetch/FontResource.h',
            'fetch/ImageResource.cpp',
            'fetch/ImageResource.h',
            'fetch/RawResource.cpp',
            'fetch/RawResource.h',
            'fetch/Resource.cpp',
            'fetch/Resource.h',
            'fetch/ResourceClientWalker.h',
            'fetch/ResourceFetcher.cpp',
            'fetch/ResourceFetcher.h',
            'fetch/ResourceLoader.cpp',
            'fetch/ResourceLoader.h',
            'fetch/ResourceLoaderOptions.h',
            'fetch/ResourceLoaderSet.cpp',
            'fetch/ResourceLoaderSet.h',
            'fetch/ResourceLoadPriorityOptimizer.cpp',
            'fetch/ResourceLoadPriorityOptimizer.h',
            'fetch/ResourcePtr.cpp',
            'fetch/ResourcePtr.h',
            'fetch/FetchInitiatorInfo.h',
            'fetch/ScriptResource.cpp',
            'fetch/ScriptResource.h',
            'fetch/ShaderResource.cpp',
            'fetch/ShaderResource.h',
            'fetch/TextResourceDecoder.cpp',
            'fetch/TextResourceDecoder.h',
            'fetch/XSLStyleSheetResource.cpp',
            'fetch/XSLStyleSheetResource.h',
            'fetch/MemoryCache.cpp',
            'fetch/MemoryCache.h',
            'fileapi/Blob.cpp',
            'fileapi/Blob.h',
            'fileapi/BlobBuilder.cpp',
            'fileapi/BlobBuilder.h',
            'fileapi/File.cpp',
            'fileapi/File.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',
            'fileapi/Stream.cpp',
            'fileapi/Stream.h',
            'history/HistoryItem.cpp',
            'inspector/AsyncCallStackTracker.cpp',
            'inspector/AsyncCallStackTracker.h',
            'inspector/BindingVisitors.h',
            'inspector/ConsoleAPITypes.h',
            'inspector/ConsoleMessage.cpp',
            'inspector/ConsoleMessage.h',
            'inspector/ContentSearchUtils.cpp',
            'inspector/ContentSearchUtils.h',
            'inspector/DOMEditor.cpp',
            'inspector/DOMEditor.h',
            'inspector/DOMPatchSupport.cpp',
            'inspector/DOMPatchSupport.h',
            'inspector/IdentifiersFactory.cpp',
            'inspector/IdentifiersFactory.h',
            'inspector/InjectedScript.cpp',
            'inspector/InjectedScript.h',
            'inspector/InjectedScriptBase.cpp',
            'inspector/InjectedScriptBase.h',
            'inspector/InjectedScriptCanvasModule.cpp',
            'inspector/InjectedScriptCanvasModule.h',
            'inspector/InjectedScriptHost.cpp',
            'inspector/InjectedScriptHost.h',
            'inspector/InjectedScriptManager.cpp',
            'inspector/InjectedScriptManager.h',
            'inspector/InjectedScriptModule.cpp',
            'inspector/InjectedScriptModule.h',
            'inspector/InspectorAgent.cpp',
            'inspector/InspectorApplicationCacheAgent.cpp',
            'inspector/InspectorApplicationCacheAgent.h',
            'inspector/InspectorBaseAgent.cpp',
            'inspector/InspectorCSSAgent.cpp',
            'inspector/InspectorCSSAgent.h',
            'inspector/InspectorCanvasAgent.cpp',
            'inspector/InspectorCanvasAgent.h',
            'inspector/InspectorCanvasInstrumentation.h',
            'inspector/InspectorClient.cpp',
            'inspector/InspectorConsoleAgent.cpp',
            'inspector/InspectorConsoleAgent.h',
            'inspector/InspectorConsoleInstrumentation.h',
            'inspector/InspectorController.cpp',
            'inspector/InspectorCounters.cpp',
            'inspector/InspectorCounters.h',
            'inspector/InspectorDOMAgent.cpp',
            'inspector/InspectorDOMDebuggerAgent.cpp',
            'inspector/InspectorDOMDebuggerAgent.h',
            'inspector/InspectorDOMStorageAgent.cpp',
            'inspector/InspectorDOMStorageAgent.h',
            'inspector/InspectorDatabaseAgent.cpp',
            'inspector/InspectorDatabaseAgent.h',
            'inspector/InspectorDatabaseInstrumentation.h',
            'inspector/InspectorDatabaseResource.cpp',
            'inspector/InspectorDatabaseResource.h',
            'inspector/InspectorDebuggerAgent.cpp',
            'inspector/InspectorDebuggerAgent.h',
            'inspector/InspectorFileSystemAgent.cpp',
            'inspector/InspectorFileSystemAgent.h',
            'inspector/InspectorFrontendChannel.h',
            'inspector/InspectorFrontendHost.cpp',
            'inspector/InspectorFrontendHost.h',
            'inspector/InspectorHeapProfilerAgent.cpp',
            'inspector/InspectorHeapProfilerAgent.h',
            'inspector/InspectorHistory.cpp',
            'inspector/InspectorHistory.h',
            'inspector/InspectorIndexedDBAgent.cpp',
            'inspector/InspectorIndexedDBAgent.h',
            'inspector/InspectorInputAgent.cpp',
            'inspector/InspectorInputAgent.h',
            'inspector/InspectorInstrumentation.cpp',
            'inspector/InspectorInstrumentation.h',
            'inspector/InspectorInstrumentationCustomInl.h',
            'inspector/InspectorLayerTreeAgent.cpp',
            'inspector/InspectorLayerTreeAgent.h',
            'inspector/InspectorMemoryAgent.cpp',
            'inspector/InspectorMemoryAgent.h',
            'inspector/InspectorOverlay.cpp',
            'inspector/InspectorOverlay.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/InspectorRuntimeAgent.cpp',
            'inspector/InspectorRuntimeAgent.h',
            'inspector/InspectorState.cpp',
            'inspector/InspectorState.h',
            'inspector/InspectorStateClient.h',
            'inspector/InspectorStyleSheet.cpp',
            'inspector/InspectorStyleSheet.h',
            'inspector/InspectorStyleTextEditor.cpp',
            'inspector/InspectorStyleTextEditor.h',
            'inspector/InspectorTimelineAgent.cpp',
            'inspector/InspectorTimelineAgent.h',
            'inspector/InspectorWorkerAgent.cpp',
            'inspector/InspectorWorkerAgent.h',
            'inspector/InstrumentingAgents.h',
            'inspector/JavaScriptCallFrame.cpp',
            'inspector/JavaScriptCallFrame.h',
            'inspector/JSONParser.cpp',
            'inspector/JSONParser.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/ScriptArguments.cpp',
            'inspector/ScriptArguments.h',
            'inspector/ScriptCallFrame.cpp',
            'inspector/ScriptCallFrame.h',
            'inspector/ScriptCallStack.cpp',
            'inspector/ScriptCallStack.h',
            'inspector/ScriptGCEventListener.h',
            'inspector/ScriptProfile.cpp',
            'inspector/ScriptProfile.h',
            'inspector/TimelineRecordFactory.cpp',
            'inspector/TimelineRecordFactory.h',
            'inspector/TraceEventDispatcher.cpp',
            'inspector/TraceEventDispatcher.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',
            '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/FormState.cpp',
            'loader/FormSubmission.cpp',
            'loader/FrameFetchContext.h',
            'loader/FrameFetchContext.cpp',
            'loader/FrameLoadRequest.h',
            'loader/FrameLoader.cpp',
            'loader/FrameLoaderStateMachine.cpp',
            'loader/HistoryController.cpp',
            'loader/ImageLoader.cpp',
            'loader/ImageLoader.h',
            'loader/LinkLoader.cpp',
            'loader/LinkLoader.h',
            'loader/LinkLoaderClient.h',
            'loader/MixedContentChecker.cpp',
            'loader/MixedContentChecker.h',
            'loader/NavigationAction.cpp',
            'loader/NavigationAction.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/SubstituteData.h',
            'loader/TextResourceDecoderBuilder.cpp',
            'loader/TextResourceDecoderBuilder.h',
            'loader/TextTrackLoader.cpp',
            'loader/TextTrackLoader.h',
            'loader/ThreadableLoader.cpp',
            'loader/ThreadableLoaderClient.h',
            'loader/ThreadableLoaderClientWrapper.h',
            'loader/UniqueIdentifier.cpp',
            'loader/UniqueIdentifier.h',
            'loader/WorkerThreadableLoader.cpp',
            'loader/WorkerThreadableLoader.h',
            'loader/appcache/ApplicationCache.cpp',
            'loader/appcache/ApplicationCache.h',
            'loader/appcache/ApplicationCacheHost.h',
            'page/AutoscrollController.cpp',
            'page/AutoscrollController.h',
            'frame/BarProp.cpp',
            'frame/BarProp.h',
            'page/BackForwardClient.h',
            'page/Chrome.cpp',
            'frame/Console.cpp',
            'frame/Console.h',
            'frame/ConsoleBase.cpp',
            'frame/ConsoleBase.h',
            'frame/ContentSecurityPolicy.cpp',
            'frame/ContentSecurityPolicyResponseHeaders.cpp',
            'page/ContextMenuController.cpp',
            'page/ContextMenuProvider.h',
            'page/CreateWindow.cpp',
            'page/CreateWindow.h',
            'frame/DOMPoint.h',
            'frame/DOMSecurityPolicy.cpp',
            'page/DOMSelection.cpp',
            'page/DOMSelection.h',
            'frame/DOMTimer.cpp',
            'frame/DOMTimer.h',
            'frame/DOMWindow.cpp',
            'frame/DOMWindow.h',
            'frame/DOMWindowBase64.cpp',
            'frame/DOMWindowBase64.h',
            'frame/DOMWindowEventHandlers.h',
            'frame/DOMWindowLifecycleNotifier.cpp',
            'frame/DOMWindowLifecycleNotifier.h',
            'frame/DOMWindowLifecycleObserver.cpp',
            'frame/DOMWindowLifecycleObserver.h',
            'frame/DOMWindowTimers.cpp',
            'frame/DOMWindowTimers.h',
            'page/DOMWindowPagePopup.cpp',
            'page/DOMWindowPagePopup.h',
            'frame/DOMWindowProperty.cpp',
            'frame/DOMWindowProperty.h',
            'page/DragController.cpp',
            'page/DragData.cpp',
            'page/EventHandler.cpp',
            'page/EventSource.cpp',
            'page/EventSource.h',
            'page/FocusController.cpp',
            'frame/Frame.cpp',
            'frame/FrameDestructionObserver.cpp',
            'frame/FrameDestructionObserver.h',
            'page/FrameTree.cpp',
            'frame/FrameView.cpp',
            'frame/GraphicsLayerDebugInfo.cpp',
            'frame/History.cpp',
            'frame/History.h',
            'frame/ImageBitmap.cpp',
            'frame/ImageBitmap.h',
            'frame/Location.cpp',
            'frame/Location.h',
            'timing/MemoryInfo.cpp',
            'page/MouseEventWithHitTestResults.cpp',
            'page/MouseEventWithHitTestResults.h',
            'frame/SmartClip.cpp',
            'frame/SmartClip.h',
            'frame/Navigator.cpp',
            'frame/Navigator.h',
            'frame/NavigatorBase.h',
            'frame/NavigatorID.cpp',
            'frame/NavigatorID.h',
            'frame/NavigatorOnLine.h',
            'frame/SettingsDelegate.cpp',
            'frame/SettingsDelegate.h',
            'page/NetworkStateNotifier.cpp',
            'page/NetworkStateNotifier.h',
            'page/Page.cpp',
            'page/PageConsole.cpp',
            'page/PageGroup.cpp',
            'page/PageGroupLoadDeferrer.cpp',
            'page/PageGroupLoadDeferrer.h',
            'page/PageLifecycleNotifier.cpp',
            'page/PageLifecycleNotifier.h',
            'page/PageLifecycleObserver.cpp',
            'page/PageLifecycleObserver.h',
            'page/PagePopupController.cpp',
            'page/PagePopupController.h',
            'page/PagePopupClient.cpp',
            'page/PagePopupClient.h',
            'page/PageScaleConstraints.cpp',
            'page/PageScaleConstraints.h',
            'page/PageSerializer.cpp',
            'page/PageVisibilityState.cpp',
            'timing/Performance.cpp',
            'timing/Performance.h',
            'timing/PerformanceEntry.cpp',
            'timing/PerformanceEntry.h',
            'timing/PerformanceMark.h',
            'timing/PerformanceMeasure.h',
            'timing/PerformanceNavigation.cpp',
            'timing/PerformanceNavigation.h',
            'timing/PerformanceResourceTiming.cpp',
            'timing/PerformanceResourceTiming.h',
            'timing/PerformanceTiming.cpp',
            'timing/PerformanceTiming.h',
            'timing/PerformanceUserTiming.cpp',
            'timing/PerformanceUserTiming.h',
            'page/PointerLockController.cpp',
            'page/PointerLockController.h',
            'page/PopupOpeningObserver.h',
            'page/PrintContext.cpp',
            'timing/ResourceTimingInfo.h',
            'css/RuntimeCSSEnabled.cpp',
            'css/RuntimeCSSEnabled.h',
            'frame/Screen.cpp',
            'frame/Screen.h',
            'frame/Settings.cpp',
            'page/SpatialNavigation.cpp',
            'frame/SuspendableTimer.cpp',
            'frame/SuspendableTimer.h',
            'page/TouchAdjustment.cpp',
            'page/TouchAdjustment.h',
            'page/TouchDisambiguation.cpp',
            'page/TouchDisambiguation.h',
            'frame/UseCounter.cpp',
            'page/WindowFeatures.cpp',
            'page/WindowFocusAllowedIndicator.cpp',
            'workers/WorkerNavigator.cpp',
            'workers/WorkerNavigator.h',
            'frame/animation/AnimationBase.cpp',
            'frame/animation/AnimationBase.h',
            'frame/animation/AnimationController.cpp',
            'frame/animation/AnimationControllerPrivate.h',
            'frame/animation/CompositeAnimation.cpp',
            'frame/animation/CompositeAnimation.h',
            'frame/animation/CSSPropertyAnimation.cpp',
            'frame/animation/CSSPropertyAnimation.h',
            'frame/animation/ImplicitAnimation.cpp',
            'frame/animation/ImplicitAnimation.h',
            'frame/animation/KeyframeAnimation.cpp',
            'frame/animation/KeyframeAnimation.h',
            'page/scrolling/ScrollingConstraints.cpp',
            'page/scrolling/ScrollingConstraints.h',
            'page/scrolling/ScrollingCoordinator.cpp',
            'page/scrolling/ScrollingCoordinator.h',
            'plugins/DOMMimeType.cpp',
            'plugins/DOMMimeType.h',
            'plugins/DOMMimeTypeArray.cpp',
            'plugins/DOMMimeTypeArray.h',
            'plugins/DOMPlugin.cpp',
            'plugins/DOMPlugin.h',
            'plugins/DOMPluginArray.cpp',
            'plugins/DOMPluginArray.h',
            'plugins/PluginOcclusionSupport.cpp',
            'plugins/PluginOcclusionSupport.h',
            'plugins/PluginView.h',
            'rendering/AbstractInlineTextBox.cpp',
            'rendering/AbstractInlineTextBox.h',
            'rendering/AutoTableLayout.cpp',
            'rendering/AutoTableLayout.h',
            'rendering/BidiRun.cpp',
            'rendering/BidiRun.h',
            'rendering/ClipRect.cpp',
            'rendering/ClipRect.h',
            'rendering/CompositedLayerMapping.cpp',
            'rendering/CompositedLayerMapping.h',
            'rendering/CompositedLayerMappingPtr.h',
            'rendering/CompositingReasons.h',
            'rendering/CounterNode.cpp',
            'rendering/CounterNode.h',
            'rendering/EllipsisBox.cpp',
            'rendering/EllipsisBox.h',
            'rendering/FastTextAutosizer.cpp',
            'rendering/FastTextAutosizer.h',
            'rendering/FilterEffectRenderer.cpp',
            'rendering/FilterEffectRenderer.h',
            'rendering/FixedTableLayout.cpp',
            'rendering/FixedTableLayout.h',
            'rendering/FloatingObjects.cpp',
            'rendering/FloatingObjects.h',
            'rendering/FlowThreadController.cpp',
            'rendering/FlowThreadController.h',
            'rendering/GraphicsContextAnnotator.cpp',
            'rendering/GraphicsContextAnnotator.h',
            'rendering/TextAutosizer.cpp',
            'rendering/TextAutosizer.h',
            'rendering/HitTestingTransformState.cpp',
            'rendering/HitTestingTransformState.h',
            'rendering/HitTestLocation.cpp',
            'rendering/HitTestLocation.h',
            'rendering/HitTestResult.cpp',
            'rendering/InlineBox.cpp',
            'rendering/InlineFlowBox.cpp',
            'rendering/InlineIterator.h',
            'rendering/InlineTextBox.cpp',
            'rendering/ImageQualityController.h',
            'rendering/ImageQualityController.cpp',
            'rendering/LayoutState.cpp',
            'rendering/OrderIterator.cpp',
            'rendering/OrderIterator.h',
            'rendering/LayoutIndicator.cpp',
            'rendering/LayoutIndicator.h',
            'rendering/LayoutRectRecorder.cpp',
            'rendering/LayoutRepainter.cpp',
            'rendering/LineWidth.cpp',
            'rendering/LineWidth.h',
            'rendering/PartialLayoutState.h',
            'rendering/Pagination.cpp',
            'rendering/Pagination.h',
            'rendering/PointerEventsHitRules.cpp',
            'rendering/PointerEventsHitRules.h',
            'rendering/RenderApplet.cpp',
            'rendering/RenderApplet.h',
            'rendering/RenderBR.cpp',
            'rendering/RenderBlock.cpp',
            'rendering/RenderBlockFlow.cpp',
            'rendering/RenderBlockLineLayout.cpp',
            'rendering/RenderBox.cpp',
            'rendering/RenderBoxModelObject.cpp',
            'rendering/RenderButton.cpp',
            'rendering/RenderButton.h',
            'rendering/RenderCombineText.cpp',
            'rendering/RenderCombineText.h',
            'rendering/RenderCounter.cpp',
            'rendering/RenderCounter.h',
            'rendering/RenderDeprecatedFlexibleBox.cpp',
            'rendering/RenderDeprecatedFlexibleBox.h',
            'rendering/RenderDetailsMarker.cpp',
            'rendering/RenderDetailsMarker.h',
            'rendering/RenderEmbeddedObject.cpp',
            'rendering/RenderFieldset.cpp',
            'rendering/RenderFieldset.h',
            'rendering/RenderFileUploadControl.cpp',
            'rendering/RenderFileUploadControl.h',
            'rendering/RenderFlexibleBox.cpp',
            'rendering/RenderFlexibleBox.h',
            'rendering/RenderFlowThread.cpp',
            'rendering/RenderFlowThread.h',
            'rendering/RenderFrame.cpp',
            'rendering/RenderFrame.h',
            'rendering/RenderFrameSet.cpp',
            'rendering/RenderFrameSet.h',
            'rendering/RenderFullScreen.cpp',
            'rendering/RenderFullScreen.h',
            'rendering/RenderGrid.cpp',
            'rendering/RenderGrid.h',
            'rendering/RenderGeometryMap.cpp',
            'rendering/RenderGeometryMap.h',
            'rendering/RenderHTMLCanvas.cpp',
            'rendering/RenderHTMLCanvas.h',
            'rendering/RenderIFrame.cpp',
            'rendering/RenderIFrame.h',
            'rendering/RenderImage.cpp',
            'rendering/RenderImageResource.cpp',
            'rendering/RenderImageResourceStyleImage.cpp',
            'rendering/RenderInline.cpp',
            'rendering/RenderInline.h',
            'rendering/RenderInputSpeech.cpp',
            'rendering/RenderInputSpeech.h',
            'rendering/RenderLayer.cpp',
            'rendering/RenderLayerClipper.cpp',
            'rendering/RenderLayerCompositor.cpp',
            'rendering/RenderLayerCompositor.h',
            'rendering/RenderLayerFilterInfo.cpp',
            'rendering/RenderLayerFilterInfo.h',
            'rendering/RenderLayerScrollableArea.cpp',
            'rendering/RenderLayerStackingNode.cpp',
            'rendering/RenderLayerStackingNodeIterator.cpp',
            'rendering/RenderLayerReflectionInfo.cpp',
            'rendering/RenderLayerRepainter.cpp',
            'rendering/RenderLayerModelObject.cpp',
            'rendering/RenderLineBoxList.cpp',
            'rendering/RenderListBox.cpp',
            'rendering/RenderListBox.h',
            'rendering/RenderListItem.cpp',
            'rendering/RenderListMarker.cpp',
            'rendering/RenderListMarker.h',
            'rendering/RenderMarquee.cpp',
            'rendering/RenderMarquee.h',
            'rendering/RenderMedia.cpp',
            'rendering/RenderMedia.h',
            'rendering/RenderMediaControlElements.cpp',
            'rendering/RenderMediaControlElements.h',
            'rendering/RenderMediaControls.cpp',
            'rendering/RenderMediaControls.h',
            'rendering/RenderMenuList.cpp',
            'rendering/RenderMenuList.h',
            'rendering/RenderMeter.cpp',
            'rendering/RenderMeter.h',
            'rendering/RenderMultiColumnBlock.cpp',
            'rendering/RenderMultiColumnBlock.h',
            'rendering/RenderMultiColumnFlowThread.cpp',
            'rendering/RenderMultiColumnFlowThread.h',
            'rendering/RenderMultiColumnSet.cpp',
            'rendering/RenderMultiColumnSet.h',
            'rendering/RenderNamedFlowFragment.cpp',
            'rendering/RenderNamedFlowFragment.h',
            'rendering/RenderNamedFlowThread.cpp',
            'rendering/RenderNamedFlowThread.h',
            'rendering/RenderObject.cpp',
            'rendering/RenderObjectChildList.cpp',
            'rendering/RenderPart.cpp',
            'rendering/RenderProgress.cpp',
            'rendering/RenderProgress.h',
            'rendering/RenderQuote.cpp',
            'rendering/RenderQuote.h',
            'rendering/RenderRegion.cpp',
            'rendering/RenderRegion.h',
            'rendering/RenderRegionSet.cpp',
            'rendering/RenderRegionSet.h',
            'rendering/RenderReplaced.cpp',
            'rendering/RenderReplica.cpp',
            'rendering/RenderReplica.h',
            'rendering/RenderRuby.cpp',
            'rendering/RenderRuby.h',
            'rendering/RenderRubyBase.cpp',
            'rendering/RenderRubyBase.h',
            'rendering/RenderRubyRun.cpp',
            'rendering/RenderRubyRun.h',
            'rendering/RenderRubyText.cpp',
            'rendering/RenderRubyText.h',
            'rendering/RenderScrollbar.cpp',
            'rendering/RenderScrollbar.h',
            'rendering/RenderScrollbarPart.cpp',
            'rendering/RenderScrollbarPart.h',
            'rendering/RenderScrollbarTheme.cpp',
            'rendering/RenderScrollbarTheme.h',
            'rendering/RenderSearchField.cpp',
            'rendering/RenderSearchField.h',
            'rendering/RenderSelectionInfo.h',
            'rendering/RenderSlider.cpp',
            'rendering/RenderSlider.h',
            'rendering/RenderTable.cpp',
            'rendering/RenderTable.h',
            'rendering/RenderTableCaption.cpp',
            'rendering/RenderTableCaption.h',
            'rendering/RenderTableCell.cpp',
            'rendering/RenderTableCell.h',
            'rendering/RenderTableCol.cpp',
            'rendering/RenderTableCol.h',
            'rendering/RenderTableRow.cpp',
            'rendering/RenderTableRow.h',
            'rendering/RenderTableSection.cpp',
            'rendering/RenderTableSection.h',
            'rendering/RenderText.cpp',
            'rendering/RenderTextControl.cpp',
            'rendering/RenderTextControl.h',
            'rendering/RenderTextControlMultiLine.cpp',
            'rendering/RenderTextControlMultiLine.h',
            'rendering/RenderTextControlSingleLine.cpp',
            'rendering/RenderTextControlSingleLine.h',
            'rendering/RenderTextFragment.cpp',
            'rendering/RenderTextFragment.h',
            'rendering/RenderTheme.cpp',
            'rendering/RenderTheme.h',
            'rendering/RenderThemeChromiumAndroid.cpp',
            'rendering/RenderThemeChromiumAndroid.h',
            'rendering/RenderThemeChromiumDefault.cpp',
            'rendering/RenderThemeChromiumDefault.h',
            'rendering/RenderThemeChromiumFontProvider.cpp',
            'rendering/RenderThemeChromiumFontProvider.h',
            'rendering/RenderThemeChromiumFontProviderLinux.cpp',
            'rendering/RenderThemeChromiumFontProviderWin.cpp',
            'rendering/RenderThemeChromiumMac.h',
            'rendering/RenderThemeChromiumMac.mm',
            'rendering/RenderThemeChromiumSkia.cpp',
            'rendering/RenderThemeChromiumSkia.h',
            'rendering/RenderThemeChromiumWin.cpp',
            'rendering/RenderThemeChromiumWin.h',
            'rendering/RenderTreeAsText.cpp',
            'rendering/RenderVTTCue.cpp',
            'rendering/RenderVTTCue.h',
            'rendering/RenderVideo.cpp',
            'rendering/RenderVideo.h',
            'rendering/RenderView.cpp',
            'rendering/RenderWidget.cpp',
            'rendering/RenderWordBreak.cpp',
            'rendering/RenderWordBreak.h',
            'rendering/RootInlineBox.cpp',
            'rendering/ScrollBehavior.cpp',
            'rendering/SubtreeLayoutScope.cpp',
            'rendering/SubtreeLayoutScope.h',
            'rendering/TableLayout.h',
            'rendering/TrailingFloatsRootInlineBox.h',
            'rendering/VerticalPositionCache.h',
            'rendering/break_lines.cpp',
            'rendering/break_lines.h',
            'rendering/animation/WebAnimationProvider.cpp',
            'rendering/animation/WebAnimationProvider.h',
            'rendering/shapes/BoxShape.cpp',
            'rendering/shapes/BoxShape.h',
            'rendering/shapes/PolygonShape.cpp',
            'rendering/shapes/PolygonShape.h',
            'rendering/shapes/RasterShape.cpp',
            'rendering/shapes/RasterShape.h',
            'rendering/shapes/RectangleShape.cpp',
            'rendering/shapes/RectangleShape.h',
            'rendering/shapes/Shape.cpp',
            'rendering/shapes/Shape.h',
            'rendering/shapes/ShapeInfo.cpp',
            'rendering/shapes/ShapeInfo.h',
            'rendering/shapes/ShapeInsideInfo.cpp',
            'rendering/shapes/ShapeInsideInfo.h',
            'rendering/shapes/ShapeInterval.h',
            'rendering/shapes/ShapeOutsideInfo.cpp',
            'rendering/shapes/ShapeOutsideInfo.h',
            'rendering/style/BasicShapes.cpp',
            'rendering/style/BorderImageLength.h',
            'rendering/style/BorderImageLengthBox.h',
            'rendering/style/CachedUAStyle.h',
            'rendering/style/ContentData.cpp',
            'rendering/style/CounterDirectives.cpp',
            'rendering/style/FillLayer.cpp',
            'rendering/style/GridCoordinate.h',
            'rendering/style/KeyframeList.cpp',
            'rendering/style/KeyframeList.h',
            'rendering/style/NinePieceImage.cpp',
            'rendering/style/QuotesData.cpp',
            'rendering/style/QuotesData.h',
            'rendering/style/RenderStyle.cpp',
            'rendering/style/RenderStyle.h',
            'rendering/style/ShadowData.cpp',
            'rendering/style/ShadowData.h',
            'rendering/style/ShadowList.cpp',
            'rendering/style/ShadowList.h',
            'rendering/style/StyleBackgroundData.cpp',
            'rendering/style/StyleBoxData.cpp',
            'rendering/style/StyleFetchedImage.cpp',
            'rendering/style/StyleFetchedImageSet.cpp',
            'rendering/style/StyleFetchedShader.h',
            'rendering/style/StyleFetchedShader.cpp',
            'rendering/style/StyleCustomFilterProgramCache.cpp',
            'rendering/style/StyleCustomFilterProgramCache.h',
            'rendering/style/StyleCustomFilterProgram.cpp',
            'rendering/style/StyleCustomFilterProgram.h',
            'rendering/style/StyleDeprecatedFlexibleBoxData.cpp',
            'rendering/style/StyleFilterData.cpp',
            'rendering/style/StyleFlexibleBoxData.cpp',
            'rendering/style/StyleGeneratedImage.cpp',
            'rendering/style/StyleGridData.cpp',
            'rendering/style/StyleGridItemData.cpp',
            'rendering/style/StyleInheritedData.cpp',
            'rendering/style/StyleMarqueeData.cpp',
            'rendering/style/StyleMultiColData.cpp',
            'rendering/style/StylePendingImage.h',
            'rendering/style/StylePendingShader.h',
            'rendering/style/StyleRareInheritedData.cpp',
            'rendering/style/StyleRareNonInheritedData.cpp',
            'rendering/style/StyleShader.h',
            'rendering/style/StyleSurroundData.cpp',
            'rendering/style/StyleTransformData.cpp',
            'rendering/style/StyleVisualData.cpp',
            'rendering/svg/SVGInlineFlowBox.cpp',
            'rendering/svg/SVGInlineFlowBox.h',
            'rendering/svg/SVGInlineTextBox.cpp',
            'rendering/svg/SVGInlineTextBox.h',
            'rendering/svg/SVGMarkerData.h',
            'rendering/svg/SVGPathData.cpp',
            'rendering/svg/SVGPathData.h',
            'rendering/svg/SVGRenderSupport.cpp',
            'rendering/svg/SVGRenderSupport.h',
            'rendering/svg/SVGRenderTreeAsText.cpp',
            'rendering/svg/SVGRenderTreeAsText.h',
            'rendering/svg/SVGRenderingContext.cpp',
            'rendering/svg/SVGRenderingContext.h',
            'rendering/svg/SVGResources.cpp',
            'rendering/svg/SVGResources.h',
            'rendering/svg/SVGResourcesCache.cpp',
            'rendering/svg/SVGResourcesCycleSolver.cpp',
            'rendering/svg/SVGResourcesCycleSolver.h',
            'rendering/svg/SVGRootInlineBox.cpp',
            'rendering/svg/SVGRootInlineBox.h',
            'rendering/svg/SVGTextChunk.cpp',
            'rendering/svg/SVGTextChunk.h',
            'rendering/svg/SVGTextChunkBuilder.cpp',
            'rendering/svg/SVGTextChunkBuilder.h',
            'rendering/svg/SVGTextFragment.h',
            'rendering/svg/SVGTextLayoutAttributes.cpp',
            'rendering/svg/SVGTextLayoutAttributes.h',
            'rendering/svg/SVGTextLayoutAttributesBuilder.cpp',
            'rendering/svg/SVGTextLayoutAttributesBuilder.h',
            'rendering/svg/SVGTextLayoutEngine.cpp',
            'rendering/svg/SVGTextLayoutEngine.h',
            'rendering/svg/SVGTextLayoutEngineBaseline.cpp',
            'rendering/svg/SVGTextLayoutEngineBaseline.h',
            'rendering/svg/SVGTextLayoutEngineSpacing.cpp',
            'rendering/svg/SVGTextLayoutEngineSpacing.h',
            'rendering/svg/SVGTextMetrics.cpp',
            'rendering/svg/SVGTextMetrics.h',
            'rendering/svg/SVGTextMetricsBuilder.cpp',
            'rendering/svg/SVGTextMetricsBuilder.h',
            'rendering/svg/SVGTextQuery.cpp',
            'rendering/svg/SVGTextQuery.h',
            'rendering/svg/SVGTextRunRenderingContext.cpp',
            'rendering/svg/SVGTextRunRenderingContext.h',
            'speech/SpeechInput.cpp',
            'speech/SpeechInput.h',
            'speech/SpeechInputClient.h',
            'speech/SpeechInputEvent.cpp',
            'speech/SpeechInputEvent.h',
            'speech/SpeechInputListener.h',
            'speech/SpeechInputResult.cpp',
            'speech/SpeechInputResult.h',
            'speech/SpeechInputResultList.cpp',
            'speech/SpeechInputResultList.h',
            'storage/Storage.cpp',
            'storage/Storage.h',
            'storage/StorageArea.h',
            'storage/StorageEvent.cpp',
            'storage/StorageEvent.h',
            'storage/StorageNamespace.h',
            'workers/AbstractWorker.cpp',
            'workers/AbstractWorker.h',
            'workers/DedicatedWorkerGlobalScope.cpp',
            'workers/DedicatedWorkerGlobalScope.h',
            'workers/DedicatedWorkerThread.cpp',
            'workers/DedicatedWorkerThread.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/WorkerGlobalScopeProxy.h',
            'workers/WorkerGlobalScopeProxyProvider.h',
            'workers/WorkerGlobalScopeProxyProvider.cpp',
            'workers/WorkerGlobalScope.cpp',
            'workers/WorkerGlobalScope.h',
            'workers/WorkerLoaderProxy.h',
            'workers/WorkerLocation.h',
            'workers/WorkerMessagingProxy.cpp',
            'workers/WorkerMessagingProxy.h',
            'workers/WorkerObjectProxy.cpp',
            'workers/WorkerObjectProxy.h',
            'workers/WorkerReportingProxy.h',
            'workers/WorkerRunLoop.cpp',
            'workers/WorkerScriptLoader.cpp',
            'workers/WorkerScriptLoader.h',
            'workers/WorkerScriptLoaderClient.h',
            'workers/WorkerThread.cpp',
            'workers/WorkerThreadStartupData.cpp',
            'workers/WorkerThreadStartupData.h',
            'xml/parser/MarkupTokenizerInlines.h',
            'xml/parser/XMLDocumentParser.cpp',
            'xml/parser/XMLDocumentParser.h',
            'xml/parser/XMLDocumentParserScope.cpp',
            'xml/parser/XMLDocumentParserScope.h',
            'xml/parser/XMLParserInput.h',
            'xml/DocumentXPathEvaluator.cpp',
            'xml/DocumentXPathEvaluator.h',
            'xml/DOMParser.cpp',
            'xml/DOMParser.h',
            'xml/NativeXPathNSResolver.cpp',
            'xml/NativeXPathNSResolver.h',
            'xml/XMLErrors.cpp',
            'xml/XMLErrors.h',
            'xml/XMLHttpRequest.cpp',
            'xml/XMLHttpRequest.h',
            'xml/XMLHttpRequestEventTarget.h',
            'xml/XMLHttpRequestProgressEvent.h',
            'xml/XMLHttpRequestProgressEventThrottle.cpp',
            'xml/XMLHttpRequestProgressEventThrottle.h',
            'xml/XMLHttpRequestUpload.cpp',
            'xml/XMLHttpRequestUpload.h',
            'xml/XMLSerializer.cpp',
            'xml/XMLSerializer.h',
            'xml/XMLTreeViewer.cpp',
            'xml/XMLTreeViewer.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.cpp',
            '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',
        ],
        'webcore_dom_files': [
            'dom/ActiveDOMObject.cpp',
            'dom/AddConsoleMessageTask.cpp',
            'dom/AddConsoleMessageTask.h',
            'dom/Attr.cpp',
            'dom/CDATASection.cpp',
            'dom/CDATASection.h',
            'dom/CSSSelectorWatch.cpp',
            'dom/CharacterData.cpp',
            'dom/ChildListMutationScope.cpp',
            'dom/ChildListMutationScope.h',
            'dom/ChildNodeList.cpp',
            'dom/ChildNodeList.h',
            'dom/ClassNodeList.cpp',
            'dom/ClassNodeList.h',
            'dom/ClientRect.cpp',
            'dom/ClientRect.h',
            'dom/ClientRectList.cpp',
            'dom/ClientRectList.h',
            'dom/Clipboard.cpp',
            'dom/Comment.cpp',
            'dom/Comment.h',
            'dom/ContainerNode.cpp',
            'dom/ContainerNodeAlgorithms.cpp',
            'dom/ContainerNodeAlgorithms.h',
            'dom/ContextFeatures.cpp',
            'dom/ContextFeatures.h',
            'dom/ContextLifecycleNotifier.cpp',
            'dom/ContextLifecycleNotifier.h',
            'dom/ContextLifecycleObserver.cpp',
            'dom/ContextLifecycleObserver.h',
            'dom/CrossThreadTask.h',
            'dom/DatasetDOMStringMap.cpp',
            'dom/DatasetDOMStringMap.h',
            'dom/DataTransferItem.cpp',
            'dom/DataTransferItem.h',
            'dom/DataTransferItemList.cpp',
            'dom/DataTransferItemList.h',
            'dom/DecodedDataDocumentParser.cpp',
            'dom/DecodedDataDocumentParser.h',
            'dom/Document.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.cpp',
            'dom/DocumentLifecycleObserver.h',
            'dom/DocumentMarker.cpp',
            'dom/DocumentMarkerController.cpp',
            'dom/DocumentOrderedList.cpp',
            'dom/DocumentOrderedList.h',
            'dom/DocumentOrderedMap.cpp',
            'dom/DocumentParser.cpp',
            'dom/DocumentSharedObjectPool.cpp',
            'dom/DocumentStyleSheetCollection.cpp',
            'dom/DocumentStyleSheetCollection.h',
            'dom/DocumentType.cpp',
            'dom/DOMError.cpp',
            'dom/DOMError.h',
            'dom/DOMException.cpp',
            'dom/DOMException.h',
            'dom/DOMImplementation.cpp',
            'dom/DOMNamedFlowCollection.cpp',
            'dom/DOMNamedFlowCollection.h',
            'dom/DOMSettableTokenList.cpp',
            'dom/DOMSettableTokenList.h',
            'dom/DOMStringList.cpp',
            'dom/DOMStringList.h',
            'dom/DOMStringMap.cpp',
            'dom/DOMStringMap.h',
            'dom/DOMTokenList.cpp',
            'dom/DOMTokenList.h',
            'dom/DOMURL.cpp',
            'dom/DOMURL.h',
            'dom/DOMURLUtils.cpp',
            'dom/DOMURLUtils.h',
            'dom/DOMURLUtilsReadOnly.cpp',
            'dom/DOMURLUtilsReadOnly.h',
            'dom/Element.cpp',
            'dom/Element.h',
            'dom/ElementData.cpp',
            'dom/ElementData.h',
            'dom/ElementRareData.cpp',
            'dom/ElementRareData.h',
            'dom/ElementTraversal.h',
            'dom/Entity.h',
            'dom/ExecutionContextTask.cpp',
            'dom/ExecutionContextTask.h',
            'dom/MainThreadTaskRunner.cpp',
            'dom/MainThreadTaskRunner.h',
            'dom/FullscreenElementStack.cpp',
            'dom/FullscreenElementStack.h',
            'dom/GlobalEventHandlers.h',
            'dom/IconURL.cpp',
            'dom/IconURL.h',
            'dom/IdTargetObserver.cpp',
            'dom/IdTargetObserver.h',
            'dom/IdTargetObserverRegistry.cpp',
            'dom/IdTargetObserverRegistry.h',
            'dom/IgnoreDestructiveWriteCountIncrementer.h',
            'dom/LiveNodeList.cpp',
            'dom/LiveNodeList.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/NamedFlow.cpp',
            'dom/NamedFlow.h',
            'dom/NamedFlowCollection.cpp',
            'dom/NamedFlowCollection.h',
            'dom/NamedNodeMap.cpp',
            'dom/NamedNodesCollection.cpp',
            'dom/NamedNodesCollection.h',
            'dom/NameNodeList.cpp',
            'dom/NameNodeList.h',
            'dom/Node.cpp',
            'dom/NodeChildRemovalTracker.h',
            'dom/NodeChildRemovalTracker.cpp',
            'dom/NodeFilter.cpp',
            'dom/NodeFilter.h',
            'dom/NodeFilterCondition.cpp',
            'dom/NodeFilterCondition.h',
            'dom/NodeIterator.cpp',
            'dom/NodeIterator.h',
            'dom/NodeList.cpp',
            'dom/NodeRareData.cpp',
            'dom/NodeRareData.h',
            'dom/NodeRenderingContext.cpp',
            'dom/NodeRenderingContext.h',
            'dom/NodeRenderingTraversal.cpp',
            'dom/NodeRenderingTraversal.h',
            'dom/NodeRenderStyle.h',
            'dom/NodeTraversal.cpp',
            'dom/NodeTraversal.h',
            'dom/NodeWithIndex.h',
            'dom/Notation.h',
            'dom/ParentNode.h',
            'dom/PendingScript.cpp',
            'dom/Position.cpp',
            'dom/PositionIterator.cpp',
            'dom/PositionIterator.h',
            'dom/PostAttachCallbacks.cpp',
            'dom/PostAttachCallbacks.h',
            'dom/PresentationAttributeStyle.cpp',
            'dom/PresentationAttributeStyle.h',
            'dom/ProcessingInstruction.cpp',
            'dom/ProcessingInstruction.h',
            'dom/Promise.h',
            'dom/PseudoElement.cpp',
            'dom/QualifiedName.cpp',
            'dom/Range.cpp',
            'dom/RawDataDocumentParser.h',
            'dom/RequestAnimationFrameCallback.h',
            'dom/SandboxFlags.h',
            'dom/SandboxFlags.cpp',
            'dom/ScriptableDocumentParser.cpp',
            'dom/ScriptableDocumentParser.h',
            'dom/ScriptedAnimationController.cpp',
            'dom/ScriptedAnimationController.h',
            'dom/ExecutionContext.cpp',
            'dom/ScriptLoader.cpp',
            'dom/ScriptLoader.h',
            'dom/ScriptRunner.cpp',
            'dom/SecurityContext.cpp',
            'dom/SecurityContext.h',
            'dom/SelectorQuery.cpp',
            'dom/SelectorQuery.h',
            'dom/custom/CustomElement.cpp',
            'dom/custom/CustomElement.h',
            'dom/custom/CustomElementBaseElementQueue.cpp',
            'dom/custom/CustomElementBaseElementQueue.h',
            'dom/custom/CustomElementCallbackDispatcher.cpp',
            'dom/custom/CustomElementCallbackDispatcher.h',
            'dom/custom/CustomElementCallbackInvocation.cpp',
            'dom/custom/CustomElementCallbackInvocation.h',
            'dom/custom/CustomElementCallbackQueue.cpp',
            'dom/custom/CustomElementCallbackQueue.h',
            'dom/custom/CustomElementCallbackScheduler.cpp',
            'dom/custom/CustomElementCallbackScheduler.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/CustomElementObserver.cpp',
            'dom/custom/CustomElementObserver.h',
            'dom/custom/CustomElementRegistrationContext.cpp',
            'dom/custom/CustomElementRegistrationContext.h',
            'dom/custom/CustomElementRegistry.cpp',
            'dom/custom/CustomElementRegistry.h',
            'dom/custom/CustomElementUpgradeCandidateMap.cpp',
            'dom/custom/CustomElementUpgradeCandidateMap.h',
            'dom/shadow/ComposedTreeWalker.cpp',
            'dom/shadow/ComposedTreeWalker.h',
            'dom/shadow/ContentDistribution.cpp',
            'dom/shadow/ContentDistribution.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',
            'dom/ShadowTreeStyleSheetCollection.cpp',
            'dom/ShadowTreeStyleSheetCollection.h',
            'dom/SimulatedClickOptions.h',
            'dom/SpaceSplitString.cpp',
            'dom/StaticNodeList.cpp',
            'dom/StaticNodeList.h',
            'dom/StringCallback.cpp',
            'dom/StringCallback.h',
            'dom/StyleElement.cpp',
            'dom/StyleElement.h',
            'dom/StyleEngine.cpp',
            'dom/StyleEngine.h',
            'dom/StyleSheetCollection.cpp',
            'dom/StyleSheetCollection.h',
            'dom/StyleSheetScopingNodeList.cpp',
            'dom/StyleSheetScopingNodeList.h',
            'dom/TagNodeList.cpp',
            'dom/TagNodeList.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/Traversal.cpp',
            'dom/Traversal.h',
            'dom/TreeScope.cpp',
            'dom/TreeScope.h',
            'dom/TreeScopeAdopter.cpp',
            'dom/TreeScopeAdopter.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/WheelController.cpp',
            'dom/WheelController.h',
            'events/AutocompleteErrorEvent.h',
            'events/BeforeLoadEvent.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/ErrorEvent.cpp',
            'events/ErrorEvent.h',
            'events/Event.cpp',
            'events/EventContext.cpp',
            'events/EventContext.h',
            'events/EventDispatcher.cpp',
            'events/EventDispatcher.h',
            'events/EventDispatchMediator.cpp',
            'events/EventDispatchMediator.h',
            'events/EventListenerMap.cpp',
            'events/EventPath.cpp',
            'events/EventPath.h',
            'events/EventQueue.h',
            'events/EventRetargeter.cpp',
            'events/EventRetargeter.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/OverflowEvent.cpp',
            'events/OverflowEvent.h',
            'events/PageTransitionEvent.cpp',
            'events/PageTransitionEvent.h',
            'events/PopStateEvent.cpp',
            'events/PopStateEvent.h',
            'events/ProgressEvent.cpp',
            'events/ProgressEvent.h',
            'events/ResourceProgressEvent.cpp',
            'events/ResourceProgressEvent.h',
            'events/ScopedEventQueue.cpp',
            'events/ScopedEventQueue.h',
            'events/SecurityPolicyViolationEvent.h',
            'events/TextEvent.cpp',
            'events/TextEvent.h',
            'events/ThreadLocalEventNames.h',
            'events/TouchEvent.cpp',
            'events/TouchEvent.h',
            'events/TransitionEvent.cpp',
            'events/TransitionEvent.h',
            'events/UIEvent.cpp',
            'events/UIEventWithKeyState.cpp',
            'events/WebKitAnimationEvent.cpp',
            'events/WebKitAnimationEvent.h',
            'events/WheelEvent.cpp',
            'events/WheelEvent.h',
            'events/WindowEventContext.cpp',
            'events/WindowEventContext.h',
        ],
        'webcore_html_files': [
            'html/ClassList.cpp',
            'html/ClassList.h',
            'html/DOMFormData.cpp',
            'html/DOMFormData.h',
            'html/FormAssociatedElement.cpp',
            'html/FormDataList.cpp',
            'html/FormDataList.h',
            'html/HTMLAllCollection.cpp',
            'html/HTMLAllCollection.h',
            'html/HTMLAnchorElement.cpp',
            'html/HTMLAnchorElement.h',
            'html/HTMLAppletElement.cpp',
            '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/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/HTMLFormControlsCollection.cpp',
            'html/HTMLFormControlsCollection.h',
            'html/HTMLFormControlElement.cpp',
            'html/HTMLFormControlElementWithState.cpp',
            '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/HTMLImageLoader.cpp',
            'html/HTMLImageLoader.h',
            'html/HTMLImport.cpp',
            'html/HTMLImport.h',
            'html/HTMLImportsController.cpp',
            'html/HTMLImportsController.h',
            'html/HTMLImportChild.cpp',
            'html/HTMLImportChild.h',
            'html/HTMLImportChildClient.h',
            'html/HTMLImportLoader.cpp',
            'html/HTMLImportLoader.h',
            'html/HTMLImportLoaderClient.h',
            'html/HTMLImportResourceOwner.cpp',
            'html/HTMLImportResourceOwner.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/HTMLMenuElement.cpp',
            'html/HTMLMenuElement.h',
            'html/HTMLMetaElement.h',
            'html/HTMLMeterElement.cpp',
            'html/HTMLMeterElement.h',
            'html/HTMLModElement.cpp',
            'html/HTMLModElement.h',
            'html/HTMLNameCollection.cpp',
            'html/HTMLNameCollection.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/HTMLPlugInElement.cpp',
            'html/HTMLPlugInElement.h',
            'html/HTMLPreElement.cpp',
            'html/HTMLPreElement.h',
            'html/HTMLProgressElement.cpp',
            'html/HTMLProgressElement.h',
            'html/HTMLQuoteElement.cpp',
            'html/HTMLQuoteElement.h',
            'html/HTMLScriptElement.cpp',
            'html/HTMLScriptElement.h',
            'html/HTMLSelectElement.cpp',
            'html/HTMLSelectElement.h',
            'html/HTMLSelectElementWin.cpp',
            '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/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/ImageData.cpp',
            'html/ImageData.h',
            'html/ImageDocument.cpp',
            'html/ImageDocument.h',
            'html/LabelableElement.cpp',
            'html/LabelsNodeList.cpp',
            'html/LabelsNodeList.h',
            'html/LinkImport.cpp',
            'html/LinkImport.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/HTMLMediaSource.cpp',
            'html/HTMLMediaSource.h',
            'html/PluginDocument.cpp',
            'html/PluginDocument.h',
            'html/PublicURLManager.h',
            'html/PublicURLManager.cpp',
            '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/canvas/ANGLEInstancedArrays.cpp',
            'html/canvas/ANGLEInstancedArrays.h',
            'html/canvas/Canvas2DContextAttributes.cpp',
            'html/canvas/Canvas2DContextAttributes.h',
            'html/canvas/CanvasContextAttributes.cpp',
            'html/canvas/CanvasContextAttributes.h',
            'html/canvas/CanvasGradient.cpp',
            'html/canvas/CanvasGradient.h',
            'html/canvas/CanvasPathMethods.cpp',
            'html/canvas/CanvasPathMethods.h',
            'html/canvas/CanvasPattern.cpp',
            'html/canvas/CanvasPattern.h',
            'html/canvas/CanvasRenderingContext.cpp',
            'html/canvas/CanvasRenderingContext.h',
            'html/canvas/CanvasRenderingContext2D.cpp',
            'html/canvas/CanvasRenderingContext2D.h',
            'html/canvas/CanvasStyle.cpp',
            'html/canvas/CanvasStyle.h',
            'html/canvas/DataView.cpp',
            'html/canvas/DataView.h',
            'html/canvas/DOMPath.h',
            'html/canvas/EXTFragDepth.cpp',
            'html/canvas/EXTFragDepth.h',
            'html/canvas/EXTTextureFilterAnisotropic.cpp',
            'html/canvas/EXTTextureFilterAnisotropic.h',
            'html/canvas/OESStandardDerivatives.cpp',
            'html/canvas/OESStandardDerivatives.h',
            'html/canvas/OESTextureFloat.cpp',
            'html/canvas/OESTextureFloat.h',
            'html/canvas/OESTextureFloatLinear.cpp',
            'html/canvas/OESTextureFloatLinear.h',
            'html/canvas/OESTextureHalfFloat.cpp',
            'html/canvas/OESTextureHalfFloat.h',
            'html/canvas/OESTextureHalfFloatLinear.cpp',
            'html/canvas/OESTextureHalfFloatLinear.h',
            'html/canvas/OESVertexArrayObject.cpp',
            'html/canvas/OESVertexArrayObject.h',
            'html/canvas/OESElementIndexUint.cpp',
            'html/canvas/OESElementIndexUint.h',
            'html/canvas/WebGLActiveInfo.h',
            'html/canvas/WebGLBuffer.cpp',
            'html/canvas/WebGLBuffer.h',
            'html/canvas/WebGLCompressedTextureATC.cpp',
            'html/canvas/WebGLCompressedTextureATC.h',
            'html/canvas/WebGLCompressedTexturePVRTC.cpp',
            'html/canvas/WebGLCompressedTexturePVRTC.h',
            'html/canvas/WebGLCompressedTextureS3TC.cpp',
            'html/canvas/WebGLCompressedTextureS3TC.h',
            'html/canvas/WebGLContextAttributes.cpp',
            'html/canvas/WebGLContextAttributes.h',
            'html/canvas/WebGLContextEvent.cpp',
            'html/canvas/WebGLContextEvent.h',
            'html/canvas/WebGLContextGroup.cpp',
            'html/canvas/WebGLContextGroup.h',
            'html/canvas/WebGLContextObject.cpp',
            'html/canvas/WebGLContextObject.h',
            'html/canvas/WebGLDebugRendererInfo.cpp',
            'html/canvas/WebGLDebugRendererInfo.h',
            'html/canvas/WebGLDebugShaders.cpp',
            'html/canvas/WebGLDebugShaders.h',
            'html/canvas/WebGLDepthTexture.cpp',
            'html/canvas/WebGLDepthTexture.h',
            'html/canvas/WebGLDrawBuffers.cpp',
            'html/canvas/WebGLDrawBuffers.h',
            'html/canvas/WebGLExtension.cpp',
            'html/canvas/WebGLExtension.h',
            'html/canvas/WebGLFramebuffer.cpp',
            'html/canvas/WebGLFramebuffer.h',
            'html/canvas/WebGLGetInfo.cpp',
            'html/canvas/WebGLGetInfo.h',
            'html/canvas/WebGLLoseContext.cpp',
            'html/canvas/WebGLLoseContext.h',
            'html/canvas/WebGLObject.cpp',
            'html/canvas/WebGLObject.h',
            'html/canvas/WebGLProgram.cpp',
            'html/canvas/WebGLProgram.h',
            'html/canvas/WebGLRenderbuffer.cpp',
            'html/canvas/WebGLRenderbuffer.h',
            'html/canvas/WebGLRenderingContext.cpp',
            'html/canvas/WebGLRenderingContext.h',
            'html/canvas/WebGLShader.cpp',
            'html/canvas/WebGLShader.h',
            'html/canvas/WebGLShaderPrecisionFormat.cpp',
            'html/canvas/WebGLShaderPrecisionFormat.h',
            'html/canvas/WebGLSharedObject.cpp',
            'html/canvas/WebGLSharedObject.h',
            'html/canvas/WebGLTexture.cpp',
            'html/canvas/WebGLTexture.h',
            'html/canvas/WebGLUniformLocation.cpp',
            'html/canvas/WebGLUniformLocation.h',
            'html/canvas/WebGLVertexArrayObjectOES.cpp',
            'html/canvas/WebGLVertexArrayObjectOES.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/CheckedRadioButtons.cpp',
            'html/forms/CheckedRadioButtons.h',
            'html/forms/ColorInputType.cpp',
            'html/forms/ColorInputType.h',
            'html/forms/DateInputType.cpp',
            'html/forms/DateInputType.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/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/ValidationMessage.cpp',
            'html/forms/ValidationMessage.h',
            'html/forms/WeekInputType.cpp',
            'html/forms/WeekInputType.h',
            'html/parser/AtomicHTMLToken.h',
            'html/parser/BackgroundHTMLParser.cpp',
            'html/parser/BackgroundHTMLParser.h',
            'html/parser/BackgroundHTMLInputStream.cpp',
            'html/parser/BackgroundHTMLInputStream.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/TextDocumentParser.cpp',
            'html/parser/TextDocumentParser.h',
            'html/parser/XSSAuditor.cpp',
            'html/parser/XSSAuditor.h',
            'html/parser/XSSAuditorDelegate.cpp',
            'html/parser/XSSAuditorDelegate.h',
            'html/shadow/PickerIndicatorElement.cpp',
            'html/shadow/PickerIndicatorElement.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/HTMLContentElement.cpp',
            'html/shadow/HTMLContentElement.h',
            'html/shadow/HTMLShadowElement.cpp',
            'html/shadow/HTMLShadowElement.h',
            'html/shadow/MediaControls.cpp',
            'html/shadow/MediaControls.h',
            'html/shadow/MediaControlElementTypes.cpp',
            'html/shadow/MediaControlElementTypes.h',
            'html/shadow/MediaControlElements.cpp',
            'html/shadow/MediaControlElements.h',
            'html/shadow/MediaControlsChromium.cpp',
            'html/shadow/MediaControlsChromium.h',
            'html/shadow/MediaControlsChromiumAndroid.cpp',
            'html/shadow/MediaControlsChromiumAndroid.h',
            'html/shadow/MeterShadowElement.cpp',
            'html/shadow/MeterShadowElement.h',
            'html/shadow/PasswordGeneratorButtonElement.cpp',
            'html/shadow/PasswordGeneratorButtonElement.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/ime/Composition.cpp',
            'html/ime/Composition.h',
            'html/ime/InputMethodContext.cpp',
            'html/ime/InputMethodContext.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/TextTrackCue.cpp',
            'html/track/TextTrackCue.h',
            'html/track/TextTrackCueList.cpp',
            'html/track/TextTrackCueList.h',
            'html/track/TextTrackList.cpp',
            'html/track/TrackBase.h',
            'html/track/TrackEvent.cpp',
            '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/VTTToken.h',
            'html/track/vtt/VTTTokenizer.cpp',
            'html/track/vtt/VTTTokenizer.h',
        ],
        'webcore_platform_files': [
            'platform/DragImage.cpp',
            'platform/Pasteboard.cpp',
            'platform/Pasteboard.h',
            'platform/animation/AnimationTranslationUtil.cpp',
            'platform/animation/AnimationTranslationUtil.h',
            'platform/animation/AnimationValue.h',
            'platform/animation/CSSAnimationData.cpp',
            'platform/animation/CSSAnimationDataList.cpp',
            'platform/animation/KeyframeValueList.cpp',
            'platform/animation/KeyframeValueList.h',
            'platform/chromium/ChromiumDataObject.cpp',
            'platform/chromium/ChromiumDataObject.h',
            'platform/chromium/ChromiumDataObjectItem.cpp',
            'platform/chromium/ChromiumDataObjectItem.h',
            'platform/chromium/KeyCodeConversion.h',
            'platform/chromium/KeyCodeConversionAndroid.cpp',
            'platform/chromium/KeyCodeConversionGtk.cpp',
            'platform/mac/ThemeMac.h',
            'platform/mac/ThemeMac.mm',
            'platform/mediastream/MediaStreamCenter.cpp',
            'platform/mediastream/MediaStreamCenter.h',
            'platform/mediastream/MediaStreamDescriptor.cpp',
            'platform/mediastream/MediaStreamDescriptor.h',
            'platform/mediastream/RTCDataChannelHandler.cpp',
            'platform/mediastream/RTCDataChannelHandler.h',
            'platform/mediastream/RTCDataChannelHandlerClient.h',
            'platform/mediastream/RTCPeerConnectionHandler.cpp',
            'platform/mediastream/RTCPeerConnectionHandler.h',
            'platform/mediastream/RTCPeerConnectionHandlerClient.h',
            'platform/mediastream/RTCStatsRequest.h',
            'platform/mock/GeolocationClientMock.cpp',
        ],
        'webcore_svg_files': [
            'rendering/style/SVGRenderStyle.cpp',
            'rendering/style/SVGRenderStyleDefs.cpp',
            'rendering/svg/ReferenceFilterBuilder.cpp',
            'rendering/svg/ReferenceFilterBuilder.h',
            'rendering/svg/RenderSVGBlock.cpp',
            'rendering/svg/RenderSVGBlock.h',
            'rendering/svg/RenderSVGContainer.cpp',
            'rendering/svg/RenderSVGContainer.h',
            'rendering/svg/RenderSVGEllipse.cpp',
            'rendering/svg/RenderSVGEllipse.h',
            'rendering/svg/RenderSVGForeignObject.cpp',
            'rendering/svg/RenderSVGForeignObject.h',
            'rendering/svg/RenderSVGGradientStop.cpp',
            'rendering/svg/RenderSVGGradientStop.h',
            'rendering/svg/RenderSVGHiddenContainer.cpp',
            'rendering/svg/RenderSVGHiddenContainer.h',
            'rendering/svg/RenderSVGImage.cpp',
            'rendering/svg/RenderSVGImage.h',
            'rendering/svg/RenderSVGInline.cpp',
            'rendering/svg/RenderSVGInline.h',
            'rendering/svg/RenderSVGInlineText.cpp',
            'rendering/svg/RenderSVGInlineText.h',
            'rendering/svg/RenderSVGModelObject.cpp',
            'rendering/svg/RenderSVGModelObject.h',
            'rendering/svg/RenderSVGPath.cpp',
            'rendering/svg/RenderSVGPath.h',
            'rendering/svg/RenderSVGRect.cpp',
            'rendering/svg/RenderSVGRect.h',
            'rendering/svg/RenderSVGResource.cpp',
            'rendering/svg/RenderSVGResource.h',
            'rendering/svg/RenderSVGResourceClipper.cpp',
            'rendering/svg/RenderSVGResourceClipper.h',
            'rendering/svg/RenderSVGResourceContainer.cpp',
            'rendering/svg/RenderSVGResourceContainer.h',
            'rendering/svg/RenderSVGResourceFilter.cpp',
            'rendering/svg/RenderSVGResourceFilter.h',
            'rendering/svg/RenderSVGResourceFilterPrimitive.cpp',
            'rendering/svg/RenderSVGResourceFilterPrimitive.h',
            'rendering/svg/RenderSVGResourceGradient.cpp',
            'rendering/svg/RenderSVGResourceGradient.h',
            'rendering/svg/RenderSVGResourceLinearGradient.cpp',
            'rendering/svg/RenderSVGResourceLinearGradient.h',
            'rendering/svg/RenderSVGResourceMarker.cpp',
            'rendering/svg/RenderSVGResourceMarker.h',
            'rendering/svg/RenderSVGResourceMasker.cpp',
            'rendering/svg/RenderSVGResourceMasker.h',
            'rendering/svg/RenderSVGResourcePattern.cpp',
            'rendering/svg/RenderSVGResourcePattern.h',
            'rendering/svg/RenderSVGResourceRadialGradient.cpp',
            'rendering/svg/RenderSVGResourceRadialGradient.h',
            'rendering/svg/RenderSVGResourceSolidColor.cpp',
            'rendering/svg/RenderSVGResourceSolidColor.h',
            'rendering/svg/RenderSVGRoot.cpp',
            'rendering/svg/RenderSVGRoot.h',
            'rendering/svg/RenderSVGShape.cpp',
            'rendering/svg/RenderSVGShape.h',
            'rendering/svg/RenderSVGTSpan.cpp',
            'rendering/svg/RenderSVGTSpan.h',
            'rendering/svg/RenderSVGText.cpp',
            'rendering/svg/RenderSVGText.h',
            'rendering/svg/RenderSVGTextPath.cpp',
            'rendering/svg/RenderSVGTextPath.h',
            'rendering/svg/RenderSVGTransformableContainer.cpp',
            'rendering/svg/RenderSVGTransformableContainer.h',
            'rendering/svg/RenderSVGViewportContainer.cpp',
            'rendering/svg/RenderSVGViewportContainer.h',
            'rendering/svg/SVGInlineFlowBox.cpp',
            'rendering/svg/SVGInlineFlowBox.h',
            'rendering/svg/SVGInlineTextBox.cpp',
            'rendering/svg/SVGInlineTextBox.h',
            'rendering/svg/SVGMarkerData.h',
            'rendering/svg/SVGPathData.cpp',
            'rendering/svg/SVGPathData.h',
            'rendering/svg/SVGRenderSupport.cpp',
            'rendering/svg/SVGRenderSupport.h',
            'rendering/svg/SVGRenderTreeAsText.cpp',
            'rendering/svg/SVGRenderTreeAsText.h',
            'rendering/svg/SVGRenderingContext.cpp',
            'rendering/svg/SVGRenderingContext.h',
            'rendering/svg/SVGResources.cpp',
            'rendering/svg/SVGResources.h',
            'rendering/svg/SVGResourcesCache.cpp',
            'rendering/svg/SVGResourcesCycleSolver.cpp',
            'rendering/svg/SVGResourcesCycleSolver.h',
            'rendering/svg/SVGRootInlineBox.cpp',
            'rendering/svg/SVGRootInlineBox.h',
            'rendering/svg/SVGTextChunk.cpp',
            'rendering/svg/SVGTextChunk.h',
            'rendering/svg/SVGTextChunkBuilder.cpp',
            'rendering/svg/SVGTextChunkBuilder.h',
            'rendering/svg/SVGTextFragment.h',
            'rendering/svg/SVGTextLayoutAttributes.cpp',
            'rendering/svg/SVGTextLayoutAttributes.h',
            'rendering/svg/SVGTextLayoutAttributesBuilder.cpp',
            'rendering/svg/SVGTextLayoutAttributesBuilder.h',
            'rendering/svg/SVGTextLayoutEngine.cpp',
            'rendering/svg/SVGTextLayoutEngine.h',
            'rendering/svg/SVGTextLayoutEngineBaseline.cpp',
            'rendering/svg/SVGTextLayoutEngineBaseline.h',
            'rendering/svg/SVGTextLayoutEngineSpacing.cpp',
            'rendering/svg/SVGTextLayoutEngineSpacing.h',
            'rendering/svg/SVGTextMetrics.cpp',
            'rendering/svg/SVGTextMetrics.h',
            'rendering/svg/SVGTextMetricsBuilder.cpp',
            'rendering/svg/SVGTextMetricsBuilder.h',
            'rendering/svg/SVGTextQuery.cpp',
            'rendering/svg/SVGTextQuery.h',
            'rendering/svg/SVGTextRunRenderingContext.cpp',
            'rendering/svg/SVGTextRunRenderingContext.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/SVGAltGlyphDefElement.cpp',
            'svg/SVGAltGlyphDefElement.h',
            'svg/SVGAltGlyphElement.cpp',
            'svg/SVGAltGlyphElement.h',
            'svg/SVGAltGlyphItemElement.cpp',
            'svg/SVGAltGlyphItemElement.h',
            'svg/SVGAngle.cpp',
            'svg/SVGAnimateColorElement.cpp',
            'svg/SVGAnimateColorElement.h',
            'svg/SVGAnimatedAngle.cpp',
            'svg/SVGAnimatedBoolean.cpp',
            'svg/SVGAnimatedColor.cpp',
            'svg/SVGAnimatedEnumeration.cpp',
            'svg/SVGAnimatedInteger.cpp',
            'svg/SVGAnimatedIntegerOptionalInteger.cpp',
            'svg/SVGAnimatedLength.cpp',
            'svg/SVGAnimatedLengthList.cpp',
            'svg/SVGAnimatedNumber.cpp',
            'svg/SVGAnimatedNumberList.cpp',
            'svg/SVGAnimatedNumberOptionalNumber.cpp',
            'svg/SVGAnimatedPath.cpp',
            'svg/SVGAnimatedPointList.cpp',
            'svg/SVGAnimatedPreserveAspectRatio.cpp',
            'svg/SVGAnimatedRect.cpp',
            'svg/SVGAnimatedString.cpp',
            'svg/SVGAnimatedTransformList.cpp',
            'svg/SVGAnimatedType.cpp',
            'svg/SVGAnimatedTypeAnimator.cpp',
            'svg/SVGAnimatedTypeAnimator.h',
            'svg/SVGAnimateElement.cpp',
            'svg/SVGAnimateElement.h',
            'svg/SVGAnimateMotionElement.cpp',
            'svg/SVGAnimateMotionElement.h',
            'svg/SVGAnimateTransformElement.cpp',
            'svg/SVGAnimateTransformElement.h',
            'svg/SVGAnimationElement.cpp',
            'svg/SVGAnimationElement.h',
            'svg/SVGCircleElement.cpp',
            'svg/SVGCircleElement.h',
            'svg/SVGClipPathElement.cpp',
            'svg/SVGClipPathElement.h',
            'svg/SVGColor.cpp',
            '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/SVGDocument.cpp',
            'svg/SVGDocument.h',
            'svg/SVGDocumentExtensions.cpp',
            'svg/SVGElement.cpp',
            'svg/SVGElementInstance.cpp',
            'svg/SVGElementInstance.h',
            'svg/SVGElementInstanceList.cpp',
            'svg/SVGElementInstanceList.h',
            'svg/SVGElementRareData.h',
            'svg/SVGEllipseElement.cpp',
            'svg/SVGEllipseElement.h',
            'svg/SVGExternalResourcesRequired.cpp',
            'svg/SVGExternalResourcesRequired.h',
            '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/SVGFontData.cpp',
            'svg/SVGFontData.h',
            'svg/SVGFontElement.cpp',
            'svg/SVGFontElement.h',
            'svg/SVGFontFaceElement.cpp',
            'svg/SVGFontFaceElement.h',
            'svg/SVGFontFaceFormatElement.cpp',
            'svg/SVGFontFaceFormatElement.h',
            'svg/SVGFontFaceNameElement.cpp',
            'svg/SVGFontFaceNameElement.h',
            'svg/SVGFontFaceSrcElement.cpp',
            'svg/SVGFontFaceSrcElement.h',
            'svg/SVGFontFaceUriElement.cpp',
            'svg/SVGFontFaceUriElement.h',
            'svg/SVGForeignObjectElement.cpp',
            'svg/SVGForeignObjectElement.h',
            'svg/SVGGElement.cpp',
            'svg/SVGGElement.h',
            'svg/SVGGlyphElement.cpp',
            'svg/SVGGlyphElement.h',
            'svg/SVGGlyphRefElement.cpp',
            'svg/SVGGlyphRefElement.h',
            'svg/SVGGlyphMap.h',
            'svg/SVGGeometryElement.cpp',
            'svg/SVGGeometryElement.h',
            'svg/SVGGradientElement.cpp',
            'svg/SVGGradientElement.h',
            'svg/SVGGraphicsElement.cpp',
            'svg/SVGGraphicsElement.h',
            'svg/SVGHKernElement.cpp',
            'svg/SVGHKernElement.h',
            'svg/SVGImageElement.cpp',
            'svg/SVGImageElement.h',
            'svg/SVGImageLoader.cpp',
            'svg/SVGImageLoader.h',
            'svg/SVGLength.cpp',
            'svg/SVGLengthContext.cpp',
            'svg/SVGLengthList.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/SVGMetadataElement.cpp',
            'svg/SVGMetadataElement.h',
            'svg/SVGMissingGlyphElement.cpp',
            'svg/SVGMissingGlyphElement.h',
            'svg/SVGNumber.h',
            'svg/SVGNumberList.cpp',
            'svg/SVGNumberList.h',
            'svg/SVGPaint.cpp',
            '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.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/SVGPathSegLinetoRel.h',
            'svg/SVGPathSegLinetoHorizontal.h',
            'svg/SVGPathSegLinetoHorizontalAbs.h',
            'svg/SVGPathSegLinetoHorizontalRel.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/SVGPathSegMovetoAbs.h',
            'svg/SVGPathSegMovetoRel.h',
            'svg/SVGPathSegWithContext.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.h',
            'svg/SVGPointList.cpp',
            'svg/SVGPointList.h',
            'svg/SVGPolyElement.cpp',
            'svg/SVGPolyElement.h',
            'svg/SVGPolygonElement.cpp',
            'svg/SVGPolygonElement.h',
            'svg/SVGPolylineElement.cpp',
            'svg/SVGPolylineElement.h',
            'svg/SVGPreserveAspectRatio.cpp',
            'svg/SVGRadialGradientElement.cpp',
            'svg/SVGRadialGradientElement.h',
            'svg/SVGRect.h',
            'svg/SVGRectElement.cpp',
            'svg/SVGRectElement.h',
            'svg/SVGRenderingIntent.h',
            'svg/SVGSVGElement.cpp',
            'svg/SVGSVGElement.h',
            'svg/SVGScriptElement.cpp',
            'svg/SVGScriptElement.h',
            'svg/SVGSetElement.cpp',
            'svg/SVGSetElement.h',
            'svg/SVGStopElement.cpp',
            'svg/SVGStopElement.h',
            'svg/SVGStringList.cpp',
            'svg/SVGStringList.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/SVGURIReference.cpp',
            'svg/SVGURIReference.h',
            'svg/SVGUnitTypes.h',
            'svg/SVGUnknownElement.cpp',
            'svg/SVGUnknownElement.h',
            'svg/SVGUseElement.cpp',
            'svg/SVGUseElement.h',
            'svg/SVGVKernElement.cpp',
            'svg/SVGVKernElement.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/SVGImageCache.cpp',
            'svg/graphics/SVGImageCache.h',
            'svg/graphics/SVGImageChromeClient.h',
            'svg/graphics/SVGImage.cpp',
            'svg/graphics/SVGImage.h',
            'svg/graphics/SVGImageForContainer.h',
            'svg/graphics/SVGImageForContainer.cpp',
            'svg/graphics/filters/SVGFEImage.cpp',
            'svg/graphics/filters/SVGFEImage.h',
            'svg/graphics/filters/SVGFilter.cpp',
            'svg/graphics/filters/SVGFilter.h',
            'svg/graphics/filters/SVGFilterBuilder.cpp',
            'svg/graphics/filters/SVGFilterBuilder.h',
            'svg/properties/SVGAnimatedProperty.cpp',
            'svg/properties/SVGAnimatedProperty.h',
            'svg/properties/SVGAttributeToPropertyMap.cpp',
            'svg/properties/SVGAnimatedPathSegListPropertyTearOff.h',
            'svg/properties/SVGPathSegListPropertyTearOff.cpp',
        ],
        'webcore_testing_support_idl_files': [
          'testing/GCObservation.idl',
          'testing/Internals.idl',
          'testing/InternalProfilers.idl',
          'testing/InternalSettings.idl',
          'testing/LayerRect.idl',
          'testing/LayerRectList.idl',
          'testing/MallocStatistics.idl',
          'testing/TypeConversions.idl',
        ],
        'generated_webcore_testing_support_idl_files': [
          '<(SHARED_INTERMEDIATE_DIR)/blink/InternalSettingsGenerated.idl',
          '<(SHARED_INTERMEDIATE_DIR)/blink/InternalRuntimeFlags.idl',
        ],
        'webcore_test_support_files': [
            'testing/v8/WebCoreTestSupport.cpp',
            'testing/v8/WebCoreTestSupport.h',
            'testing/DummyPageHolder.cpp',
            'testing/DummyPageHolder.h',
            'testing/GCObservation.cpp',
            'testing/GCObservation.h',
            'testing/InspectorFrontendClientLocal.cpp',
            'testing/InspectorFrontendClientLocal.h',
            'testing/Internals.cpp',
            'testing/Internals.h',
            'testing/InternalProfilers.cpp',
            'testing/InternalProfilers.h',
            'testing/InternalSettings.cpp',
            'testing/InternalSettings.h',
            'testing/LayerRect.h',
            'testing/LayerRectList.cpp',
            'testing/LayerRectList.h',
            'testing/MallocStatistics.h',
            'testing/MockPagePopupDriver.cpp',
            'testing/MockPagePopupDriver.h',
            'testing/TypeConversions.h',
            '<(SHARED_INTERMEDIATE_DIR)/blink/InternalSettingsGenerated.cpp',
            '<(SHARED_INTERMEDIATE_DIR)/blink/InternalSettingsGenerated.h',
        ],
        'webcore_platform_support_files': [
            'platform/chromium/support/WebArrayBuffer.cpp',
            'platform/chromium/support/WebCrypto.cpp',
            'platform/chromium/support/WebMediaStream.cpp',
            'platform/chromium/support/WebMediaStreamTrack.cpp',
            'platform/chromium/support/WebRTCSessionDescription.cpp',
            'platform/chromium/support/WebRTCSessionDescriptionRequest.cpp',
            'platform/chromium/support/WebRTCStatsRequest.cpp',
        ],
        'core_unittest_files': [
            'animation/AnimatableColorTest.cpp',
            'animation/AnimatableDoubleTest.cpp',
            'animation/AnimatableLengthTest.cpp',
            'animation/AnimatableNeutralTest.cpp',
            'animation/AnimatableStrokeDasharrayListTest.cpp',
            'animation/AnimatableUnknownTest.cpp',
            'animation/AnimatableValueTestHelper.cpp',
            'animation/AnimatableValueTestHelper.h',
            'animation/AnimatableValueTestHelperTest.cpp',
            'animation/AnimationClockTest.cpp',
            'animation/CompositorAnimationsTest.cpp',
            'animation/CompositorAnimationsTestHelper.h',
            'animation/CompositorAnimationsTimingFunctionReverserTest.cpp',
            'animation/DocumentTimelineTest.cpp',
            'animation/ElementAnimationTest.cpp',
            'animation/KeyframeAnimationEffectTest.cpp',
            'animation/PlayerTest.cpp',
            'animation/TimedItemCalculationsTest.cpp',
            'animation/TimedItemTest.cpp',
            'css/CSSParserValuesTest.cpp',
            'css/CSSCalculationValueTest.cpp',
            'css/CSSValueTestHelper.h',
            'dom/DocumentMarkerControllerTest.cpp',
            'editing/TextIteratorTest.cpp',
            'dom/MainThreadTaskRunnerTest.cpp',
            'fetch/ImageResourceTest.cpp',
            'fetch/MemoryCacheTest.cpp',
            'fetch/RawResourceTest.cpp',
            'fetch/ResourceFetcherTest.cpp',
            'html/HTMLDimensionTest.cpp',
            'html/LinkRelAttributeTest.cpp',
            'html/TimeRangesTest.cpp',
            'html/track/vtt/BufferedLineReaderTest.cpp',
            'frame/ImageBitmapTest.cpp',
            'platform/animation/AnimationTranslationUtilTest.cpp',
            'platform/animation/TimingFunctionTestHelper.h',
            'platform/animation/TimingFunctionTestHelper.cpp',
            'platform/animation/TimingFunctionTestHelperTest.cpp',
            'rendering/RenderOverflowTest.cpp',
            'rendering/shapes/BoxShapeTest.cpp',
            'testing/UnitTestHelpers.h',
            'testing/UnitTestHelpers.cpp',
        ],
    }
}