summaryrefslogtreecommitdiff
path: root/Source/core/core.gypi
blob: fba11faa789fb741b57c447a92408a5c035131ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
{
    'variables': {
        'deprecated_perl_core_idl_files': [
            'css/CSS.idl',
            'css/CSSCharsetRule.idl',
            'css/CSSFontFaceLoadEvent.idl',
            'css/CSSFontFaceRule.idl',
            'css/CSSHostRule.idl',
            'css/CSSImportRule.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/CSSViewportRule.idl',
            'css/CSSVariablesMap.idl',
            'css/Counter.idl',
            'css/FontLoader.idl',
            'css/MediaList.idl',
            'css/MediaQueryList.idl',
            'css/StyleMedia.idl',
            'css/StyleSheet.idl',
            'css/StyleSheetList.idl',
            'css/WebKitCSSFilterRule.idl',
            'css/WebKitCSSFilterValue.idl',
            'css/WebKitCSSKeyframeRule.idl',
            'css/WebKitCSSKeyframesRule.idl',
            'css/WebKitCSSMatrix.idl',
            'css/WebKitCSSMixFunctionValue.idl',
            'css/WebKitCSSRegionRule.idl',
            'css/WebKitCSSTransformValue.idl',
            'dom/Attr.idl',
            'dom/AutocompleteErrorEvent.idl',
            'dom/BeforeLoadEvent.idl',
            'dom/CDATASection.idl',
            'dom/CharacterData.idl',
            'dom/ClientRect.idl',
            'dom/ClientRectList.idl',
            'dom/Clipboard.idl',
            'dom/Comment.idl',
            'dom/CompositionEvent.idl',
            'dom/CustomEvent.idl',
            'dom/DOMError.idl',
            'dom/DOMException.idl',
            'dom/DOMImplementation.idl',
            'dom/DOMStringList.idl',
            'dom/DOMStringMap.idl',
            'dom/DataTransferItem.idl',
            'dom/DataTransferItemList.idl',
            'dom/Document.idl',
            'dom/DocumentFragment.idl',
            'dom/DocumentType.idl',
            'dom/Element.idl',
            'dom/Entity.idl',
            'dom/ErrorEvent.idl',
            'dom/Event.idl',
            'dom/EventTarget.idl',
            'dom/FocusEvent.idl',
            'dom/HashChangeEvent.idl',
            'dom/KeyboardEvent.idl',
            'dom/MessageChannel.idl',
            'dom/MessageEvent.idl',
            'dom/MessagePort.idl',
            'dom/MouseEvent.idl',
            'dom/MutationEvent.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/OverflowEvent.idl',
            'dom/PageTransitionEvent.idl',
            'dom/PopStateEvent.idl',
            'dom/ProcessingInstruction.idl',
            'dom/ProgressEvent.idl',
            'dom/Promise.idl',
            'dom/PromiseResolver.idl',
            'dom/Range.idl',
            'dom/ResourceProgressEvent.idl',
            'dom/SecurityPolicyViolationEvent.idl',
            'dom/Text.idl',
            'dom/TextEvent.idl',
            'dom/Touch.idl',
            'dom/TouchEvent.idl',
            'dom/TouchList.idl',
            'dom/TransitionEvent.idl',
            'dom/TreeWalker.idl',
            'dom/UIEvent.idl',
            'dom/WebKitAnimationEvent.idl',
            'dom/WebKitNamedFlow.idl',
            'dom/WebKitNamedFlowCollection.idl',
            'dom/WheelEvent.idl',
            'dom/shadow/ShadowRoot.idl',
            'fileapi/Blob.idl',
            'fileapi/File.idl',
            'fileapi/FileError.idl',
            'fileapi/FileList.idl',
            'fileapi/FileReader.idl',
            'fileapi/FileReaderSync.idl',
            'fileapi/Stream.idl',
            'html/DOMSettableTokenList.idl',
            'html/DOMTokenList.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/HTMLTextAreaElement.idl',
            'html/HTMLTemplateElement.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/URL.idl',
            'html/ValidityState.idl',
            'html/canvas/ANGLEInstancedArrays.idl',
            'html/canvas/CanvasGradient.idl',
            'html/canvas/CanvasRenderingContext.idl',
            'html/canvas/CanvasRenderingContext2D.idl',
            'html/canvas/Canvas2DContextAttributes.idl',
            'html/canvas/EXTTextureFilterAnisotropic.idl',
            'html/canvas/OESStandardDerivatives.idl',
            'html/canvas/OESTextureHalfFloat.idl',
            'html/canvas/OESVertexArrayObject.idl',
            'html/canvas/Path.idl',
            'html/canvas/WebGLActiveInfo.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/WebGLLoseContext.idl',
            'html/canvas/WebGLRenderingContext.idl',
            'html/canvas/WebGLShaderPrecisionFormat.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/TextTrackRegion.idl',
            'html/track/TextTrackRegionList.idl',
            'inspector/InjectedScriptHost.idl',
            'inspector/InspectorFrontendHost.idl',
            'inspector/InspectorOverlayHost.idl',
            'inspector/JavaScriptCallFrame.idl',
            'loader/appcache/DOMApplicationCache.idl',
            'page/BarProp.idl',
            'page/Console.idl',
            'page/EventSource.idl',
            'page/History.idl',
            'page/ImageBitmap.idl',
            'page/ImageBitmapFactories.idl',
            'page/Location.idl',
            'page/MemoryInfo.idl',
            'page/Navigator.idl',
            'page/PagePopupController.idl',
            'page/Performance.idl',
            'page/PerformanceEntry.idl',
            'page/PerformanceMark.idl',
            'page/PerformanceMeasure.idl',
            'page/PerformanceNavigation.idl',
            'page/PerformanceResourceTiming.idl',
            'page/PerformanceTiming.idl',
            'page/Screen.idl',
            'page/SecurityPolicy.idl',
            'page/Selection.idl',
            'page/SpeechInputEvent.idl',
            'page/SpeechInputResult.idl',
            'page/SpeechInputResultList.idl',
            'page/WebKitPoint.idl',
            'page/Window.idl',
            'page/WorkerNavigator.idl',
            'plugins/MimeType.idl',
            'plugins/MimeTypeArray.idl',
            'plugins/Plugin.idl',
            'plugins/PluginArray.idl',
            'storage/Storage.idl',
            'storage/StorageEvent.idl',
            'workers/DedicatedWorkerGlobalScope.idl',
            'workers/SharedWorker.idl',
            'workers/SharedWorkerGlobalScope.idl',
            'workers/Worker.idl',
            'workers/WorkerGlobalScope.idl',
            'workers/WorkerLocation.idl',
            'xml/DOMParser.idl',
            'xml/XMLHttpRequest.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',
        ],
        'python_core_idl_files': [
            'css/RGBColor.idl',
            'css/Rect.idl',
            'dom/ChildNode.idl',
            'dom/DocumentFullscreen.idl',
            'dom/ParentNode.idl',
            'dom/RequestAnimationFrameCallback.idl',
            'dom/StringCallback.idl',
            'html/VoidCallback.idl',
            'html/canvas/CanvasPattern.idl',
            'html/canvas/EXTFragDepth.idl',
            'html/canvas/OESElementIndexUint.idl',
            'html/canvas/OESTextureFloat.idl',
            'html/canvas/OESTextureFloatLinear.idl',
            'html/canvas/OESTextureHalfFloatLinear.idl',
            'html/canvas/WebGLBuffer.idl',
            'html/canvas/WebGLFramebuffer.idl',
            'html/canvas/WebGLProgram.idl',
            'html/canvas/WebGLRenderbuffer.idl',
            'html/canvas/WebGLShader.idl',
            'html/canvas/WebGLTexture.idl',
            'html/canvas/WebGLUniformLocation.idl',
            'html/canvas/WebGLVertexArrayObjectOES.idl',
            'page/WindowBase64.idl',
            'page/WindowPagePopup.idl',
            'page/WindowTimers.idl',
            'workers/AbstractWorker.idl',
            'xml/DocumentXPathEvaluator.idl',
        ],
        'deprecated_perl_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/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/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/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/SVGTRefElement.idl',
            'svg/SVGTSpanElement.idl',
            'svg/SVGTextContentElement.idl',
            'svg/SVGTextElement.idl',
            'svg/SVGTextPathElement.idl',
            'svg/SVGTextPositioningElement.idl',
            'svg/SVGTitleElement.idl',
            'svg/SVGTransform.idl',
            'svg/SVGTransformList.idl',
            'svg/SVGUnitTypes.idl',
            'svg/SVGUseElement.idl',
            'svg/SVGVKernElement.idl',
            'svg/SVGViewElement.idl',
            'svg/SVGViewSpec.idl',
            'svg/SVGZoomEvent.idl',
        ],
        'python_svg_idl_files': [
            'svg/SVGExternalResourcesRequired.idl',
            'svg/SVGFilterPrimitiveStandardAttributes.idl',
            'svg/SVGFitToViewBox.idl',
            'svg/SVGTests.idl',
            'svg/SVGURIReference.idl',
            'svg/SVGZoomAndPan.idl',
        ],
        'webcore_files': [
            'Init.cpp',
            'Init.h',
            'accessibility/AXObjectCache.cpp',
            'accessibility/AccessibilityARIAGrid.cpp',
            'accessibility/AccessibilityARIAGrid.h',
            'accessibility/AccessibilityARIAGridCell.cpp',
            'accessibility/AccessibilityARIAGridCell.h',
            'accessibility/AccessibilityARIAGridRow.cpp',
            'accessibility/AccessibilityARIAGridRow.h',
            'accessibility/AccessibilityImageMapLink.cpp',
            'accessibility/AccessibilityImageMapLink.h',
            'accessibility/AccessibilityList.cpp',
            'accessibility/AccessibilityList.h',
            'accessibility/AccessibilityListBox.cpp',
            'accessibility/AccessibilityListBox.h',
            'accessibility/AccessibilityListBoxOption.cpp',
            'accessibility/AccessibilityListBoxOption.h',
            'accessibility/AccessibilityMediaControls.cpp',
            'accessibility/AccessibilityMediaControls.h',
            'accessibility/AccessibilityMenuList.cpp',
            'accessibility/AccessibilityMenuList.h',
            'accessibility/AccessibilityMenuListOption.cpp',
            'accessibility/AccessibilityMenuListOption.h',
            'accessibility/AccessibilityMenuListPopup.cpp',
            'accessibility/AccessibilityMenuListPopup.h',
            'accessibility/AccessibilityMockObject.cpp',
            'accessibility/AccessibilityMockObject.h',
            'accessibility/AccessibilityNodeObject.cpp',
            'accessibility/AccessibilityNodeObject.h',
            'accessibility/AccessibilityObject.cpp',
            'accessibility/AccessibilityProgressIndicator.cpp',
            'accessibility/AccessibilityProgressIndicator.h',
            'accessibility/AccessibilityRenderObject.cpp',
            'accessibility/AccessibilityRenderObject.h',
            'accessibility/AccessibilityScrollView.cpp',
            'accessibility/AccessibilityScrollView.h',
            'accessibility/AccessibilityScrollbar.cpp',
            'accessibility/AccessibilityScrollbar.h',
            'accessibility/AccessibilitySlider.cpp',
            'accessibility/AccessibilitySlider.h',
            'accessibility/AccessibilitySpinButton.cpp',
            'accessibility/AccessibilitySpinButton.h',
            'accessibility/AccessibilitySVGRoot.cpp',
            'accessibility/AccessibilitySVGRoot.h',
            'accessibility/AccessibilityTable.cpp',
            'accessibility/AccessibilityTable.h',
            'accessibility/AccessibilityTableCell.cpp',
            'accessibility/AccessibilityTableCell.h',
            'accessibility/AccessibilityTableColumn.cpp',
            'accessibility/AccessibilityTableColumn.h',
            'accessibility/AccessibilityTableHeaderContainer.cpp',
            'accessibility/AccessibilityTableHeaderContainer.h',
            'accessibility/AccessibilityTableRow.cpp',
            'accessibility/AccessibilityTableRow.h',
            'animation/ActiveAnimations.h',
            'animation/AnimatableNeutral.h',
            'animation/AnimatableNumber.cpp',
            'animation/AnimatableNumber.h',
            'animation/AnimatableUnknown.h',
            'animation/AnimatableValue.cpp',
            'animation/AnimatableValue.h',
            'animation/Animation.cpp',
            'animation/Animation.h',
            'animation/AnimationEffect.h',
            'animation/AnimationStack.h',
            'animation/DocumentTimeline.cpp',
            'animation/DocumentTimeline.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',
            '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/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/CSSFontSelector.cpp',
            'css/CSSFontSelector.h',
            'css/CSSFunctionValue.cpp',
            'css/CSSFunctionValue.h',
            'css/CSSGradientValue.cpp',
            'css/CSSGradientValue.h',
            'css/CSSGridTemplateValue.cpp',
            'css/CSSGridTemplateValue.h',
            'css/CSSGroupingRule.cpp',
            'css/CSSGroupingRule.h',
            'css/CSSHostRule.cpp',
            'css/CSSHostRule.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/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.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/CSSSelector.cpp',
            'css/CSSSelectorList.cpp',
            'css/CSSSelectorList.h',
            'css/CSSShaderValue.cpp',
            'css/CSSShaderValue.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/CSSToStyleMap.cpp',
            'css/CSSToStyleMap.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/CSSVariablesMap.cpp',
            'css/CSSVariablesMap.h',
            'css/CSSVariableValue.h',
            'css/CSSViewportRule.h',
            'css/CSSViewportRule.cpp',
            'css/Counter.h',
            'css/DOMWindowCSS.cpp',
            'css/DOMWindowCSS.h',
            'css/DocumentRuleSets.cpp',
            'css/DocumentRuleSets.h',
            'css/ElementRuleCollector.cpp',
            'css/ElementRuleCollector.h',
            'css/FontFeatureValue.cpp',
            'css/FontFeatureValue.h',
            'css/FontLoader.h',
            'css/FontLoader.cpp',
            'css/FontSize.cpp',
            'css/FontSize.h',
            'css/FontValue.cpp',
            'css/FontValue.h',
            'css/InspectorCSSOMWrappers.cpp',
            'css/InspectorCSSOMWrappers.h',
            'css/LengthFunctions.cpp',
            '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/ShadowValue.cpp',
            'css/ShadowValue.h',
            'css/SiblingTraversalStrategies.h',
            'css/StyleColor.cpp',
            '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/resolver/AnimatedStyleBuilder.cpp',
            'css/resolver/AnimatedStyleBuilder.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/SharedStyleFinder.cpp',
            'css/resolver/SharedStyleFinder.h',
            'css/resolver/StyleAdjuster.cpp',
            'css/resolver/StyleAdjuster.h',
            'css/resolver/StyleBuilderCustom.cpp',
            'css/resolver/StyleBuilderCustom.h',
            'css/resolver/StyleResolver.cpp',
            'css/resolver/StyleResolver.h',
            'css/resolver/StyleResolverState.cpp',
            'css/resolver/StyleResolverState.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/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/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/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/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/UndoStep.h',
            'editing/UnlinkCommand.cpp',
            'editing/UnlinkCommand.h',
            'editing/VisiblePosition.cpp',
            'editing/VisibleSelection.cpp',
            'editing/VisibleUnits.cpp',
            'editing/WrapContentsInDummySpanCommand.cpp',
            'editing/WrapContentsInDummySpanCommand.h',
            'editing/chromium/EditorChromium.cpp',
            'editing/htmlediting.cpp',
            'editing/markup.cpp',
            'fileapi/Blob.cpp',
            'fileapi/Blob.h',
            'fileapi/BlobBuilder.cpp',
            'fileapi/BlobBuilder.h',
            'fileapi/BlobRegistry.cpp',
            'fileapi/BlobRegistry.h',
            'fileapi/BlobURL.cpp',
            'fileapi/BlobURL.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/BackForwardClient.h',
            'history/BackForwardController.cpp',
            'history/HistoryItem.cpp',
            '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/TimelineTraceEventProcessor.cpp',
            'inspector/TimelineTraceEventProcessor.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/CachedMetadata.cpp',
            'loader/CachedMetadata.h',
            'loader/CookieJar.cpp',
            'loader/CrossOriginAccessControl.cpp',
            'loader/CrossOriginAccessControl.h',
            '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/FrameLoadRequest.h',
            'loader/FrameLoader.cpp',
            'loader/FrameLoaderStateMachine.cpp',
            'loader/HistoryController.cpp',
            'loader/IconController.cpp',
            'loader/IconController.h',
            '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/Prerenderer.cpp',
            'loader/Prerenderer.h',
            'loader/PrerendererClient.cpp',
            'loader/PrerendererClient.h',
            'loader/ProgressTracker.cpp',
            'loader/ResourceLoadNotifier.cpp',
            'loader/ResourceLoader.cpp',
            'loader/ResourceLoaderOptions.h',
            'loader/SinkDocument.cpp',
            'loader/SinkDocument.h',
            'loader/SubstituteData.h',
            'loader/TextResourceDecoder.cpp',
            '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/ApplicationCacheHost.h',
            'loader/appcache/DOMApplicationCache.cpp',
            'loader/appcache/DOMApplicationCache.h',
            'loader/archive/ArchiveResource.cpp',
            'loader/archive/ArchiveResourceCollection.cpp',
            'loader/archive/ArchiveResourceCollection.h',
            'loader/archive/MHTMLArchive.cpp',
            'loader/archive/MHTMLArchive.h',
            'loader/archive/MHTMLParser.cpp',
            'loader/archive/MHTMLParser.h',
            'loader/cache/CSSStyleSheetResource.cpp',
            'loader/cache/CSSStyleSheetResource.h',
            'loader/cache/DocumentResource.cpp',
            'loader/cache/DocumentResource.h',
            'loader/cache/FontResource.cpp',
            'loader/cache/FontResource.h',
            'loader/cache/ImageResource.cpp',
            'loader/cache/RawResource.cpp',
            'loader/cache/Resource.cpp',
            'loader/cache/ResourceClientWalker.h',
            'loader/cache/ResourcePtr.cpp',
            'loader/cache/ResourceFetcher.cpp',
            'loader/cache/FetchRequest.cpp',
            'loader/cache/FetchInitiatorInfo.h',
            'loader/cache/ScriptResource.cpp',
            'loader/cache/ScriptResource.h',
            'loader/cache/ShaderResource.cpp',
            'loader/cache/ShaderResource.h',
            'loader/cache/DocumentResourceReference.h',
            'loader/cache/TextTrackResource.cpp',
            'loader/cache/TextTrackResource.h',
            'loader/cache/XSLStyleSheetResource.cpp',
            'loader/cache/XSLStyleSheetResource.h',
            'loader/cache/MemoryCache.cpp',
            'page/AutoscrollController.cpp',
            'page/AutoscrollController.h',
            'page/BarProp.cpp',
            'page/BarProp.h',
            'page/Chrome.cpp',
            'page/Console.cpp',
            'page/ContentSecurityPolicy.cpp',
            'page/ContentSecurityPolicyResponseHeaders.cpp',
            'page/ContextMenuController.cpp',
            'page/ContextMenuProvider.h',
            'page/CreateWindow.cpp',
            'page/CreateWindow.h',
            'page/DeviceClient.h',
            'page/DeviceController.cpp',
            'page/DeviceController.h',
            'page/DiagnosticLoggingKeys.cpp',
            'page/DiagnosticLoggingKeys.h',
            'page/DOMPoint.h',
            'page/DOMSecurityPolicy.cpp',
            'page/DOMSelection.cpp',
            'page/DOMSelection.h',
            'page/DOMTimer.cpp',
            'page/DOMTimer.h',
            'page/DOMWindow.cpp',
            'page/DOMWindow.h',
            'page/DOMWindowBase64.cpp',
            'page/DOMWindowBase64.h',
            'page/DOMWindowTimers.cpp',
            'page/DOMWindowTimers.h',
            'page/DOMWindowPagePopup.cpp',
            'page/DOMWindowPagePopup.h',
            'page/DOMWindowProperty.cpp',
            'page/DOMWindowProperty.h',
            'page/DragController.cpp',
            'page/EventHandler.cpp',
            'page/EventSource.cpp',
            'page/EventSource.h',
            'page/FocusController.cpp',
            'page/Frame.cpp',
            'page/FrameActionScheduler.cpp',
            'page/FrameActionScheduler.h',
            'page/FrameDestructionObserver.cpp',
            'page/FrameDestructionObserver.h',
            'page/FrameTree.cpp',
            'page/FrameView.cpp',
            'page/History.cpp',
            'page/History.h',
            'page/ImageBitmap.cpp',
            'page/ImageBitmap.h',
            'page/ImageBitmapFactories.cpp',
            'page/ImageBitmapFactories.h',
            'page/LayoutMilestones.h',
            'page/Location.cpp',
            'page/Location.h',
            'page/MemoryInfo.cpp',
            'page/MouseEventWithHitTestResults.cpp',
            'page/MouseEventWithHitTestResults.h',
            'page/Navigator.cpp',
            'page/Navigator.h',
            'page/NavigatorBase.cpp',
            'page/NavigatorBase.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/PageScaleConstraintsSet.cpp',
            'page/PageScaleConstraintsSet.h',
            'page/PageSerializer.cpp',
            'page/PageVisibilityState.cpp',
            'page/Performance.cpp',
            'page/Performance.h',
            'page/PerformanceEntry.cpp',
            'page/PerformanceEntry.h',
            'page/PerformanceMark.h',
            'page/PerformanceMeasure.h',
            'page/PerformanceNavigation.cpp',
            'page/PerformanceNavigation.h',
            'page/PerformanceResourceTiming.cpp',
            'page/PerformanceResourceTiming.h',
            'page/PerformanceTiming.cpp',
            'page/PerformanceTiming.h',
            'page/PerformanceUserTiming.cpp',
            'page/PerformanceUserTiming.h',
            'page/PointerLockController.cpp',
            'page/PointerLockController.h',
            'page/PopupOpeningObserver.h',
            'page/PrintContext.cpp',
            'page/ResourceTimingInfo.h',
            'page/RuntimeCSSEnabled.cpp',
            'page/RuntimeCSSEnabled.h',
            'page/RuntimeEnabledFeaturesCustom.cpp',
            'page/Screen.cpp',
            'page/Screen.h',
            'page/Settings.cpp',
            'page/SpatialNavigation.cpp',
            'page/SpeechInput.cpp',
            'page/SpeechInput.h',
            'page/SpeechInputClient.h',
            'page/SpeechInputEvent.cpp',
            'page/SpeechInputEvent.h',
            'page/SpeechInputListener.h',
            'page/SpeechInputResult.cpp',
            'page/SpeechInputResult.h',
            'page/SpeechInputResultList.cpp',
            'page/SpeechInputResultList.h',
            'page/SuspendableTimer.cpp',
            'page/SuspendableTimer.h',
            'page/TouchAdjustment.cpp',
            'page/TouchAdjustment.h',
            'page/TouchDisambiguation.cpp',
            'page/TouchDisambiguation.h',
            'page/UseCounter.cpp',
            'page/UserContentURLPattern.cpp',
            'page/WindowFeatures.cpp',
            'page/WindowFocusAllowedIndicator.cpp',
            'page/WorkerNavigator.cpp',
            'page/WorkerNavigator.h',
            'page/animation/AnimationBase.cpp',
            'page/animation/AnimationBase.h',
            'page/animation/AnimationController.cpp',
            'page/animation/AnimationControllerPrivate.h',
            'page/animation/CompositeAnimation.cpp',
            'page/animation/CompositeAnimation.h',
            'page/animation/CSSPropertyAnimation.cpp',
            'page/animation/CSSPropertyAnimation.h',
            'page/animation/ImplicitAnimation.cpp',
            'page/animation/ImplicitAnimation.h',
            'page/animation/KeyframeAnimation.cpp',
            'page/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/IFrameShimSupport.cpp',
            'plugins/IFrameShimSupport.h',
            'plugins/PluginData.cpp',
            'plugins/PluginData.h',
            'plugins/PluginListBuilder.cpp',
            'plugins/PluginListBuilder.h',
            'plugins/PluginView.h',
            'rendering/AutoTableLayout.cpp',
            'rendering/AutoTableLayout.h',
            'rendering/BidiRun.cpp',
            'rendering/BidiRun.h',
            'rendering/CompositingReasons.h',
            'rendering/CounterNode.cpp',
            'rendering/CounterNode.h',
            'rendering/EllipsisBox.cpp',
            'rendering/EllipsisBox.h',
            'rendering/FilterEffectRenderer.cpp',
            'rendering/FilterEffectRenderer.h',
            'rendering/FixedTableLayout.cpp',
            'rendering/FixedTableLayout.h',
            'rendering/FlowThreadController.cpp',
            'rendering/FlowThreadController.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/LayoutRepainter.cpp',
            '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/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/RenderLayerBacking.cpp',
            'rendering/RenderLayerCompositor.cpp',
            'rendering/RenderLayerCompositor.h',
            'rendering/RenderLayerFilterInfo.cpp',
            'rendering/RenderLayerFilterInfo.h',
            'rendering/RenderLayerModelObject.cpp',
            'rendering/RenderLazyBlock.cpp',
            'rendering/RenderLazyBlock.h',
            '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/RenderMediaControlsChromium.cpp',
            'rendering/RenderMediaControlsChromium.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/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/RenderTextTrackCue.cpp',
            'rendering/RenderTextTrackCue.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/RenderVideo.cpp',
            'rendering/RenderVideo.h',
            'rendering/RenderView.cpp',
            'rendering/RenderWidget.cpp',
            'rendering/RenderWordBreak.cpp',
            'rendering/RenderWordBreak.h',
            'rendering/RootInlineBox.cpp',
            'rendering/ScrollBehavior.cpp',
            'rendering/TableLayout.h',
            'rendering/TrailingFloatsRootInlineBox.h',
            'rendering/VerticalPositionCache.h',
            'rendering/break_lines.cpp',
            'rendering/break_lines.h',
            'rendering/shapes/PolygonShape.cpp',
            'rendering/shapes/PolygonShape.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.cpp',
            'rendering/shapes/ShapeInterval.h',
            'rendering/shapes/ShapeOutsideInfo.cpp',
            'rendering/shapes/ShapeOutsideInfo.h',
            'rendering/style/BasicShapes.cpp',
            '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/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',
            '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/SharedWorkerRepository.h',
            'workers/SharedWorkerThread.cpp',
            'workers/SharedWorkerThread.h',
            'workers/Worker.cpp',
            'workers/Worker.h',
            'workers/WorkerClients.h',
            'workers/WorkerEventQueue.cpp',
            'workers/WorkerEventQueue.h',
            'workers/WorkerGlobalScopeProxy.cpp',
            'workers/WorkerGlobalScopeProxy.h',
            'workers/WorkerGlobalScope.cpp',
            'workers/WorkerGlobalScope.h',
            'workers/WorkerLoaderProxy.h',
            'workers/WorkerLocation.cpp',
            'workers/WorkerLocation.h',
            'workers/WorkerMessagingProxy.cpp',
            'workers/WorkerMessagingProxy.h',
            '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/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/AnimationEvent.cpp',
            'dom/AnimationEvent.h',
            'dom/Attr.cpp',
            'dom/AutocompleteErrorEvent.h',
            'dom/BeforeLoadEvent.h',
            'dom/BeforeTextInsertedEvent.cpp',
            'dom/BeforeTextInsertedEvent.h',
            'dom/BeforeUnloadEvent.cpp',
            'dom/BeforeUnloadEvent.h',
            'dom/CDATASection.cpp',
            'dom/CDATASection.h',
            'dom/CharacterData.cpp',
            'dom/CheckedRadioButtons.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/ClipboardEvent.cpp',
            'dom/ClipboardEvent.h',
            'dom/Comment.cpp',
            'dom/Comment.h',
            'dom/CompositionEvent.cpp',
            'dom/CompositionEvent.h',
            'dom/ContainerNode.cpp',
            'dom/ContainerNodeAlgorithms.h',
            'dom/ContainerNodeAlgorithms.cpp',
            'dom/ContextLifecycleObserver.h',
            'dom/ContextLifecycleObserver.cpp',
            'dom/ContextFeatures.cpp',
            'dom/ContextFeatures.h',
            'dom/ContextLifecycleNotifier.cpp',
            'dom/ContextLifecycleNotifier.h',
            'dom/CrossThreadTask.h',
            'dom/CustomElement.cpp',
            'dom/CustomElement.h',
            'dom/CustomElementCallbackDispatcher.cpp',
            'dom/CustomElementCallbackDispatcher.h',
            'dom/CustomElementCallbackInvocation.cpp',
            'dom/CustomElementCallbackInvocation.h',
            'dom/CustomElementCallbackQueue.cpp',
            'dom/CustomElementCallbackQueue.h',
            'dom/CustomElementCallbackScheduler.cpp',
            'dom/CustomElementCallbackScheduler.h',
            'dom/CustomElementDefinition.cpp',
            'dom/CustomElementDefinition.h',
            'dom/CustomElementDescriptor.h',
            'dom/CustomElementDescriptorHash.h',
            'dom/CustomElementLifecycleCallbacks.h',
            'dom/CustomElementRegistrationContext.cpp',
            'dom/CustomElementRegistrationContext.h',
            'dom/CustomElementRegistry.cpp',
            'dom/CustomElementRegistry.h',
            'dom/CustomElementUpgradeCandidateMap.cpp',
            'dom/CustomElementUpgradeCandidateMap.h',
            'dom/CustomEvent.cpp',
            'dom/CustomEvent.h',
            'dom/DOMError.cpp',
            'dom/DOMError.h',
            'dom/DOMException.cpp',
            'dom/DOMException.h',
            'dom/DOMImplementation.cpp',
            'dom/DOMNamedFlowCollection.cpp',
            'dom/DOMNamedFlowCollection.h',
            'dom/DOMStringList.cpp',
            'dom/DOMStringList.h',
            'dom/DOMStringMap.cpp',
            'dom/DOMStringMap.h',
            'dom/DataTransferItem.cpp',
            'dom/DataTransferItem.h',
            'dom/DataTransferItemList.h',
            'dom/DatasetDOMStringMap.cpp',
            'dom/DatasetDOMStringMap.h',
            'dom/DecodedDataDocumentParser.cpp',
            'dom/DecodedDataDocumentParser.h',
            'dom/DeviceOrientationController.cpp',
            'dom/DeviceOrientationController.h',
            'dom/Document.cpp',
            'dom/DocumentEventQueue.cpp',
            'dom/DocumentEventQueue.h',
            'dom/DocumentFragment.cpp',
            'dom/DocumentFullscreen.cpp',
            'dom/DocumentFullscreen.h',
            'dom/DocumentInit.cpp',
            'dom/DocumentInit.h',
            'dom/DocumentLifecycleObserver.cpp',
            'dom/DocumentLifecycleObserver.h',
            'dom/DocumentMarkerController.cpp',
            'dom/DocumentMarker.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/Element.cpp',
            'dom/ElementRareData.cpp',
            'dom/ElementRareData.h',
            'dom/Entity.h',
            'dom/ErrorEvent.cpp',
            'dom/ErrorEvent.h',
            'dom/Event.cpp',
            'dom/EventContext.cpp',
            'dom/EventContext.h',
            'dom/EventDispatchMediator.cpp',
            'dom/EventDispatchMediator.h',
            'dom/EventDispatcher.cpp',
            'dom/EventDispatcher.h',
            'dom/EventRetargeter.cpp',
            'dom/EventRetargeter.h',
            'dom/EventListenerMap.cpp',
            'dom/EventNames.cpp',
            'dom/EventPathWalker.cpp',
            'dom/EventPathWalker.h',
            'dom/EventQueue.h',
            'dom/EventSender.h',
            'dom/EventTarget.cpp',
            'dom/FocusEvent.cpp',
            'dom/FocusEvent.h',
            'dom/FullscreenElementStack.cpp',
            'dom/FullscreenElementStack.h',
            'dom/GenericEventQueue.cpp',
            'dom/GenericEventQueue.h',
            'dom/GestureEvent.cpp',
            'dom/GestureEvent.h',
            'dom/HashChangeEvent.h',
            'dom/IgnoreDestructiveWriteCountIncrementer.h',
            'dom/IconURL.cpp',
            'dom/IconURL.h',
            'dom/IdTargetObserver.cpp',
            'dom/IdTargetObserver.h',
            'dom/IdTargetObserverRegistry.cpp',
            'dom/IdTargetObserverRegistry.h',
            'dom/KeyboardEvent.cpp',
            'dom/LiveNodeList.cpp',
            'dom/LiveNodeList.h',
            'dom/MessageChannel.cpp',
            'dom/MessageChannel.h',
            'dom/MessageEvent.cpp',
            'dom/MessageEvent.h',
            'dom/MessagePort.cpp',
            'dom/MessagePortChannel.cpp',
            'dom/Microtask.cpp',
            'dom/Microtask.h',
            'dom/MouseEvent.cpp',
            'dom/MouseRelatedEvent.cpp',
            'dom/MutationCallback.h',
            'dom/MutationEvent.cpp',
            'dom/MutationEvent.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/NameNodeList.cpp',
            'dom/NameNodeList.h',
            'dom/NamedNodeMap.cpp',
            'dom/NamedNodesCollection.cpp',
            'dom/NamedNodesCollection.h',
            'dom/Node.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.cpp',
            'dom/Notation.h',
            'dom/OverflowEvent.cpp',
            'dom/OverflowEvent.h',
            'dom/PageTransitionEvent.cpp',
            'dom/PageTransitionEvent.h',
            'dom/PendingScript.cpp',
            'dom/PopStateEvent.cpp',
            'dom/PopStateEvent.h',
            'dom/Position.cpp',
            'dom/PositionIterator.cpp',
            'dom/PositionIterator.h',
            'dom/ProcessingInstruction.cpp',
            'dom/ProcessingInstruction.h',
            'dom/ProgressEvent.cpp',
            'dom/ProgressEvent.h',
            'dom/Promise.h',
            'dom/PromiseResolver.h',
            'dom/PseudoElement.cpp',
            'dom/QualifiedName.cpp',
            'dom/Range.cpp',
            'dom/RawDataDocumentParser.h',
            'dom/RequestAnimationFrameCallback.h',
            'dom/ResourceProgressEvent.cpp',
            'dom/ResourceProgressEvent.h',
            'dom/ScopedEventQueue.cpp',
            'dom/ScopedEventQueue.h',
            'dom/ScriptExecutionContext.cpp',
            'dom/ScriptLoader.cpp',
            'dom/ScriptLoader.h',
            'dom/ScriptRunner.cpp',
            'dom/ScriptableDocumentParser.cpp',
            'dom/ScriptableDocumentParser.h',
            'dom/ScriptedAnimationController.cpp',
            'dom/ScriptedAnimationController.h',
            'dom/SecurityContext.cpp',
            'dom/SecurityContext.h',
            'dom/SecurityPolicyViolationEvent.h',
            'dom/SelectorQuery.cpp',
            'dom/SelectorQuery.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/StyleSheetCollection.cpp',
            'dom/StyleSheetCollection.h',
            'dom/StyleSheetScopingNodeList.cpp',
            'dom/StyleSheetScopingNodeList.h',
            'dom/TagNodeList.cpp',
            'dom/TagNodeList.h',
            'dom/Text.cpp',
            'dom/TextEvent.cpp',
            'dom/TextEvent.h',
            'dom/TextLinkColors.cpp',
            'dom/TextLinkColors.h',
            'dom/Touch.cpp',
            'dom/Touch.h',
            'dom/TouchEvent.cpp',
            'dom/TouchEvent.h',
            'dom/TouchList.cpp',
            'dom/TouchList.h',
            'dom/TransformSource.h',
            'dom/TransformSourceLibxslt.cpp',
            'dom/TransitionEvent.cpp',
            'dom/TransitionEvent.h',
            'dom/Traversal.cpp',
            'dom/Traversal.h',
            'dom/TreeScope.cpp',
            'dom/TreeScope.h',
            'dom/TreeScopeAdopter.cpp',
            'dom/TreeScopeAdopter.h',
            'dom/TreeWalker.cpp',
            'dom/TreeWalker.h',
            'dom/UIEvent.cpp',
            'dom/UIEventWithKeyState.cpp',
            'dom/UserActionElementSet.h',
            'dom/UserActionElementSet.cpp',
            'dom/UserGestureIndicator.cpp',
            'dom/UserTypingGestureIndicator.cpp',
            'dom/ViewportArguments.cpp',
            'dom/ViewportArguments.h',
            'dom/VisitedLinkState.cpp',
            'dom/VisitedLinkState.h',
            'dom/WheelEvent.cpp',
            'dom/WheelEvent.h',
            'dom/WindowEventContext.cpp',
            'dom/WindowEventContext.h',
            'dom/default/PlatformMessagePortChannel.cpp',
            'dom/default/PlatformMessagePortChannel.h',
            'dom/default/chromium/PlatformMessagePortChannelChromium.cpp',
            'dom/default/chromium/PlatformMessagePortChannelChromium.h',
            'dom/shadow/ComposedShadowTreeWalker.cpp',
            'dom/shadow/ComposedShadowTreeWalker.h',
            'dom/shadow/ContentDistributor.cpp',
            'dom/shadow/ContentDistributor.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',
        ],
        'webcore_html_files': [
            'html/BaseButtonInputType.cpp',
            'html/BaseButtonInputType.h',
            'html/BaseCheckableInputType.cpp',
            'html/BaseCheckableInputType.h',
            'html/BaseChooserOnlyDateAndTimeInputType.cpp',
            'html/BaseChooserOnlyDateAndTimeInputType.h',
            'html/BaseClickableWithKeyInputType.cpp',
            'html/BaseClickableWithKeyInputType.h',
            'html/BaseDateAndTimeInputType.cpp',
            'html/BaseDateAndTimeInputType.h',
            'html/BaseMultipleFieldsDateAndTimeInputType.cpp',
            'html/BaseMultipleFieldsDateAndTimeInputType.h',
            'html/BaseTextInputType.cpp',
            'html/BaseTextInputType.h',
            'html/ButtonInputType.cpp',
            'html/ButtonInputType.h',
            'html/CheckboxInputType.cpp',
            'html/CheckboxInputType.h',
            'html/ClassList.cpp',
            'html/ClassList.h',
            'html/ColorInputType.cpp',
            'html/ColorInputType.h',
            'html/DOMFormData.cpp',
            'html/DOMFormData.h',
            'html/DOMSettableTokenList.cpp',
            'html/DOMSettableTokenList.h',
            'html/DOMTokenList.cpp',
            'html/DOMTokenList.h',
            'html/DOMURL.cpp',
            'html/DOMURL.h',
            'html/DateInputType.cpp',
            'html/DateInputType.h',
            'html/DateTimeFieldsState.cpp',
            'html/DateTimeFieldsState.h',
            'html/DateTimeLocalInputType.cpp',
            'html/DateTimeLocalInputType.h',
            'html/EmailInputType.cpp',
            'html/EmailInputType.h',
            'html/FileInputType.cpp',
            'html/FileInputType.h',
            'html/FormAssociatedElement.cpp',
            'html/FormController.cpp',
            'html/FormController.h',
            '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/HTMLImportLoader.cpp',
            'html/HTMLImportLoader.h',
            'html/HTMLImportLoaderClient.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.cpp',
            '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/HTMLPlugInImageElement.cpp',
            '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/HiddenInputType.cpp',
            'html/HiddenInputType.h',
            'html/ImageData.cpp',
            'html/ImageData.h',
            'html/ImageDocument.cpp',
            'html/ImageDocument.h',
            'html/ImageInputType.cpp',
            'html/ImageInputType.h',
            'html/InputType.cpp',
            'html/InputTypeNames.cpp',
            'html/InputTypeNames.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/MonthInputType.cpp',
            'html/MonthInputType.h',
            'html/NumberInputType.cpp',
            'html/NumberInputType.h',
            'html/PasswordInputType.cpp',
            'html/PasswordInputType.h',
            'html/PluginDocument.cpp',
            'html/PluginDocument.h',
            'html/PublicURLManager.h',
            'html/PublicURLManager.cpp',
            'html/RadioInputType.cpp',
            'html/RadioInputType.h',
            'html/RadioNodeList.cpp',
            'html/RadioNodeList.h',
            'html/RangeInputType.cpp',
            'html/RangeInputType.h',
            'html/ResetInputType.cpp',
            'html/ResetInputType.h',
            'html/SearchInputType.cpp',
            'html/SearchInputType.h',
            'html/StepRange.cpp',
            'html/StepRange.h',
            'html/SubmitInputType.cpp',
            'html/SubmitInputType.h',
            'html/TelephoneInputType.cpp',
            'html/TelephoneInputType.h',
            'html/TextDocument.cpp',
            'html/TextDocument.h',
            'html/TextFieldInputType.cpp',
            'html/TextFieldInputType.h',
            'html/TextInputType.cpp',
            'html/TextInputType.h',
            'html/TextMetrics.h',
            'html/TimeInputType.cpp',
            'html/TimeInputType.h',
            'html/TimeRanges.cpp',
            'html/TimeRanges.h',
            'html/URLInputType.cpp',
            'html/URLInputType.h',
            'html/URLRegistry.h',
            'html/ValidationMessage.cpp',
            'html/ValidationMessage.h',
            'html/ValidityState.cpp',
            'html/ValidityState.h',
            'html/WeekInputType.cpp',
            'html/WeekInputType.h',
            'html/TypeAhead.cpp',
            'html/TypeAhead.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/CheckedInt.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/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/HTMLIdentifier.cpp',
            'html/parser/HTMLIdentifier.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/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/TextTrackCueGeneric.cpp',
            'html/track/TextTrackCueGeneric.h',
            'html/track/TextTrackCueList.cpp',
            'html/track/TextTrackCueList.h',
            'html/track/TextTrackList.cpp',
            'html/track/TextTrackRegion.cpp',
            'html/track/TextTrackRegion.h',
            'html/track/TextTrackRegionList.cpp',
            'html/track/TextTrackRegionList.h',
            'html/track/TrackBase.cpp',
            'html/track/TrackEvent.cpp',
            'html/track/WebVTTElement.cpp',
            'html/track/WebVTTElement.h',
            'html/track/WebVTTParser.cpp',
            'html/track/WebVTTParser.h',
            'html/track/WebVTTToken.h',
            'html/track/WebVTTTokenizer.cpp',
            'html/track/WebVTTTokenizer.h',
        ],
        'webcore_platform_files': [
            'platform/AsyncFileSystem.h',
            'platform/AsyncFileSystemCallbacks.h',
            'platform/CalculationValue.cpp',
            'platform/CalculationValue.h',
            'platform/Clock.cpp',
            'platform/Clock.h',
            'platform/ContentType.cpp',
            'platform/ContentType.h',
            'platform/ContextMenu.cpp',
            'platform/ContextMenuItem.cpp',
            'platform/CrossThreadCopier.cpp',
            'platform/CrossThreadCopier.h',
            'platform/Cursor.cpp',
            'platform/DateComponents.cpp',
            'platform/Decimal.cpp',
            'platform/DragData.cpp',
            'platform/DragImage.cpp',
            'platform/EventTracer.cpp',
            'platform/FileChooser.cpp',
            'platform/FileMetadata.h',
            'platform/FloatConversion.h',
            'platform/HashTools.h',
            'platform/JSONValues.cpp',
            'platform/JSONValues.h',
            'platform/KillRing.h',
            'platform/KillRingNone.cpp',
            'platform/Language.cpp',
            'platform/LayoutTestSupport.cpp',
            'platform/LayoutTestSupport.h',
            'platform/Length.cpp',
            'platform/LengthBox.cpp',
            'platform/LifecycleContext.cpp',
            'platform/LifecycleContext.h',
            'platform/LifecycleNotifier.cpp',
            'platform/LifecycleNotifier.h',
            'platform/LifecycleObserver.cpp',
            'platform/LifecycleObserver.h',
            'platform/LinkHash.cpp',
            'platform/Logging.cpp',
            'platform/MIMETypeFromURL.cpp',
            'platform/MIMETypeFromURL.h',
            'platform/NotImplemented.cpp',
            'platform/Partitions.cpp',
            'platform/Partitions.h',
            'platform/Pasteboard.h',
            'platform/PlatformEvent.cpp',
            'platform/PlatformEvent.h',
            'platform/PlatformInstrumentation.cpp',
            'platform/PlatformInstrumentation.h',
            'platform/PlatformSpeechSynthesisUtterance.cpp',
            'platform/PlatformSpeechSynthesisUtterance.h',
            'platform/PlatformSpeechSynthesisVoice.cpp',
            'platform/PlatformSpeechSynthesisVoice.h',
            'platform/PlatformSpeechSynthesizer.cpp',
            'platform/PlatformSpeechSynthesizer.h',
            'platform/PlatformTouchEvent.h',
            'platform/PlatformTouchPoint.h',
            'platform/PrerenderHandle.h',
            'platform/PrerenderClient.h',
            'platform/PurgeableBuffer.cpp',
            'platform/PurgeableBuffer.h',
            'platform/SSLKeyGenerator.h',
            'platform/ScrollAnimator.cpp',
            'platform/ScrollAnimator.h',
            'platform/ScrollAnimatorNone.cpp',
            'platform/ScrollAnimatorNone.h',
            'platform/ScrollView.cpp',
            'platform/ScrollableArea.cpp',
            'platform/Scrollbar.cpp',
            'platform/ScrollbarTheme.cpp',
            'platform/SecureTextInput.cpp',
            'platform/SecureTextInput.h',
            'platform/SerializedResource.h',
            'platform/SharedBuffer.cpp',
            'platform/SharedBufferChunkReader.cpp',
            'platform/SharedTimer.h',
            'platform/Sound.h',
            'platform/SuddenTermination.h',
            'platform/Task.h',
            'platform/Theme.cpp',
            'platform/ThreadGlobalData.cpp',
            'platform/ThreadTimers.cpp',
            'platform/ThreadTimers.h',
            'platform/Timer.cpp',
            'platform/UUID.cpp',
            'platform/UUID.h',
            'platform/Widget.cpp',
            'platform/Widget.h',
            'platform/animation/CSSAnimationData.cpp',
            'platform/animation/CSSAnimationDataList.cpp',
            'platform/audio/AudioArray.h',
            'platform/audio/AudioBus.cpp',
            'platform/audio/AudioBus.h',
            'platform/audio/AudioChannel.cpp',
            'platform/audio/AudioChannel.h',
            'platform/audio/AudioDSPKernel.h',
            'platform/audio/AudioDSPKernelProcessor.cpp',
            'platform/audio/AudioDSPKernelProcessor.h',
            'platform/audio/AudioDestination.h',
            'platform/audio/AudioFIFO.cpp',
            'platform/audio/AudioFIFO.h',
            'platform/audio/AudioFileReader.h',
            'platform/audio/AudioIOCallback.h',
            'platform/audio/AudioProcessor.h',
            'platform/audio/AudioPullFIFO.cpp',
            'platform/audio/AudioPullFIFO.h',
            'platform/audio/AudioResampler.cpp',
            'platform/audio/AudioResampler.h',
            'platform/audio/AudioResamplerKernel.cpp',
            'platform/audio/AudioResamplerKernel.h',
            'platform/audio/AudioSourceProvider.h',
            'platform/audio/AudioSourceProviderClient.h',
            'platform/audio/AudioUtilities.cpp',
            'platform/audio/AudioUtilities.h',
            'platform/audio/Biquad.cpp',
            'platform/audio/Biquad.h',
            'platform/audio/Cone.cpp',
            'platform/audio/Cone.h',
            'platform/audio/DenormalDisabler.h',
            'platform/audio/DirectConvolver.cpp',
            'platform/audio/DirectConvolver.h',
            'platform/audio/Distance.cpp',
            'platform/audio/Distance.h',
            'platform/audio/DownSampler.cpp',
            'platform/audio/DownSampler.h',
            'platform/audio/DynamicsCompressor.cpp',
            'platform/audio/DynamicsCompressor.h',
            'platform/audio/DynamicsCompressorKernel.cpp',
            'platform/audio/DynamicsCompressorKernel.h',
            'platform/audio/EqualPowerPanner.cpp',
            'platform/audio/EqualPowerPanner.h',
            'platform/audio/FFTConvolver.cpp',
            'platform/audio/FFTConvolver.h',
            'platform/audio/FFTFrame.cpp',
            'platform/audio/FFTFrame.h',
            'platform/audio/FFTFrameStub.cpp',
            'platform/audio/HRTFDatabase.cpp',
            'platform/audio/HRTFDatabase.h',
            'platform/audio/HRTFDatabaseLoader.cpp',
            'platform/audio/HRTFDatabaseLoader.h',
            'platform/audio/HRTFElevation.cpp',
            'platform/audio/HRTFElevation.h',
            'platform/audio/HRTFKernel.cpp',
            'platform/audio/HRTFKernel.h',
            'platform/audio/HRTFPanner.cpp',
            'platform/audio/HRTFPanner.h',
            'platform/audio/MultiChannelResampler.cpp',
            'platform/audio/MultiChannelResampler.h',
            'platform/audio/Panner.cpp',
            'platform/audio/Panner.h',
            'platform/audio/Reverb.cpp',
            'platform/audio/Reverb.h',
            'platform/audio/ReverbAccumulationBuffer.cpp',
            'platform/audio/ReverbAccumulationBuffer.h',
            'platform/audio/ReverbConvolver.cpp',
            'platform/audio/ReverbConvolver.h',
            'platform/audio/ReverbConvolverStage.cpp',
            'platform/audio/ReverbConvolverStage.h',
            'platform/audio/ReverbInputBuffer.cpp',
            'platform/audio/ReverbInputBuffer.h',
            'platform/audio/SincResampler.cpp',
            'platform/audio/SincResampler.h',
            'platform/audio/UpSampler.cpp',
            'platform/audio/UpSampler.h',
            'platform/audio/VectorMath.cpp',
            'platform/audio/VectorMath.h',
            'platform/audio/ZeroPole.cpp',
            'platform/audio/ZeroPole.h',
            'platform/audio/chromium/AudioBusChromium.cpp',
            'platform/audio/chromium/AudioDestinationChromium.cpp',
            'platform/audio/chromium/AudioDestinationChromium.h',
            'platform/audio/chromium/FFTFrameOpenMAXDLAndroid.cpp',
            'platform/audio/ffmpeg/FFTFrameFFMPEG.cpp',
            'platform/audio/mac/FFTFrameMac.cpp',
            'platform/audio/ipp/FFTFrameIPP.cpp',
            'platform/chromium/ChromiumDataObject.cpp',
            'platform/chromium/ChromiumDataObject.h',
            'platform/chromium/ChromiumDataObjectItem.cpp',
            'platform/chromium/ChromiumDataObjectItem.h',
            'platform/chromium/ClipboardChromium.cpp',
            'platform/chromium/ClipboardChromium.h',
            'platform/chromium/ClipboardChromiumPosix.cpp',
            'platform/chromium/ClipboardChromiumWin.cpp',
            'platform/chromium/ClipboardMimeTypes.cpp',
            'platform/chromium/ClipboardMimeTypes.h',
            'platform/chromium/ClipboardUtilitiesChromium.cpp',
            'platform/chromium/ClipboardUtilitiesChromium.h',
            'platform/chromium/FileSystemChromium.cpp',
            'platform/chromium/FramelessScrollView.cpp',
            'platform/chromium/FramelessScrollView.h',
            'platform/chromium/FramelessScrollViewClient.h',
            'platform/chromium/GamepadsChromium.cpp',
            'platform/chromium/HistogramSupportChromium.cpp',
            'platform/chromium/KeyCodeConversion.h',
            'platform/chromium/KeyCodeConversionAndroid.cpp',
            'platform/chromium/KeyCodeConversionGtk.cpp',
            'platform/chromium/KeyboardCodes.h',
            'platform/chromium/LanguageChromium.cpp',
            'platform/chromium/LocalizedStringsChromium.cpp',
            'platform/chromium/MemoryUsageSupportChromium.cpp',
            'platform/chromium/MIMETypeRegistryChromium.cpp',
            'platform/chromium/PasteboardChromium.cpp',
            'platform/chromium/PlatformKeyboardEventChromium.cpp',
            'platform/chromium/PlatformScreenChromium.cpp',
            'platform/chromium/PlatformThemeChromiumDefault.cpp',
            'platform/chromium/PlatformThemeChromiumDefault.h',
            'platform/chromium/PlatformSpeechSynthesizerChromium.cpp',
            'platform/chromium/Prerender.cpp',
            'platform/chromium/Prerender.h',
            'platform/chromium/PrerenderHandle.cpp',
            'platform/chromium/SSLKeyGeneratorChromium.cpp',
            'platform/chromium/ScrollbarThemeChromium.cpp',
            'platform/chromium/ScrollbarThemeChromium.h',
            'platform/chromium/ScrollbarThemeChromiumAndroid.cpp',
            'platform/chromium/ScrollbarThemeChromiumDefault.cpp',
            'platform/chromium/ScrollbarThemeChromiumDefault.h',
            'platform/chromium/ScrollbarThemeChromiumOverlay.cpp',
            'platform/chromium/ScrollbarThemeChromiumOverlay.h',
            'platform/chromium/ScrollbarThemeChromiumWin.cpp',
            'platform/chromium/ScrollbarThemeChromiumWin.h',
            'platform/chromium/SharedTimerChromium.cpp',
            'platform/chromium/SoundChromiumPosix.cpp',
            'platform/chromium/SoundChromiumWin.cpp',
            'platform/chromium/StatsCounterChromium.cpp',
            'platform/chromium/SuddenTerminationChromium.cpp',
            'platform/chromium/TraceEvent.h',
            'platform/cocoa/KeyEventCocoa.h',
            'platform/cocoa/KeyEventCocoa.mm',
            'platform/graphics/ANGLEWebKitBridge.cpp',
            'platform/graphics/ANGLEWebKitBridge.h',
            'platform/graphics/BitmapImage.cpp',
            'platform/graphics/ContentDecryptionModule.cpp',
            'platform/graphics/ContentDecryptionModule.h',
            'platform/graphics/ContentDecryptionModuleSession.cpp',
            'platform/graphics/ContentDecryptionModuleSession.h',
            'platform/graphics/Color.cpp',
            'platform/graphics/CrossfadeGeneratedImage.cpp',
            'platform/graphics/CrossfadeGeneratedImage.h',
            'platform/graphics/DrawLooper.cpp',
            'platform/graphics/DrawLooper.h',
            'platform/graphics/Extensions3D.cpp',
            'platform/graphics/Extensions3D.h',
            'platform/graphics/Font.cpp',
            'platform/graphics/FontCache.cpp',
            'platform/graphics/FontData.cpp',
            'platform/graphics/FontDescription.cpp',
            'platform/graphics/FontFallbackList.cpp',
            'platform/graphics/FontFamily.cpp',
            'platform/graphics/FontFeatureSettings.cpp',
            'platform/graphics/FontFastPath.cpp',
            'platform/graphics/FontPlatformData.cpp',
            'platform/graphics/FontPlatformData.h',
            'platform/graphics/FrameData.cpp',
            'platform/graphics/FrameData.h',
            'platform/graphics/LayoutBoxExtent.cpp',
            'platform/graphics/GeneratorGeneratedImage.cpp',
            'platform/graphics/GeneratedImage.cpp',
            'platform/graphics/GeneratedImage.h',
            'platform/graphics/GlyphPageTreeNode.cpp',
            'platform/graphics/Gradient.cpp',
            'platform/graphics/GraphicsContext.cpp',
            'platform/graphics/GraphicsContext3D.cpp',
            'platform/graphics/GraphicsContext3DImagePacking.cpp',
            'platform/graphics/GraphicsContextAnnotation.cpp',
            'platform/graphics/GraphicsLayer.cpp',
            'platform/graphics/GraphicsLayerTransform.cpp',
            'platform/graphics/GraphicsLayerTransform.h',
            'platform/graphics/GraphicsTypes.cpp',
            'platform/graphics/Image.cpp',
            'platform/graphics/ImageBuffer.cpp',
            'platform/graphics/ImageOrientation.cpp',
            'platform/graphics/ImageSource.cpp',
            'platform/graphics/InbandTextTrackPrivate.h',
            'platform/graphics/InbandTextTrackPrivateClient.h',
            'platform/graphics/Latin1TextIterator.h',
            'platform/graphics/MediaPlayer.cpp',
            'platform/graphics/MediaPlayer.h',
            'platform/graphics/Path.cpp',
            'platform/graphics/PathTraversalState.cpp',
            'platform/graphics/PathTraversalState.h',
            'platform/graphics/Pattern.cpp',
            'platform/graphics/RoundedRect.cpp',
            'platform/graphics/SegmentedFontData.cpp',
            'platform/graphics/SegmentedFontData.h',
            'platform/graphics/ShadowBlur.cpp',
            'platform/graphics/ShadowBlur.h',
            'platform/graphics/SimpleFontData.cpp',
            'platform/graphics/SVGGlyph.cpp',
            'platform/graphics/StringTruncator.cpp',
            'platform/graphics/StrokeData.cpp',
            'platform/graphics/SurrogatePairAwareTextIterator.cpp',
            'platform/graphics/SurrogatePairAwareTextIterator.h',
            'platform/graphics/TextRun.cpp',
            'platform/graphics/UnitBezier.h',
            'platform/graphics/WidthIterator.cpp',
            'platform/graphics/WidthIterator.h',
            'platform/graphics/cg/FloatPointCG.cpp',
            'platform/graphics/cg/FloatRectCG.cpp',
            'platform/graphics/cg/FloatSizeCG.cpp',
            'platform/graphics/cg/IntPointCG.cpp',
            'platform/graphics/cg/IntRectCG.cpp',
            'platform/graphics/cg/IntSizeCG.cpp',
            'platform/graphics/chromium/AnimationTranslationUtil.cpp',
            'platform/graphics/chromium/AnimationTranslationUtil.h',
            'platform/graphics/chromium/Canvas2DLayerBridge.cpp',
            'platform/graphics/chromium/Canvas2DLayerBridge.h',
            'platform/graphics/chromium/Canvas2DLayerManager.cpp',
            'platform/graphics/chromium/Canvas2DLayerManager.h',
            'platform/graphics/chromium/CrossProcessFontLoading.h',
            'platform/graphics/chromium/CrossProcessFontLoading.mm',
            'platform/graphics/chromium/DeferredImageDecoder.cpp',
            'platform/graphics/chromium/DeferredImageDecoder.h',
            'platform/graphics/chromium/DiscardablePixelRef.cpp',
            'platform/graphics/chromium/DiscardablePixelRef.h',
            'platform/graphics/chromium/FontCacheAndroid.cpp',
            'platform/graphics/chromium/FontCacheChromiumLinux.cpp',
            'platform/graphics/chromium/FontCacheChromiumWin.cpp',
            'platform/graphics/chromium/FontChromiumWin.cpp',
            'platform/graphics/chromium/FontPlatformDataChromiumWin.cpp',
            'platform/graphics/chromium/FontPlatformDataChromiumWin.h',
            'platform/graphics/chromium/FontRenderStyle.h',
            'platform/graphics/chromium/FontUtilsChromiumWin.cpp',
            'platform/graphics/chromium/FontUtilsChromiumWin.h',
            'platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp',
            'platform/graphics/chromium/ImageDecodingStore.cpp',
            'platform/graphics/chromium/ImageDecodingStore.h',
            'platform/graphics/chromium/ImageFrameGenerator.cpp',
            'platform/graphics/chromium/ImageFrameGenerator.h',
            'platform/graphics/chromium/LazyDecodingPixelRef.cpp',
            'platform/graphics/chromium/LazyDecodingPixelRef.h',
            'platform/graphics/chromium/OpaqueRectTrackingContentLayerDelegate.cpp',
            'platform/graphics/chromium/OpaqueRectTrackingContentLayerDelegate.h',
            'platform/graphics/chromium/ScaledImageFragment.cpp',
            'platform/graphics/chromium/ScaledImageFragment.h',
            'platform/graphics/chromium/SimpleFontDataChromiumWin.cpp',
            'platform/graphics/chromium/ThreadSafeDataTransport.cpp',
            'platform/graphics/chromium/ThreadSafeDataTransport.h',
            'platform/graphics/chromium/TransformSkMatrix44Conversions.cpp',
            'platform/graphics/chromium/TransformSkMatrix44Conversions.h',
            'platform/graphics/chromium/TransparencyWin.cpp',
            'platform/graphics/chromium/TransparencyWin.h',
            'platform/graphics/chromium/UniscribeHelper.cpp',
            'platform/graphics/chromium/UniscribeHelper.h',
            'platform/graphics/chromium/UniscribeHelperTextRun.cpp',
            'platform/graphics/chromium/UniscribeHelperTextRun.h',
            'platform/graphics/chromium/VDMXParser.cpp',
            'platform/graphics/chromium/VDMXParser.h',
            'platform/graphics/cocoa/FontPlatformDataCocoa.mm',
            'platform/graphics/filters/custom/CustomFilterArrayParameter.h',
            'platform/graphics/filters/custom/CustomFilterCompiledProgram.cpp',
            'platform/graphics/filters/custom/CustomFilterCompiledProgram.h',
            'platform/graphics/filters/custom/CustomFilterConstants.h',
            'platform/graphics/filters/custom/CustomFilterGlobalContext.cpp',
            'platform/graphics/filters/custom/CustomFilterGlobalContext.h',
            'platform/graphics/filters/custom/CustomFilterMesh.cpp',
            'platform/graphics/filters/custom/CustomFilterMesh.h',
            'platform/graphics/filters/custom/CustomFilterMeshGenerator.cpp',
            'platform/graphics/filters/custom/CustomFilterMeshGenerator.h',
            'platform/graphics/filters/custom/CustomFilterNumberParameter.h',
            'platform/graphics/filters/custom/CustomFilterOperation.cpp',
            'platform/graphics/filters/custom/CustomFilterOperation.h',
            'platform/graphics/filters/custom/CustomFilterParameter.h',
            'platform/graphics/filters/custom/CustomFilterParameterList.cpp',
            'platform/graphics/filters/custom/CustomFilterParameterList.h',
            'platform/graphics/filters/custom/CustomFilterProgram.cpp',
            'platform/graphics/filters/custom/CustomFilterProgram.h',
            'platform/graphics/filters/custom/CustomFilterProgramClient.h',
            'platform/graphics/filters/custom/CustomFilterProgramInfo.cpp',
            'platform/graphics/filters/custom/CustomFilterProgramInfo.h',
            'platform/graphics/filters/custom/CustomFilterRenderer.cpp',
            'platform/graphics/filters/custom/CustomFilterRenderer.h',
            'platform/graphics/filters/custom/CustomFilterTransformParameter.h',
            'platform/graphics/filters/custom/CustomFilterValidatedProgram.cpp',
            'platform/graphics/filters/custom/CustomFilterValidatedProgram.h',
            'platform/graphics/filters/custom/FECustomFilter.cpp',
            'platform/graphics/filters/custom/FECustomFilter.h',
            'platform/graphics/filters/custom/ValidatedCustomFilterOperation.cpp',
            'platform/graphics/filters/custom/ValidatedCustomFilterOperation.h',
            'platform/graphics/filters/DistantLightSource.cpp',
            'platform/graphics/filters/DistantLightSource.h',
            'platform/graphics/filters/FEBlend.cpp',
            'platform/graphics/filters/FEBlend.h',
            'platform/graphics/filters/FEColorMatrix.cpp',
            'platform/graphics/filters/FEColorMatrix.h',
            'platform/graphics/filters/FEComponentTransfer.cpp',
            'platform/graphics/filters/FEComponentTransfer.h',
            'platform/graphics/filters/FEComposite.cpp',
            'platform/graphics/filters/FEComposite.h',
            'platform/graphics/filters/FEConvolveMatrix.cpp',
            'platform/graphics/filters/FEConvolveMatrix.h',
            'platform/graphics/filters/FEDiffuseLighting.cpp',
            'platform/graphics/filters/FEDiffuseLighting.h',
            'platform/graphics/filters/FEDisplacementMap.cpp',
            'platform/graphics/filters/FEDisplacementMap.h',
            'platform/graphics/filters/FEDropShadow.cpp',
            'platform/graphics/filters/FEDropShadow.h',
            'platform/graphics/filters/FEFlood.cpp',
            'platform/graphics/filters/FEFlood.h',
            'platform/graphics/filters/FEGaussianBlur.cpp',
            'platform/graphics/filters/FEGaussianBlur.h',
            'platform/graphics/filters/FELighting.cpp',
            'platform/graphics/filters/FELighting.h',
            'platform/graphics/filters/FEMerge.cpp',
            'platform/graphics/filters/FEMerge.h',
            'platform/graphics/filters/FEMorphology.cpp',
            'platform/graphics/filters/FEMorphology.h',
            'platform/graphics/filters/FEOffset.cpp',
            'platform/graphics/filters/FEOffset.h',
            'platform/graphics/filters/FESpecularLighting.cpp',
            'platform/graphics/filters/FESpecularLighting.h',
            'platform/graphics/filters/FETile.cpp',
            'platform/graphics/filters/FETile.h',
            'platform/graphics/filters/FETurbulence.cpp',
            'platform/graphics/filters/FETurbulence.h',
            'platform/graphics/filters/Filter.h',
            'platform/graphics/filters/FilterEffect.cpp',
            'platform/graphics/filters/FilterEffect.h',
            'platform/graphics/filters/FilterOperation.cpp',
            'platform/graphics/filters/FilterOperation.h',
            'platform/graphics/filters/FilterOperations.cpp',
            'platform/graphics/filters/FilterOperations.h',
            'platform/graphics/filters/LightSource.h',
            'platform/graphics/filters/PointLightSource.cpp',
            'platform/graphics/filters/PointLightSource.h',
            'platform/graphics/filters/ReferenceFilter.cpp',
            'platform/graphics/filters/ReferenceFilter.h',
            'platform/graphics/filters/SkiaImageFilterBuilder.cpp',
            'platform/graphics/filters/SkiaImageFilterBuilder.h',
            'platform/graphics/filters/SourceAlpha.cpp',
            'platform/graphics/filters/SourceAlpha.h',
            'platform/graphics/filters/SourceGraphic.cpp',
            'platform/graphics/filters/SourceGraphic.h',
            'platform/graphics/filters/SpotLightSource.cpp',
            'platform/graphics/filters/SpotLightSource.h',
            'platform/graphics/gpu/DrawingBuffer.cpp',
            'platform/graphics/gpu/DrawingBuffer.h',
            'platform/graphics/gpu/SharedGraphicsContext3D.cpp',
            'platform/graphics/gpu/SharedGraphicsContext3D.h',
            'platform/graphics/harfbuzz/FontHarfBuzz.cpp',
            'platform/graphics/harfbuzz/FontPlatformDataHarfBuzz.cpp',
            'platform/graphics/harfbuzz/FontPlatformDataHarfBuzz.h',
            'platform/graphics/harfbuzz/HarfBuzzFaceCoreText.cpp',
            'platform/graphics/harfbuzz/HarfBuzzFaceSkia.cpp',
            'platform/graphics/harfbuzz/HarfBuzzFace.cpp',
            'platform/graphics/harfbuzz/HarfBuzzFace.h',
            'platform/graphics/harfbuzz/HarfBuzzShaper.cpp',
            'platform/graphics/harfbuzz/HarfBuzzShaper.h',
            'platform/graphics/mac/ColorMac.h',
            'platform/graphics/mac/ColorMac.mm',
            'platform/graphics/mac/ComplexTextController.cpp',
            'platform/graphics/mac/ComplexTextController.h',
            'platform/graphics/mac/ComplexTextControllerCoreText.mm',
            'platform/graphics/mac/FloatPointMac.mm',
            'platform/graphics/mac/FloatRectMac.mm',
            'platform/graphics/mac/FloatSizeMac.mm',
            'platform/graphics/mac/FontCacheMac.mm',
            'platform/graphics/mac/FontComplexTextMac.cpp',
            'platform/graphics/mac/FontCustomPlatformDataMac.cpp',
            'platform/graphics/mac/FontMac.cpp',
            'platform/graphics/mac/GlyphPageTreeNodeMac.cpp',
            'platform/graphics/mac/IntPointMac.mm',
            'platform/graphics/mac/IntRectMac.mm',
            'platform/graphics/mac/IntSizeMac.mm',
            'platform/graphics/mac/SimpleFontDataCoreText.cpp',
            'platform/graphics/mac/SimpleFontDataMac.mm',
            'platform/graphics/opentype/OpenTypeSanitizer.cpp',
            'platform/graphics/opentype/OpenTypeSanitizer.h',
            'platform/graphics/opentype/OpenTypeTypes.h',
            'platform/graphics/opentype/OpenTypeUtilities.cpp',
            'platform/graphics/opentype/OpenTypeUtilities.h',
            'platform/graphics/opentype/OpenTypeVerticalData.cpp',
            'platform/graphics/opentype/OpenTypeVerticalData.h',
            'platform/graphics/skia/FontCacheSkia.cpp',
            'platform/graphics/skia/FontCustomPlatformDataSkia.cpp',
            'platform/graphics/skia/FontPlatformDataSkia.cpp',
            'platform/graphics/skia/GlyphPageTreeNodeSkia.cpp',
            'platform/graphics/skia/NativeImageSkia.cpp',
            'platform/graphics/skia/NativeImageSkia.h',
            'platform/graphics/skia/OpaqueRegionSkia.cpp',
            'platform/graphics/skia/OpaqueRegionSkia.h',
            'platform/graphics/skia/SimpleFontDataSkia.cpp',
            'platform/graphics/skia/SkiaFontWin.cpp',
            'platform/graphics/skia/SkiaFontWin.h',
            'platform/graphics/skia/SkiaSharedBufferStream.cpp',
            'platform/graphics/skia/SkiaSharedBufferStream.h',
            'platform/graphics/skia/SkiaUtils.cpp',
            'platform/graphics/skia/SkiaUtils.h',
            'platform/graphics/transforms/IdentityTransformOperation.h',
            'platform/graphics/transforms/InterpolatedTransformOperation.h',
            'platform/graphics/transforms/InterpolatedTransformOperation.cpp',
            'platform/graphics/transforms/Matrix3DTransformOperation.cpp',
            'platform/graphics/transforms/Matrix3DTransformOperation.h',
            'platform/graphics/transforms/MatrixTransformOperation.cpp',
            'platform/graphics/transforms/MatrixTransformOperation.h',
            'platform/graphics/transforms/PerspectiveTransformOperation.cpp',
            'platform/graphics/transforms/PerspectiveTransformOperation.h',
            'platform/graphics/transforms/RotateTransformOperation.cpp',
            'platform/graphics/transforms/RotateTransformOperation.h',
            'platform/graphics/transforms/ScaleTransformOperation.cpp',
            'platform/graphics/transforms/ScaleTransformOperation.h',
            'platform/graphics/transforms/SkewTransformOperation.cpp',
            'platform/graphics/transforms/SkewTransformOperation.h',
            'platform/graphics/transforms/TransformOperations.cpp',
            'platform/graphics/transforms/TransformState.cpp',
            'platform/graphics/transforms/TransformState.h',
            'platform/graphics/transforms/TranslateTransformOperation.cpp',
            'platform/graphics/transforms/TranslateTransformOperation.h',
            'platform/graphics/win/FontCustomPlatformDataWin.cpp',
            'platform/image-decoders/ImageDecoder.cpp',
            'platform/image-decoders/ImageDecoder.h',
            'platform/image-decoders/ImageFrame.cpp',
            'platform/image-decoders/bmp/BMPImageDecoder.cpp',
            'platform/image-decoders/bmp/BMPImageDecoder.h',
            'platform/image-decoders/bmp/BMPImageReader.cpp',
            'platform/image-decoders/bmp/BMPImageReader.h',
            'platform/image-decoders/gif/GIFImageDecoder.cpp',
            'platform/image-decoders/gif/GIFImageDecoder.h',
            'platform/image-decoders/gif/GIFImageReader.cpp',
            'platform/image-decoders/gif/GIFImageReader.h',
            'platform/image-decoders/ico/ICOImageDecoder.cpp',
            'platform/image-decoders/ico/ICOImageDecoder.h',
            'platform/image-decoders/jpeg/JPEGImageDecoder.cpp',
            'platform/image-decoders/jpeg/JPEGImageDecoder.h',
            'platform/image-decoders/png/PNGImageDecoder.cpp',
            'platform/image-decoders/png/PNGImageDecoder.h',
            'platform/image-decoders/webp/WEBPImageDecoder.cpp',
            'platform/image-decoders/webp/WEBPImageDecoder.h',
            'platform/image-encoders/skia/JPEGImageEncoder.cpp',
            'platform/image-encoders/skia/JPEGImageEncoder.h',
            'platform/image-encoders/skia/PNGImageEncoder.cpp',
            'platform/image-encoders/skia/PNGImageEncoder.h',
            'platform/image-encoders/skia/WEBPImageEncoder.cpp',
            'platform/image-encoders/skia/WEBPImageEncoder.h',
            'platform/mac/BlockExceptions.mm',
            'platform/mac/KillRingMac.mm',
            'platform/mac/LocalCurrentGraphicsContext.h',
            'platform/mac/LocalCurrentGraphicsContext.mm',
            'platform/mac/NSScrollerImpDetails.h',
            'platform/mac/NSScrollerImpDetails.mm',
            'platform/mac/ScrollAnimatorMac.h',
            'platform/mac/ScrollAnimatorMac.mm',
            'platform/mac/ScrollElasticityController.h',
            'platform/mac/ScrollElasticityController.mm',
            'platform/mac/ScrollbarThemeMac.h',
            'platform/mac/ScrollbarThemeMac.mm',
            'platform/mac/ScrollbarThemeMacNonOverlayAPI.h',
            'platform/mac/ScrollbarThemeMacNonOverlayAPI.mm',
            'platform/mac/ScrollbarThemeMacOverlayAPI.h',
            'platform/mac/ScrollbarThemeMacOverlayAPI.mm',
            'platform/mac/ThemeMac.h',
            'platform/mac/ThemeMac.mm',
            'platform/mac/WebFontCache.mm',
            'platform/mediastream/MediaConstraints.h',
            'platform/mediastream/MediaStreamCenter.cpp',
            'platform/mediastream/MediaStreamCenter.h',
            'platform/mediastream/MediaStreamComponent.cpp',
            'platform/mediastream/MediaStreamComponent.h',
            'platform/mediastream/MediaStreamDescriptor.cpp',
            'platform/mediastream/MediaStreamDescriptor.h',
            'platform/mediastream/MediaStreamSource.cpp',
            'platform/mediastream/MediaStreamSource.h',
            'platform/mediastream/RTCConfiguration.h',
            'platform/mediastream/RTCDTMFSenderHandler.cpp',
            'platform/mediastream/RTCDTMFSenderHandler.h',
            'platform/mediastream/RTCDTMFSenderHandlerClient.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/RTCSessionDescriptionRequest.h',
            'platform/mediastream/RTCStatsRequest.h',
            'platform/mediastream/RTCVoidRequest.h',
            'platform/midi/MIDIAccessor.h',
            'platform/midi/MIDIAccessor.cpp',
            'platform/midi/MIDIAccessorClient.h',
            'platform/mock/DeviceOrientationClientMock.cpp',
            'platform/mock/GeolocationClientMock.cpp',
            'platform/mock/PlatformSpeechSynthesizerMock.cpp',
            'platform/mock/PlatformSpeechSynthesizerMock.h',
            'platform/mock/ScrollbarThemeMock.cpp',
            'platform/mock/ScrollbarThemeMock.h',
            'platform/network/BlobData.cpp',
            'platform/network/BlobData.h',
            'platform/network/DNS.cpp',
            'platform/network/DNS.h',
            'platform/network/FormData.cpp',
            'platform/network/FormDataBuilder.cpp',
            'platform/network/FormDataBuilder.h',
            'platform/network/HTTPHeaderMap.cpp',
            'platform/network/HTTPParsers.cpp',
            'platform/network/HTTPParsers.h',
            'platform/network/HTTPRequest.cpp',
            'platform/network/HTTPRequest.h',
            'platform/network/MIMEHeader.cpp',
            'platform/network/NetworkStateNotifier.cpp',
            'platform/network/NetworkStateNotifier.h',
            'platform/network/ParsedContentType.cpp',
            'platform/network/ParsedContentType.h',
            'platform/network/ProxyServer.cpp',
            'platform/network/ResourceError.cpp',
            'platform/network/ResourceError.h',
            'platform/network/ResourceRequest.cpp',
            'platform/network/ResourceRequest.h',
            'platform/network/ResourceResponse.cpp',
            'platform/network/ResourceResponse.h',
            'platform/network/SocketStreamError.cpp',
            'platform/network/SocketStreamError.h',
            'platform/network/SocketStreamHandle.cpp',
            'platform/network/SocketStreamHandle.h',
            'platform/network/SocketStreamHandleClient.h',
            'platform/network/SocketStreamHandleInternal.h',
            'platform/sql/SQLValue.cpp',
            'platform/sql/SQLiteAuthorizer.cpp',
            'platform/sql/SQLiteDatabase.cpp',
            'platform/sql/SQLiteFileSystem.h',
            'platform/sql/SQLiteStatement.cpp',
            'platform/sql/SQLiteStatement.h',
            'platform/sql/SQLiteTransaction.cpp',
            'platform/sql/chromium/SQLiteFileSystemChromium.cpp',
            'platform/sql/chromium/SQLiteFileSystemChromiumPosix.cpp',
            'platform/sql/chromium/SQLiteFileSystemChromiumWin.cpp',
            'platform/text/AtomicStringKeyedMRUCache.h',
            'platform/text/BidiContext.cpp',
            'platform/text/DateTimeFormat.cpp',
            'platform/text/LineEnding.cpp',
            'platform/text/LocaleICU.cpp',
            'platform/text/LocaleICU.h',
            'platform/text/LocaleToScriptMapping.h',
            'platform/text/LocaleToScriptMappingDefault.cpp',
            'platform/text/ParserUtilities.h',
            'platform/text/PlatformLocale.cpp',
            'platform/text/PlatformLocale.h',
            'platform/text/QuotedPrintable.h',
            'platform/text/QuotedPrintable.cpp',
            'platform/text/RegularExpression.cpp',
            'platform/text/SegmentedString.cpp',
            'platform/text/StringWithDirection.h',
            'platform/text/SuffixTree.h',
            'platform/text/TextBoundaries.cpp',
            'platform/text/TextBreakIterator.cpp',
            'platform/text/TextBreakIteratorICU.cpp',
            'platform/text/TextBreakIteratorInternalICU.cpp',
            'platform/text/TextEncodingDetector.h',
            'platform/text/TextEncodingDetectorICU.cpp',
            'platform/text/TextStream.cpp',
            'platform/text/UnicodeRange.cpp',
            'platform/text/cf/AtomicStringCF.cpp',
            'platform/text/cf/StringCF.cpp',
            'platform/text/cf/StringImplCF.cpp',
            'platform/text/mac/LocaleMac.h',
            'platform/text/mac/LocaleMac.mm',
            'platform/text/mac/StringImplMac.mm',
            'platform/text/mac/StringMac.mm',
            'platform/text/transcoder/FontTranscoder.cpp',
            'platform/text/transcoder/FontTranscoder.h',
            'platform/text/win/LocaleWin.cpp',
            'platform/text/win/LocaleWin.h',
            'platform/win/SystemInfo.cpp',
            'platform/win/SystemInfo.h',
        ],
        'webcore_platform_geometry_files': [
            'platform/graphics/FloatPoint.cpp',
            'platform/graphics/FloatPolygon.cpp',
            'platform/graphics/FloatPoint3D.cpp',
            'platform/graphics/FloatQuad.cpp',
            'platform/graphics/FloatRect.cpp',
            'platform/graphics/FloatSize.cpp',
            'platform/graphics/IntRect.cpp',
            'platform/graphics/IntRectExtent.h',
            'platform/graphics/LayoutRect.cpp',
            'platform/graphics/Region.cpp',
            'platform/graphics/transforms/TransformationMatrix.cpp',
            'platform/graphics/transforms/AffineTransform.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/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/SVGLangSpace.cpp',
            'svg/SVGLangSpace.h',
            'svg/SVGLength.cpp',
            'svg/SVGLengthContext.cpp',
            'svg/SVGLengthList.cpp',
            'svg/SVGLineElement.cpp',
            'svg/SVGLineElement.h',
            'svg/SVGLinearGradientElement.cpp',
            'svg/SVGLinearGradientElement.h',
            'svg/SVGLocatable.cpp',
            '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/SVGTRefElement.cpp',
            'svg/SVGTRefElement.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/SVGTransformable.cpp',
            'svg/SVGTransformable.h',
            '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',
        ],
        'deprecated_perl_webcore_test_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',
          '<(SHARED_INTERMEDIATE_DIR)/blink/InternalSettingsGenerated.idl',
          '<(SHARED_INTERMEDIATE_DIR)/blink/InternalRuntimeFlags.idl',
        ],
        'python_webcore_test_support_idl_files': [
        ],
        'webcore_test_support_files': [
            'testing/v8/WebCoreTestSupport.cpp',
            'testing/v8/WebCoreTestSupport.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/Platform.cpp',
            'platform/chromium/support/WebActiveGestureAnimation.cpp',
            'platform/chromium/support/WebActiveGestureAnimation.h',
            'platform/chromium/support/WebArrayBuffer.cpp',
            'platform/chromium/support/WebAudioBus.cpp',
            'platform/chromium/support/WebCrypto.cpp',
            'platform/chromium/support/WebCryptoAlgorithm.cpp',
            'platform/chromium/support/WebCryptoKey.cpp',
            'platform/chromium/support/WebCursorInfo.cpp',
            'platform/chromium/support/WebData.cpp',
            'platform/chromium/support/WebDeviceMotionData.cpp',
            'platform/chromium/support/WebDeviceOrientationData.cpp',
            'platform/chromium/support/WebFloatQuad.cpp',
            'platform/chromium/support/WebHTTPBody.cpp',
            'platform/chromium/support/WebHTTPLoadInfo.cpp',
            'platform/chromium/support/WebMediaConstraints.cpp',
            'platform/chromium/support/WebMediaStream.cpp',
            'platform/chromium/support/WebMediaStreamSource.cpp',
            'platform/chromium/support/WebMediaStreamTrack.cpp',
            'platform/chromium/support/WebPrerender.cpp',
            'platform/chromium/support/WebPrerenderingSupport.cpp',
            'platform/chromium/support/WebRTCConfiguration.cpp',
            'platform/chromium/support/WebRTCICECandidate.cpp',
            'platform/chromium/support/WebRTCSessionDescription.cpp',
            'platform/chromium/support/WebRTCSessionDescriptionRequest.cpp',
            'platform/chromium/support/WebRTCStatsRequest.cpp',
            'platform/chromium/support/WebRTCStatsResponse.cpp',
            'platform/chromium/support/WebRTCVoidRequest.cpp',
            'platform/chromium/support/WebScrollbarImpl.cpp',
            'platform/chromium/support/WebScrollbarImpl.h',
            'platform/chromium/support/WebScrollbarThemeClientImpl.cpp',
            'platform/chromium/support/WebScrollbarThemeClientImpl.h',
            'platform/chromium/support/WebScrollbarThemeGeometryNative.cpp',
            'platform/chromium/support/WebScrollbarThemeGeometryNative.h',
            'platform/chromium/support/WebSocketStreamError.cpp',
            'platform/chromium/support/WebSourceInfo.cpp',
            'platform/chromium/support/WebSpeechSynthesisUtterance.cpp',
            'platform/chromium/support/WebSpeechSynthesisVoice.cpp',
            'platform/chromium/support/WebSpeechSynthesizerClientImpl.cpp',
            'platform/chromium/support/WebSpeechSynthesizerClientImpl.h',
            'platform/chromium/support/WebThreadSafeData.cpp',
            'platform/chromium/support/WebTransformKeyframe.cpp',
            'platform/chromium/support/WebURL.cpp',
            'platform/chromium/support/WebURLError.cpp',
            'platform/chromium/support/WebURLRequest.cpp',
            'platform/chromium/support/WebURLRequestPrivate.h',
            'platform/chromium/support/WebURLResponse.cpp',
            'platform/chromium/support/WebURLResponsePrivate.h',
            'platform/chromium/support/WrappedResourceRequest.h',
            'platform/chromium/support/WrappedResourceResponse.h',
        ],
        'core_unittest_files': [
            'animation/AnimatableNeutralTest.cpp',
            'animation/AnimatableNumberTest.cpp',
            'animation/AnimatableUnknownTest.cpp',
            'animation/DocumentTimelineTest.cpp',
            'animation/KeyframeAnimationEffectTest.cpp',
            'animation/PlayerTest.cpp',
            'animation/TimedItemCalculationsTest.cpp',
            'animation/TimedItemTest.cpp',
            'css/CSSParserValuesTest.cpp',
            'html/TimeRangesTest.cpp',
            'loader/cache/ImageResourceTest.cpp',
            'loader/cache/MemoryCacheTest.cpp',
            'loader/cache/ResourceFetcherTest.cpp',
            'page/ImageBitmapTest.cpp',
            'platform/DecimalTest.cpp',
            'platform/SharedBufferTest.cpp',
            'platform/chromium/ClipboardChromiumTest.cpp',
            'platform/graphics/FontTest.cpp',
            'platform/graphics/GraphicsContextTest.cpp',
            'platform/graphics/RoundedRectTest.cpp',
            'platform/graphics/UnitBezierTest.cpp',
            'platform/graphics/chromium/AnimationTranslationUtilTest.cpp',
            'platform/graphics/chromium/Canvas2DLayerBridgeTest.cpp',
            'platform/graphics/chromium/Canvas2DLayerManagerTest.cpp',
            'platform/graphics/chromium/DeferredImageDecoderTest.cpp',
            'platform/graphics/chromium/ImageDecodingStoreTest.cpp',
            'platform/graphics/chromium/ImageFrameGeneratorTest.cpp',
            'platform/graphics/chromium/ThreadSafeDataTransportTest.cpp',
            'platform/graphics/chromium/test/MockDiscardablePixelRef.h',
            'platform/graphics/chromium/test/MockImageDecoder.h',
            'platform/graphics/gpu/DrawingBufferTest.cpp',
            'platform/image-decoders/ImageDecoderTest.cpp',
            'platform/image-decoders/gif/GIFImageDecoderTest.cpp',
            'platform/image-decoders/webp/WEBPImageDecoderTest.cpp',
            'platform/text/DateTimeFormatTest.cpp',
            'rendering/RenderOverflowTest.cpp',
            'tests/ArenaTestHelpers.h',
            'tests/FakeWebGraphicsContext3D.h',
            'tests/HTMLDimension.cpp',
            'tests/LayoutUnit.cpp',
            'tests/LinkRelAttribute.cpp',
            'tests/PODArenaTest.cpp',
            'tests/PODFreeListArenaTest.cpp',
            'tests/PODIntervalTreeTest.cpp',
            'tests/PODRedBlackTreeTest.cpp',
            'tests/TreeTestHelpers.cpp',
            'tests/TreeTestHelpers.h',
        ],
        'scripts_for_in_files': [
            'scripts/in_file.py',
            'scripts/in_generator.py',
            'scripts/license.py',
            'scripts/name_macros.py',
            'scripts/template_expander.py',
            'scripts/templates/macros.tmpl',
        ],
        'conditions': [
            ['OS=="win"', {
                # Using native perl rather than cygwin perl cuts execution time
                # of idl preprocessing rules by a bit more than 50%.
                'perl_exe': '<(DEPTH)/third_party/perl/perl/bin/perl.exe',
                'gperf_exe': '<(DEPTH)/third_party/gperf/bin/gperf.exe',
                'bison_exe': '<(DEPTH)/third_party/bison/bin/bison.exe',
                # Using cl instead of cygwin gcc cuts the processing time from
                # 1m58s to 0m52s.
                'preprocessor': '--preprocessor "cl.exe -nologo -EP -TP"',
              },{
                'perl_exe': 'perl',
                'gperf_exe': 'gperf',
                'bison_exe': 'bison',
                # We specify a preprocess so it happens locally and won't get
                # distributed to goma.
                # FIXME: /usr/bin/gcc won't exist on OSX forever. We want to
                # use /usr/bin/clang once we require Xcode 4.x.
                'preprocessor': '--preprocessor "/usr/bin/gcc -E -P -x c++"'
              }],
         ],
    }
}