summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/ui/BUILD.gn
blob: 83b55f3be57edfa84a7d743cf349c8423d7169e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/config/buildflags_paint_preview.gni")
import("//build/config/chromecast_build.gni")
import("//build/config/chromeos/ui_mode.gni")
import("//build/config/compiler/compiler.gni")
import("//build/config/crypto.gni")
import("//build/config/features.gni")
import("//build/config/linux/gtk/gtk.gni")
import("//build/config/ui.gni")
import("//chrome/browser/buildflags.gni")
import("//chrome/common/features.gni")
import("//chromeos/assistant/assistant.gni")
import("//chromeos/dbus/use_real_dbus_clients.gni")
import("//components/feed/features.gni")
import("//components/nacl/features.gni")
import("//components/offline_pages/buildflags/features.gni")
import("//components/signin/features.gni")
import("//device/vr/buildflags/buildflags.gni")
import("//extensions/buildflags/buildflags.gni")
import("//media/media_options.gni")
import("//ppapi/buildflags/buildflags.gni")
import("//printing/buildflags/buildflags.gni")
import("//rlz/buildflags/buildflags.gni")
import("//third_party/protobuf/proto_library.gni")
import("//ui/base/ui_features.gni")
import("//ui/ozone/ozone.gni")
import("//ui/views/features.gni")

# Use a static library here because many test binaries depend on this but don't
# require many files from it. This makes linking more efficient.
static_library("ui") {
  sources = [
    "accelerator_utils.h",
    "app_list/app_list_util.cc",
    "app_list/app_list_util.h",

    # All other browser/ui/app_list files go under is_chromeos below.
    "autofill/autofill_bubble_handler.h",
    "autofill/autofill_popup_controller.h",
    "autofill/autofill_popup_controller_impl.cc",
    "autofill/autofill_popup_controller_impl.h",
    "autofill/autofill_popup_controller_utils.cc",
    "autofill/autofill_popup_controller_utils.h",
    "autofill/autofill_popup_view.h",
    "autofill/autofill_popup_view_delegate.h",
    "autofill/chrome_autofill_client.cc",
    "autofill/chrome_autofill_client.h",
    "autofill/payments/autofill_dialog_models.cc",
    "autofill/payments/autofill_dialog_models.h",
    "autofill/payments/create_card_unmask_prompt_view.h",
    "autofill/payments/credit_card_scanner_controller.cc",
    "autofill/payments/credit_card_scanner_controller.h",
    "autofill/payments/credit_card_scanner_view.cc",
    "autofill/payments/credit_card_scanner_view.h",
    "autofill/payments/credit_card_scanner_view_delegate.h",
    "autofill/payments/payments_ui_constants.h",
    "autofill/popup_constants.h",
    "autofill/popup_controller_common.cc",
    "autofill/popup_controller_common.h",
    "autofill/test/test_autofill_bubble_handler.cc",
    "autofill/test/test_autofill_bubble_handler.h",
    "blocked_content/blocked_window_params.cc",
    "blocked_content/blocked_window_params.h",
    "blocked_content/chrome_popup_navigation_delegate.cc",
    "blocked_content/chrome_popup_navigation_delegate.h",
    "blocked_content/tab_under_navigation_throttle.cc",
    "blocked_content/tab_under_navigation_throttle.h",
    "browser_dialogs.cc",
    "browser_dialogs.h",
    "browser_navigator_params.cc",
    "browser_navigator_params.h",
    "browser_ui_prefs.cc",
    "browser_ui_prefs.h",
    "chrome_select_file_policy.cc",
    "chrome_select_file_policy.h",
    "color_chooser.h",
    "confirm_bubble.h",
    "cookie_controls/cookie_controls_service.cc",
    "cookie_controls/cookie_controls_service.h",
    "cookie_controls/cookie_controls_service_factory.cc",
    "cookie_controls/cookie_controls_service_factory.h",
    "crypto_module_password_dialog.h",
    "cryptuiapi_shim.h",
    "enterprise_startup_dialog.h",
    "find_bar/find_bar.h",
    "find_bar/find_bar_state.cc",
    "find_bar/find_bar_state.h",
    "find_bar/find_bar_state_factory.cc",
    "find_bar/find_bar_state_factory.h",
    "interventions/framebust_block_message_delegate.cc",
    "interventions/framebust_block_message_delegate.h",
    "interventions/intervention_delegate.h",
    "interventions/intervention_infobar_delegate.cc",
    "interventions/intervention_infobar_delegate.h",
    "javascript_dialogs/chrome_javascript_app_modal_dialog_view_factory.h",
    "login/login_handler.cc",
    "login/login_handler.h",
    "login/login_navigation_throttle.cc",
    "login/login_navigation_throttle.h",
    "login/login_tab_helper.cc",
    "login/login_tab_helper.h",
    "native_file_system_dialogs.cc",
    "native_file_system_dialogs.h",
    "page_info/chrome_page_info_client.cc",
    "page_info/chrome_page_info_client.h",
    "page_info/chrome_page_info_delegate.cc",
    "page_info/chrome_page_info_delegate.h",
    "page_info/chrome_page_info_ui_delegate.cc",
    "page_info/chrome_page_info_ui_delegate.h",
    "passwords/account_avatar_fetcher.cc",
    "passwords/account_avatar_fetcher.h",
    "passwords/manage_passwords_state.cc",
    "passwords/manage_passwords_state.h",
    "passwords/manage_passwords_view_utils.cc",
    "passwords/manage_passwords_view_utils.h",
    "passwords/password_generation_popup_controller.cc",
    "passwords/password_generation_popup_controller.h",
    "passwords/password_generation_popup_controller_impl.cc",
    "passwords/password_generation_popup_controller_impl.h",
    "passwords/password_generation_popup_observer.h",
    "passwords/password_generation_popup_view.h",
    "passwords/settings/password_manager_porter.cc",
    "passwords/settings/password_manager_porter.h",
    "passwords/settings/password_manager_presenter.cc",
    "passwords/settings/password_manager_presenter.h",
    "passwords/settings/password_ui_view.h",
    "passwords/well_known_change_password_navigation_throttle.cc",
    "passwords/well_known_change_password_navigation_throttle.h",
    "prefs/pref_watcher.cc",
    "prefs/pref_watcher.h",
    "prefs/prefs_tab_helper.cc",
    "prefs/prefs_tab_helper.h",
    "profile_chooser_constants.h",
    "profile_error_dialog.cc",
    "profile_error_dialog.h",
    "read_later/reading_list_model_factory.cc",
    "read_later/reading_list_model_factory.h",
    "recently_audible_helper.cc",
    "recently_audible_helper.h",
    "screen_capture_notification_ui.h",
    "search_engines/edit_search_engine_controller.cc",
    "search_engines/edit_search_engine_controller.h",
    "search_engines/keyword_editor_controller.cc",
    "search_engines/keyword_editor_controller.h",
    "search_engines/search_engine_tab_helper.cc",
    "search_engines/search_engine_tab_helper.h",
    "search_engines/template_url_table_model.cc",
    "search_engines/template_url_table_model.h",
    "session_crashed_bubble.h",
    "simple_message_box.h",
    "simple_message_box_internal.cc",
    "simple_message_box_internal.h",
    "startup/bad_flags_prompt.cc",
    "startup/bad_flags_prompt.h",
    "status_bubble.h",
    "storage_pressure_bubble.h",
    "sync/tab_contents_synced_tab_delegate.cc",
    "sync/tab_contents_synced_tab_delegate.h",
    "tab_contents/chrome_web_contents_view_delegate.h",
    "tab_contents/core_tab_helper.cc",
    "tab_contents/core_tab_helper.h",
    "tab_dialogs.cc",
    "tab_dialogs.h",
    "tab_helpers.cc",
    "tab_helpers.h",
    "tab_modal_confirm_dialog.h",
    "tab_ui_helper.cc",
    "tab_ui_helper.h",
    "toolbar/chrome_location_bar_model_delegate.cc",
    "toolbar/chrome_location_bar_model_delegate.h",
    "translate/source_language_combobox_model.cc",
    "translate/source_language_combobox_model.h",
    "translate/target_language_combobox_model.cc",
    "translate/target_language_combobox_model.h",
    "translate/translate_bubble_model.h",
    "translate/translate_bubble_model_impl.cc",
    "translate/translate_bubble_model_impl.h",
    "translate/translate_bubble_view_state_transition.cc",
    "translate/translate_bubble_view_state_transition.h",
    "ui_features.cc",
    "ui_features.h",
    "uninstall_browser_prompt.h",
    "view_ids.h",
    "webauthn/authenticator_request_dialog.h",
    "webui/about_ui.cc",
    "webui/about_ui.h",
    "webui/autofill_and_password_manager_internals/autofill_internals_ui.cc",
    "webui/autofill_and_password_manager_internals/autofill_internals_ui.h",
    "webui/autofill_and_password_manager_internals/internals_ui_handler.cc",
    "webui/autofill_and_password_manager_internals/internals_ui_handler.h",
    "webui/autofill_and_password_manager_internals/password_manager_internals_ui.cc",
    "webui/autofill_and_password_manager_internals/password_manager_internals_ui.h",
    "webui/chrome_web_ui_controller_factory.cc",
    "webui/chrome_web_ui_controller_factory.h",
    "webui/components/components_handler.cc",
    "webui/components/components_handler.h",
    "webui/components/components_ui.cc",
    "webui/components/components_ui.h",
    "webui/constrained_web_dialog_ui.cc",
    "webui/constrained_web_dialog_ui.h",
    "webui/cookies_tree_model_util.cc",
    "webui/cookies_tree_model_util.h",
    "webui/crashes_ui.cc",
    "webui/crashes_ui.h",
    "webui/device_log_ui.cc",
    "webui/device_log_ui.h",
    "webui/domain_reliability_internals_ui.cc",
    "webui/domain_reliability_internals_ui.h",
    "webui/download_internals/download_internals_ui.cc",
    "webui/download_internals/download_internals_ui.h",
    "webui/download_internals/download_internals_ui_message_handler.cc",
    "webui/download_internals/download_internals_ui_message_handler.h",
    "webui/engagement/site_engagement_ui.cc",
    "webui/engagement/site_engagement_ui.h",
    "webui/fileicon_source.cc",
    "webui/fileicon_source.h",
    "webui/flags_ui.cc",
    "webui/flags_ui.h",
    "webui/flags_ui_handler.cc",
    "webui/flags_ui_handler.h",
    "webui/gcm_internals_ui.cc",
    "webui/gcm_internals_ui.h",
    "webui/internals/internals_ui.cc",
    "webui/internals/internals_ui.h",
    "webui/interstitials/interstitial_ui.cc",
    "webui/interstitials/interstitial_ui.h",
    "webui/interventions_internals/interventions_internals_page_handler.cc",
    "webui/interventions_internals/interventions_internals_page_handler.h",
    "webui/interventions_internals/interventions_internals_ui.cc",
    "webui/interventions_internals/interventions_internals_ui.h",
    "webui/invalidations_message_handler.cc",
    "webui/invalidations_message_handler.h",
    "webui/invalidations_ui.cc",
    "webui/invalidations_ui.h",
    "webui/local_state/local_state_ui.cc",
    "webui/local_state/local_state_ui.h",
    "webui/log_web_ui_url.cc",
    "webui/log_web_ui_url.h",
    "webui/media/media_engagement_ui.cc",
    "webui/media/media_engagement_ui.h",
    "webui/media/media_history_ui.cc",
    "webui/media/media_history_ui.h",
    "webui/memory_internals_ui.cc",
    "webui/memory_internals_ui.h",
    "webui/metrics_handler.cc",
    "webui/metrics_handler.h",
    "webui/net_export_ui.cc",
    "webui/net_export_ui.h",
    "webui/net_internals/net_internals_ui.cc",
    "webui/net_internals/net_internals_ui.h",
    "webui/ntp_tiles_internals_ui.cc",
    "webui/ntp_tiles_internals_ui.h",
    "webui/omnibox/omnibox_page_handler.cc",
    "webui/omnibox/omnibox_page_handler.h",
    "webui/omnibox/omnibox_ui.cc",
    "webui/omnibox/omnibox_ui.h",
    "webui/policy_ui.cc",
    "webui/policy_ui.h",
    "webui/policy_ui_handler.cc",
    "webui/policy_ui_handler.h",
    "webui/predictors/predictors_handler.cc",
    "webui/predictors/predictors_handler.h",
    "webui/predictors/predictors_ui.cc",
    "webui/predictors/predictors_ui.h",
    "webui/prefs_internals_source.cc",
    "webui/prefs_internals_source.h",
    "webui/quota_internals/quota_internals_handler.cc",
    "webui/quota_internals/quota_internals_handler.h",
    "webui/quota_internals/quota_internals_proxy.cc",
    "webui/quota_internals/quota_internals_proxy.h",
    "webui/quota_internals/quota_internals_types.cc",
    "webui/quota_internals/quota_internals_types.h",
    "webui/quota_internals/quota_internals_ui.cc",
    "webui/quota_internals/quota_internals_ui.h",
    "webui/signin_internals_ui.cc",
    "webui/signin_internals_ui.h",
    "webui/sync_internals_message_handler.cc",
    "webui/sync_internals_message_handler.h",
    "webui/sync_internals_ui.cc",
    "webui/sync_internals_ui.h",
    "webui/test_files_request_filter.cc",
    "webui/test_files_request_filter.h",
    "webui/translate_internals/chrome_translate_internals_handler.cc",
    "webui/translate_internals/chrome_translate_internals_handler.h",
    "webui/translate_internals/translate_internals_ui.cc",
    "webui/translate_internals/translate_internals_ui.h",
    "webui/usb_internals/usb_internals_page_handler.cc",
    "webui/usb_internals/usb_internals_page_handler.h",
    "webui/usb_internals/usb_internals_ui.cc",
    "webui/usb_internals/usb_internals_ui.h",
    "webui/user_actions/user_actions_ui.cc",
    "webui/user_actions/user_actions_ui.h",
    "webui/user_actions/user_actions_ui_handler.cc",
    "webui/user_actions/user_actions_ui_handler.h",
    "webui/version_handler.cc",
    "webui/version_handler.h",
    "webui/version_ui.cc",
    "webui/version_ui.h",
    "webui/webui_load_timer.cc",
    "webui/webui_load_timer.h",
    "webui/webui_util.cc",
    "webui/webui_util.h",
  ]

  if (is_win || is_mac) {
    sources += [
      "webui/settings/captions_handler.cc",
      "webui/settings/captions_handler.h",
    ]
  }

  if (safe_browsing_mode == 1) {
    sources += [
      "webui/reset_password/reset_password_ui.cc",
      "webui/reset_password/reset_password_ui.h",
    ]
  }

  # TODO(crbug/925153): Remove this circular dependency.
  allow_circular_includes_from = [ "//chrome/browser/safe_browsing" ]
  defines = []
  libs = []

  configs += [
    "//build/config:precompiled_headers",
    "//build/config/compiler:wexit_time_destructors",
  ]

  # Since browser and browser_ui actually depend on each other,
  # we must omit the dependency from browser_ui to browser.
  # However, this means browser_ui and browser should more or less
  # have the same dependencies. Once browser_ui is untangled from
  # browser, then we can clean up these dependencies.
  public_deps = [
    "//chrome/services/machine_learning:machine_learning_tflite_buildflags",
    "//components/dom_distiller/core",
    "//components/safe_browsing:buildflags",
    "//components/sync",
    "//components/sync_user_events",
    "//components/translate/content/browser",
    "//content/public/browser",
    "//mojo/public/cpp/bindings",
  ]
  deps = [
    "//base",
    "//base:i18n",
    "//base/allocator:buildflags",
    "//build:branding_buildflags",
    "//cc/paint",
    "//chrome:extra_resources",
    "//chrome:resources",
    "//chrome:strings",
    "//chrome/app:chrome_dll_resources",
    "//chrome/app:command_ids",
    "//chrome/app/resources:platform_locale_settings",
    "//chrome/app/theme:chrome_unscaled_resources",
    "//chrome/app/theme:theme_resources",
    "//chrome/app/vector_icons",
    "//chrome/browser:buildflags",
    "//chrome/browser:dev_ui_browser_resources",
    "//chrome/browser:resource_prefetch_predictor_proto",
    "//chrome/browser/devtools",
    "//chrome/browser/engagement:mojo_bindings",
    "//chrome/browser/image_decoder",
    "//chrome/browser/media:mojo_bindings",
    "//chrome/browser/media/feeds:mojo_bindings",
    "//chrome/browser/profiling_host",
    "//chrome/browser/resources/invalidations:invalidations_resources",
    "//chrome/browser/resources/media:webrtc_logs_resources",
    "//chrome/browser/resources/net_internals:net_internals_resources",
    "//chrome/browser/resources/omnibox:resources",
    "//chrome/browser/resources/quota_internals:quota_internals_resources",
    "//chrome/browser/resources/usb_internals:resources",
    "//chrome/browser/safe_browsing",
    "//chrome/browser/ui/webui/bluetooth_internals",
    "//chrome/browser/ui/webui/downloads:mojo_bindings",
    "//chrome/browser/ui/webui/interventions_internals:mojo_bindings",
    "//chrome/browser/ui/webui/new_tab_page:mojo_bindings",
    "//chrome/browser/ui/webui/omnibox:mojo_bindings",
    "//chrome/browser/ui/webui/read_later:mojo_bindings",
    "//chrome/browser/ui/webui/tab_search:mojo_bindings",
    "//chrome/browser/ui/webui/usb_internals:mojo_bindings",
    "//chrome/browser/video_tutorials",
    "//chrome/common",
    "//chrome/common/net",
    "//chrome/common/search:mojo_bindings",
    "//chrome/installer/util:with_no_strings",
    "//chrome/services/qrcode_generator/public/cpp",
    "//chrome/services/qrcode_generator/public/mojom",
    "//components/about_ui",
    "//components/account_id",
    "//components/autofill/content/browser:risk_proto",
    "//components/autofill/core/browser",
    "//components/blocked_content",
    "//components/bookmarks/browser",
    "//components/bookmarks/managed",
    "//components/browser_sync",
    "//components/browsing_data/content",
    "//components/browsing_data/core",
    "//components/captive_portal/content",
    "//components/captive_portal/core:buildflags",
    "//components/client_hints/browser",
    "//components/consent_auditor/",
    "//components/content_settings/browser",
    "//components/content_settings/common:mojom",
    "//components/content_settings/core/browser",
    "//components/content_settings/core/common",
    "//components/country_codes",
    "//components/crx_file",
    "//components/data_reduction_proxy/core/browser",
    "//components/device_event_log",
    "//components/dom_distiller/content/browser",
    "//components/domain_reliability",
    "//components/download/content/factory",
    "//components/download/content/public",
    "//components/embedder_support",
    "//components/encrypted_messages:encrypted_message_proto",
    "//components/enterprise",
    "//components/error_page/content/browser",
    "//components/favicon/content",
    "//components/favicon/core",
    "//components/feature_engagement",
    "//components/feed:buildflags",
    "//components/feed:feature_list",
    "//components/feed/content:feed_content",
    "//components/feed/core:feed_core",
    "//components/feedback",
    "//components/find_in_page",
    "//components/flags_ui",
    "//components/gcm_driver",
    "//components/google/core/common",
    "//components/heap_profiling/multi_process",
    "//components/history/content/browser",
    "//components/history/core/browser",
    "//components/history/core/common",
    "//components/image_fetcher/core",
    "//components/infobars/core",
    "//components/invalidation/impl",
    "//components/javascript_dialogs",
    "//components/keyed_service/content",
    "//components/keyed_service/core",
    "//components/language/core/browser",
    "//components/language/core/common",
    "//components/lookalikes/core",
    "//components/metrics_services_manager",
    "//components/navigation_metrics",
    "//components/net_log",
    "//components/ntp_tiles",
    "//components/offline_pages/buildflags",
    "//components/omnibox/browser",
    "//components/omnibox/browser:vector_icons",
    "//components/onc",
    "//components/optimization_guide",
    "//components/paint_preview/buildflags",
    "//components/password_manager/content/browser",
    "//components/password_manager/core/browser",
    "//components/password_manager/core/browser:affiliation",
    "//components/password_manager/core/browser:csv",
    "//components/payments/content:utils",
    "//components/payments/content/icon",
    "//components/payments/core:error_strings",
    "//components/pdf/browser",
    "//components/performance_manager",
    "//components/permissions",
    "//components/policy/core/browser",
    "//components/pref_registry",
    "//components/prerender/browser",
    "//components/previews/content",
    "//components/previews/core",
    "//components/proxy_config",
    "//components/query_parser",
    "//components/rappor",
    "//components/reading_list/core",
    "//components/renderer_context_menu",
    "//components/resources",
    "//components/safe_browsing/content/password_protection",
    "//components/safe_browsing/content/password_protection:password_protection_metrics_util",
    "//components/safe_browsing/content/triggers:ad_popup_trigger",
    "//components/safe_browsing/content/triggers:ad_redirect_trigger",
    "//components/safe_browsing/content/web_ui",
    "//components/safe_browsing/core:csd_proto",
    "//components/safe_browsing/core:features",
    "//components/safe_browsing/core/common",
    "//components/safe_browsing/core/common:safe_browsing_prefs",
    "//components/safe_browsing/core/db:database_manager",
    "//components/safe_browsing/core/db:util",
    "//components/schema_org/common:improved_mojom",
    "//components/search",
    "//components/search_engines",
    "//components/security_interstitials/content:security_interstitial_page",
    "//components/security_interstitials/core",
    "//components/security_interstitials/core:unsafe_resource",
    "//components/security_state/content",
    "//components/security_state/core",
    "//components/send_tab_to_self",
    "//components/sessions",
    "//components/signin/core/browser",
    "//components/signin/public/base:signin_buildflags",
    "//components/signin/public/identity_manager",
    "//components/spellcheck/browser",
    "//components/ssl_errors",
    "//components/startup_metric_utils/browser",
    "//components/strings",
    "//components/subresource_filter/content/browser",
    "//components/subresource_filter/core/browser",
    "//components/sync",
    "//components/sync/driver:resources",
    "//components/sync_preferences",
    "//components/sync_sessions",
    "//components/tab_groups",
    "//components/tracing:startup_tracing",
    "//components/translate/translate_internals",
    "//components/ui_devtools",
    "//components/ukm",
    "//components/ukm/content",
    "//components/undo",
    "//components/unified_consent",
    "//components/update_client",
    "//components/upload_list",
    "//components/url_formatter",
    "//components/url_formatter/spoof_checks/top_domains:common",
    "//components/user_manager",
    "//components/user_prefs",
    "//components/variations",
    "//components/variations/service",
    "//components/vector_icons",
    "//components/version_ui",
    "//components/viz/host",
    "//components/web_cache/browser",
    "//components/web_resource",
    "//content/app/resources",
    "//content/browser/webrtc/resources",
    "//content/public/common",
    "//crypto",
    "//extensions/buildflags",
    "//gpu/config",
    "//media",
    "//net",
    "//ppapi/buildflags",
    "//printing/buildflags",
    "//rlz/buildflags",
    "//services/device/public/cpp:device_features",
    "//services/metrics/public/cpp:ukm_builders",
    "//services/network/public/mojom",
    "//skia",
    "//storage/browser",
    "//storage/common",
    "//third_party/adobe/flash:flapper_version_h",
    "//third_party/blink/public:buildflags",
    "//third_party/blink/public:resources",
    "//third_party/blink/public/common",
    "//third_party/brotli:dec",
    "//third_party/icu",
    "//third_party/leveldatabase",
    "//third_party/re2",
    "//third_party/webrtc_overrides:webrtc_component",
    "//third_party/zlib",
    "//ui/accessibility",
    "//ui/base",
    "//ui/base:data_exchange",
    "//ui/base/clipboard",
    "//ui/base/ime",
    "//ui/compositor",
    "//ui/content_accelerators",
    "//ui/display",
    "//ui/display/manager",
    "//ui/events:gesture_detection",
    "//ui/gfx",
    "//ui/gfx/geometry",
    "//ui/message_center",
    "//ui/message_center/public/cpp",
    "//ui/native_theme",
    "//ui/native_theme:native_theme_browser",
    "//ui/resources",
    "//ui/shell_dialogs",
    "//ui/snapshot",
    "//ui/strings",
    "//ui/surface",
    "//ui/web_dialogs",
    "//ui/webui",
    "//ui/webui/resources/cr_components/customize_themes:mojom",
    "//v8:v8_version",
  ]
  allow_circular_includes_from +=
      [ "//chrome/browser/ui/webui/bluetooth_internals" ]

  if (is_win || is_mac || is_desktop_linux || is_chromeos) {
    deps += [ "//chrome/browser/ui/webui/discards:mojo_bindings" ]
  }

  if (enable_vr && is_win) {
    deps += [ "//chrome/browser/vr:vr_base" ]
  }

  if (is_android) {
    deps += [
      "//chrome/app:chromium_strings",
      "//chrome/browser/notifications/scheduler/public",
      "//chrome/browser/ui/webui/explore_sites_internals:mojo_bindings",
      "//chrome/browser/ui/webui/feed_internals:mojo_bindings",
      "//components/browser_ui/util/android",
      "//components/feed/core/common:feed_core_common",
      "//components/feed/core/v2:feed_core_v2",
      "//components/infobars/content",
      "//components/query_tiles",
      "//components/security_state/content/android",
    ]
  } else {
    # !is_android
    deps += [ "//components/autofill/content/browser/webauthn" ]
  }

  if (!is_fuchsia) {
    # TODO(crbug.com/753619): Enable crash reporting on Fuchsia.
    deps += [
      "//components/crash/core/app",
      "//components/crash/core/browser",
    ]
  }

  if (is_win || is_android || is_linux || is_chromeos) {
    sources += [
      "webui/sandbox/sandbox_internals_ui.cc",
      "webui/sandbox/sandbox_internals_ui.h",
    ]
  }

  if (is_win) {
    sources += [
      "webui/sandbox/sandbox_handler.cc",
      "webui/sandbox/sandbox_handler.h",
    ]
  }

  if (is_android) {
    sources += [
      "android/android_about_app_info.cc",
      "android/android_about_app_info.h",
      "android/autofill/autofill_keyboard_accessory_view.cc",
      "android/autofill/autofill_keyboard_accessory_view.h",
      "android/autofill/autofill_logger_android.cc",
      "android/autofill/autofill_logger_android.h",
      "android/autofill/autofill_popup_view_android.cc",
      "android/autofill/autofill_popup_view_android.h",
      "android/autofill/card_expiration_date_fix_flow_view_android.cc",
      "android/autofill/card_expiration_date_fix_flow_view_android.h",
      "android/autofill/card_name_fix_flow_view_android.cc",
      "android/autofill/card_name_fix_flow_view_android.h",
      "android/autofill/card_unmask_prompt_view_android.cc",
      "android/autofill/card_unmask_prompt_view_android.h",
      "android/autofill/credit_card_scanner_view_android.cc",
      "android/autofill/credit_card_scanner_view_android.h",
      "android/chrome_http_auth_handler.cc",
      "android/chrome_http_auth_handler.h",
      "android/chrome_javascript_app_modal_dialog_android.cc",
      "android/color_chooser_dialog_android.cc",
      "android/content_settings/ads_blocked_infobar_delegate.cc",
      "android/content_settings/ads_blocked_infobar_delegate.h",
      "android/context_menu_helper.cc",
      "android/context_menu_helper.h",
      "android/device_dialog/bluetooth_chooser_android.cc",
      "android/device_dialog/bluetooth_chooser_android.h",
      "android/device_dialog/bluetooth_scanning_prompt_android.cc",
      "android/device_dialog/bluetooth_scanning_prompt_android.h",
      "android/device_dialog/usb_chooser_dialog_android.cc",
      "android/device_dialog/usb_chooser_dialog_android.h",
      "android/external_protocol_dialog_android.cc",
      "android/infobars/ads_blocked_infobar.cc",
      "android/infobars/ads_blocked_infobar.h",
      "android/infobars/autofill_credit_card_filling_infobar.cc",
      "android/infobars/autofill_credit_card_filling_infobar.h",
      "android/infobars/autofill_save_card_infobar.cc",
      "android/infobars/autofill_save_card_infobar.h",
      "android/infobars/chrome_confirm_infobar.cc",
      "android/infobars/chrome_confirm_infobar.h",
      "android/infobars/data_reduction_promo_infobar.cc",
      "android/infobars/data_reduction_promo_infobar.h",
      "android/infobars/download_progress_infobar.cc",
      "android/infobars/download_progress_infobar.h",
      "android/infobars/duplicate_download_infobar.cc",
      "android/infobars/duplicate_download_infobar.h",
      "android/infobars/framebust_block_infobar.cc",
      "android/infobars/framebust_block_infobar.h",
      "android/infobars/generated_password_saved_infobar.cc",
      "android/infobars/generated_password_saved_infobar.h",
      "android/infobars/grouped_permission_infobar.cc",
      "android/infobars/grouped_permission_infobar.h",
      "android/infobars/infobar_container_android.cc",
      "android/infobars/infobar_container_android.h",
      "android/infobars/installable_ambient_badge_infobar.cc",
      "android/infobars/installable_ambient_badge_infobar.h",
      "android/infobars/instant_apps_infobar.cc",
      "android/infobars/instant_apps_infobar.h",
      "android/infobars/near_oom_infobar.cc",
      "android/infobars/near_oom_infobar.h",
      "android/infobars/near_oom_reduction_infobar.cc",
      "android/infobars/near_oom_reduction_infobar.h",
      "android/infobars/previews_lite_page_infobar.cc",
      "android/infobars/previews_lite_page_infobar.h",
      "android/infobars/reader_mode_infobar.cc",
      "android/infobars/reader_mode_infobar.h",
      "android/infobars/save_password_infobar.cc",
      "android/infobars/save_password_infobar.h",
      "android/infobars/search_geolocation_disclosure_infobar.cc",
      "android/infobars/search_geolocation_disclosure_infobar.h",
      "android/infobars/simple_confirm_infobar_builder.cc",
      "android/infobars/survey_infobar.cc",
      "android/infobars/survey_infobar.h",
      "android/infobars/sync_error_infobar.cc",
      "android/infobars/sync_error_infobar.h",
      "android/infobars/translate_compact_infobar.cc",
      "android/infobars/translate_compact_infobar.h",
      "android/infobars/update_password_infobar.cc",
      "android/infobars/update_password_infobar.h",
      "android/login_handler_android.cc",
      "android/omnibox/omnibox_view_util.cc",
      "android/omnibox/omnibox_view_util.h",
      "android/overlay/overlay_window_android.cc",
      "android/overlay/overlay_window_android.h",
      "android/passwords/all_passwords_bottom_sheet_view.h",
      "android/passwords/all_passwords_bottom_sheet_view_impl.cc",
      "android/passwords/all_passwords_bottom_sheet_view_impl.h",
      "android/passwords/credential_leak_dialog_view_android.cc",
      "android/passwords/credential_leak_dialog_view_android.h",
      "android/passwords/manual_filling_view_android.cc",
      "android/passwords/manual_filling_view_android.h",
      "android/passwords/password_generation_dialog_view_android.cc",
      "android/passwords/password_generation_dialog_view_android.h",
      "android/passwords/password_generation_editing_popup_view_android.cc",
      "android/passwords/password_generation_editing_popup_view_android.h",
      "android/safe_browsing/password_reuse_dialog_view_android.cc",
      "android/safe_browsing/password_reuse_dialog_view_android.h",
      "android/simple_message_box_android.cc",
      "android/ssl_client_certificate_selector.cc",
      "android/status_tray_android.cc",
      "android/tab_contents/chrome_web_contents_view_delegate_android.cc",
      "android/tab_contents/chrome_web_contents_view_delegate_android.h",
      "android/tab_model/android_live_tab_context.cc",
      "android/tab_model/android_live_tab_context.h",
      "android/tab_model/tab_model.cc",
      "android/tab_model/tab_model.h",
      "android/tab_model/tab_model_jni_bridge.cc",
      "android/tab_model/tab_model_jni_bridge.h",
      "android/tab_model/tab_model_list.cc",
      "android/tab_model/tab_model_list.h",
      "android/tab_model/tab_model_list_observer.h",
      "android/tab_model/tab_model_observer.cc",
      "android/tab_model/tab_model_observer.h",
      "android/tab_model/tab_model_observer_jni_bridge.cc",
      "android/tab_model/tab_model_observer_jni_bridge.h",
      "android/toolbar/location_bar_model_android.cc",
      "android/toolbar/location_bar_model_android.h",
      "browser_otr_state_android.cc",
      "javascript_dialogs/javascript_tab_modal_dialog_manager_delegate_android.cc",
      "javascript_dialogs/javascript_tab_modal_dialog_manager_delegate_android.h",
      "screen_capture_notification_ui_stub.cc",
      "webui/explore_sites_internals/explore_sites_internals_page_handler.cc",
      "webui/explore_sites_internals/explore_sites_internals_page_handler.h",
      "webui/explore_sites_internals/explore_sites_internals_ui.cc",
      "webui/explore_sites_internals/explore_sites_internals_ui.h",
      "webui/internals/notifications/notifications_internals_ui_message_handler.cc",
      "webui/internals/notifications/notifications_internals_ui_message_handler.h",
      "webui/internals/query_tiles/query_tiles_internals_ui_message_handler.cc",
      "webui/internals/query_tiles/query_tiles_internals_ui_message_handler.h",
      "webui/offline/offline_internals_ui.cc",
      "webui/offline/offline_internals_ui.h",
      "webui/offline/offline_internals_ui_message_handler.cc",
      "webui/offline/offline_internals_ui_message_handler.h",
      "webui/video_tutorials/video_player_source.cc",
      "webui/video_tutorials/video_player_source.h",
      "webui/webapks_handler.cc",
      "webui/webapks_handler.h",
      "webui/webapks_ui.cc",
      "webui/webapks_ui.h",
    ]
    if (enable_feed_v1 || enable_feed_v2) {
      sources += [
        "webui/feed_internals/feed_internals_ui.cc",
        "webui/feed_internals/feed_internals_ui.h",
      ]
    }
    if (enable_feed_v1) {
      sources += [
        "webui/feed_internals/feed_internals_page_handler.cc",
        "webui/feed_internals/feed_internals_page_handler.h",
      ]
    }
    if (enable_feed_v2) {
      sources += [
        "webui/feed_internals/feedv2_internals_page_handler.cc",
        "webui/feed_internals/feedv2_internals_page_handler.h",
      ]
    }

    deps += [
      "//chrome/android:jni_headers",
      "//chrome/android/features/dev_ui:buildflags",
      "//chrome/browser/image_decoder",
      "//chrome/browser/resources/webapks:webapks_ui_resources",
      "//components/browser_ui/client_certificate/android",
      "//components/embedder_support/android:browser_context",
      "//components/embedder_support/android:context_menu",
      "//components/embedder_support/android:web_contents_delegate",
      "//components/infobars/android",
      "//components/javascript_dialogs/android:jni_headers",
      "//components/navigation_interception",
      "//components/optimization_guide/proto:optimization_guide_proto",
      "//components/page_info",
      "//components/page_info/android:android",
      "//components/subresource_filter/core/browser",
      "//components/thin_webview:thin_webview",
      "//components/translate/content/android",
      "//crypto:platform",
      "//device/vr/buildflags",
      "//services/device/public/cpp/usb",
      "//services/device/public/mojom:usb",
      "//ui/android",
    ]
  } else {
    # !is_android
    sources += [
      "app_icon_loader.cc",
      "app_icon_loader.h",
      "apps/app_info_dialog.h",
      "apps/chrome_app_delegate.cc",
      "apps/chrome_app_delegate.h",
      "apps/chrome_app_window_client.cc",
      "apps/chrome_app_window_client.h",
      "apps/directory_access_confirmation_dialog.cc",
      "apps/directory_access_confirmation_dialog.h",
      "blocked_content/framebust_block_tab_helper.cc",
      "blocked_content/framebust_block_tab_helper.h",
      "blocked_content/popunder_preventer.cc",
      "blocked_content/popunder_preventer.h",
      "bluetooth/bluetooth_chooser_controller.cc",
      "bluetooth/bluetooth_chooser_controller.h",
      "bluetooth/bluetooth_chooser_desktop.cc",
      "bluetooth/bluetooth_chooser_desktop.h",
      "bluetooth/bluetooth_scanning_prompt_controller.cc",
      "bluetooth/bluetooth_scanning_prompt_controller.h",
      "bluetooth/bluetooth_scanning_prompt_desktop.cc",
      "bluetooth/bluetooth_scanning_prompt_desktop.h",
      "bluetooth/chrome_extension_bluetooth_chooser.cc",
      "bluetooth/chrome_extension_bluetooth_chooser.h",
      "bookmarks/bookmark_bar.h",
      "bookmarks/bookmark_bubble_observer.h",
      "bookmarks/bookmark_context_menu_controller.cc",
      "bookmarks/bookmark_context_menu_controller.h",
      "bookmarks/bookmark_drag_drop.cc",
      "bookmarks/bookmark_drag_drop.h",
      "bookmarks/bookmark_editor.cc",
      "bookmarks/bookmark_editor.h",
      "bookmarks/bookmark_stats.cc",
      "bookmarks/bookmark_stats.h",
      "bookmarks/bookmark_tab_helper.cc",
      "bookmarks/bookmark_tab_helper.h",
      "bookmarks/bookmark_tab_helper_observer.h",
      "bookmarks/bookmark_utils.cc",
      "bookmarks/bookmark_utils.h",
      "bookmarks/bookmark_utils_desktop.cc",
      "bookmarks/bookmark_utils_desktop.h",
      "bookmarks/recently_used_folders_combo_model.cc",
      "bookmarks/recently_used_folders_combo_model.h",
      "browser.cc",
      "browser.h",
      "browser_command_controller.cc",
      "browser_command_controller.h",
      "browser_commands.cc",
      "browser_commands.h",
      "browser_content_setting_bubble_model_delegate.cc",
      "browser_content_setting_bubble_model_delegate.h",
      "browser_finder.cc",
      "browser_finder.h",
      "browser_instant_controller.cc",
      "browser_instant_controller.h",
      "browser_list.cc",
      "browser_list.h",
      "browser_list_observer.h",
      "browser_live_tab_context.cc",
      "browser_live_tab_context.h",
      "browser_location_bar_model_delegate.cc",
      "browser_location_bar_model_delegate.h",
      "browser_navigator.cc",
      "browser_navigator.h",
      "browser_otr_state.cc",
      "browser_otr_state.h",
      "browser_tab_restorer.cc",
      "browser_tab_strip_model_delegate.cc",
      "browser_tab_strip_model_delegate.h",
      "browser_tab_strip_tracker.cc",
      "browser_tab_strip_tracker.h",
      "browser_tab_strip_tracker_delegate.h",
      "browser_tabrestore.cc",
      "browser_tabrestore.h",
      "browser_tabstrip.cc",
      "browser_tabstrip.h",
      "browser_view_prefs.cc",
      "browser_view_prefs.h",
      "browser_window.h",
      "browser_window_state.cc",
      "browser_window_state.h",
      "caption_bubble_controller.h",
      "chrome_pages.cc",
      "chrome_pages.h",
      "chrome_web_modal_dialog_manager_delegate.cc",
      "chrome_web_modal_dialog_manager_delegate.h",
      "collected_cookies_infobar_delegate.cc",
      "collected_cookies_infobar_delegate.h",
      "commander/command_source.cc",
      "commander/command_source.h",
      "commander/commander_backend.h",
      "commander/commander_controller.cc",
      "commander/commander_controller.h",
      "commander/commander_frontend.h",
      "commander/commander_view_model.cc",
      "commander/commander_view_model.h",
      "commander/fuzzy_finder.cc",
      "commander/fuzzy_finder.h",
      "commander/simple_command_source.cc",
      "commander/simple_command_source.h",
      "confirm_bubble_model.cc",
      "confirm_bubble_model.h",
      "content_settings/content_setting_bubble_model.cc",
      "content_settings/content_setting_bubble_model.h",
      "content_settings/content_setting_bubble_model_delegate.h",
      "content_settings/content_setting_image_model.cc",
      "content_settings/content_setting_image_model.h",
      "content_settings/content_setting_image_model_states.cc",
      "content_settings/content_setting_image_model_states.h",
      "exclusive_access/exclusive_access_bubble.cc",
      "exclusive_access/exclusive_access_bubble.h",
      "exclusive_access/exclusive_access_bubble_hide_callback.h",
      "exclusive_access/exclusive_access_bubble_type.cc",
      "exclusive_access/exclusive_access_bubble_type.h",
      "exclusive_access/exclusive_access_context.h",
      "exclusive_access/exclusive_access_controller_base.cc",
      "exclusive_access/exclusive_access_controller_base.h",
      "exclusive_access/exclusive_access_manager.cc",
      "exclusive_access/exclusive_access_manager.h",
      "exclusive_access/fullscreen_controller.cc",
      "exclusive_access/fullscreen_controller.h",
      "exclusive_access/fullscreen_observer.h",
      "exclusive_access/fullscreen_within_tab_helper.cc",
      "exclusive_access/fullscreen_within_tab_helper.h",
      "exclusive_access/keyboard_lock_controller.cc",
      "exclusive_access/keyboard_lock_controller.h",
      "exclusive_access/mouse_lock_controller.cc",
      "exclusive_access/mouse_lock_controller.h",
      "find_bar/find_bar_controller.cc",
      "find_bar/find_bar_controller.h",
      "find_bar/find_bar_platform_helper.cc",
      "find_bar/find_bar_platform_helper.h",
      "focus_tab_after_navigation_helper.cc",
      "focus_tab_after_navigation_helper.h",
      "global_error/global_error.cc",
      "global_error/global_error.h",
      "global_error/global_error_bubble_view_base.h",
      "global_error/global_error_observer.h",
      "global_error/global_error_service.cc",
      "global_error/global_error_service.h",
      "global_error/global_error_service_factory.cc",
      "global_error/global_error_service_factory.h",
      "global_media_controls/cast_media_notification_item.cc",
      "global_media_controls/cast_media_notification_item.h",
      "global_media_controls/cast_media_notification_provider.cc",
      "global_media_controls/cast_media_notification_provider.h",
      "global_media_controls/cast_media_session_controller.cc",
      "global_media_controls/cast_media_session_controller.h",
      "global_media_controls/media_dialog_delegate.cc",
      "global_media_controls/media_dialog_delegate.h",
      "global_media_controls/media_notification_container_impl.h",
      "global_media_controls/media_notification_container_observer.h",
      "global_media_controls/media_notification_device_monitor.cc",
      "global_media_controls/media_notification_device_monitor.h",
      "global_media_controls/media_notification_device_provider.h",
      "global_media_controls/media_notification_device_provider_impl.cc",
      "global_media_controls/media_notification_device_provider_impl.h",
      "global_media_controls/media_notification_service.cc",
      "global_media_controls/media_notification_service.h",
      "global_media_controls/media_notification_service_factory.cc",
      "global_media_controls/media_notification_service_factory.h",
      "global_media_controls/media_notification_service_observer.h",
      "global_media_controls/media_toolbar_button_controller.cc",
      "global_media_controls/media_toolbar_button_controller.h",
      "global_media_controls/media_toolbar_button_controller_delegate.cc",
      "global_media_controls/media_toolbar_button_controller_delegate.h",
      "global_media_controls/media_toolbar_button_observer.h",
      "global_media_controls/overlay_media_notification.h",
      "global_media_controls/overlay_media_notifications_manager.h",
      "global_media_controls/overlay_media_notifications_manager_impl.cc",
      "global_media_controls/overlay_media_notifications_manager_impl.h",
      "global_media_controls/presentation_request_notification_item.cc",
      "global_media_controls/presentation_request_notification_item.h",
      "global_media_controls/presentation_request_notification_provider.cc",
      "global_media_controls/presentation_request_notification_provider.h",
      "hats/hats_helper.cc",
      "hats/hats_helper.h",
      "hats/hats_service.cc",
      "hats/hats_service.h",
      "hats/hats_service_factory.cc",
      "hats/hats_service_factory.h",
      "hats/hats_survey_status_checker.cc",
      "hats/hats_survey_status_checker.h",
      "hid/hid_chooser.cc",
      "hid/hid_chooser.h",
      "hid/hid_chooser_controller.cc",
      "hid/hid_chooser_controller.h",
      "hung_renderer/hung_renderer_core.cc",
      "hung_renderer/hung_renderer_core.h",
      "in_product_help/active_tab_tracker.cc",
      "in_product_help/active_tab_tracker.h",
      "in_product_help/feature_promo_controller.cc",
      "in_product_help/feature_promo_controller.h",
      "in_product_help/feature_promo_snooze_service.cc",
      "in_product_help/feature_promo_snooze_service.h",
      "in_product_help/reopen_tab_in_product_help.cc",
      "in_product_help/reopen_tab_in_product_help.h",
      "in_product_help/reopen_tab_in_product_help_factory.cc",
      "in_product_help/reopen_tab_in_product_help_factory.h",
      "in_product_help/reopen_tab_in_product_help_trigger.cc",
      "in_product_help/reopen_tab_in_product_help_trigger.h",
      "intent_picker_tab_helper.cc",
      "intent_picker_tab_helper.h",
      "javascript_dialogs/javascript_tab_modal_dialog_manager_delegate_desktop.cc",
      "javascript_dialogs/javascript_tab_modal_dialog_manager_delegate_desktop.h",
      "layout_constants.cc",
      "layout_constants.h",
      "location_bar/location_bar.h",
      "managed_ui.cc",
      "managed_ui.h",
      "media_router/cast_dialog_controller.h",
      "media_router/cast_dialog_model.cc",
      "media_router/cast_dialog_model.h",
      "media_router/cast_modes_with_media_sources.cc",
      "media_router/cast_modes_with_media_sources.h",
      "media_router/cloud_services_dialog.h",
      "media_router/media_cast_mode.cc",
      "media_router/media_cast_mode.h",
      "media_router/media_router_file_dialog.cc",
      "media_router/media_router_file_dialog.h",
      "media_router/media_router_ui.cc",
      "media_router/media_router_ui.h",
      "media_router/media_router_ui_helper.cc",
      "media_router/media_router_ui_helper.h",
      "media_router/media_router_ui_service.cc",
      "media_router/media_router_ui_service.h",
      "media_router/media_router_ui_service_factory.cc",
      "media_router/media_router_ui_service_factory.h",
      "media_router/media_sink_with_cast_modes.cc",
      "media_router/media_sink_with_cast_modes.h",
      "media_router/presentation_receiver_window.h",
      "media_router/presentation_receiver_window_controller.cc",
      "media_router/presentation_receiver_window_controller.h",
      "media_router/presentation_receiver_window_delegate.h",
      "media_router/query_result_manager.cc",
      "media_router/query_result_manager.h",
      "media_router/ui_media_sink.cc",
      "media_router/ui_media_sink.h",
      "native_window_tracker.h",
      "omnibox/alternate_nav_infobar_delegate.cc",
      "omnibox/alternate_nav_infobar_delegate.h",
      "omnibox/chrome_omnibox_client.cc",
      "omnibox/chrome_omnibox_client.h",
      "omnibox/chrome_omnibox_edit_controller.cc",
      "omnibox/chrome_omnibox_edit_controller.h",
      "omnibox/chrome_omnibox_navigation_observer.cc",
      "omnibox/chrome_omnibox_navigation_observer.h",
      "omnibox/clipboard_utils.cc",
      "omnibox/clipboard_utils.h",
      "omnibox/omnibox_tab_helper.cc",
      "omnibox/omnibox_tab_helper.h",
      "omnibox/omnibox_theme.cc",
      "omnibox/omnibox_theme.h",
      "page_action/page_action_icon_type.h",
      "page_info/page_info_dialog.cc",
      "page_info/page_info_dialog.h",
      "page_info/page_info_infobar_delegate.cc",
      "page_info/page_info_infobar_delegate.h",
      "page_info/permission_menu_model.cc",
      "page_info/permission_menu_model.h",
      "passwords/bubble_controllers/auto_sign_in_bubble_controller.cc",
      "passwords/bubble_controllers/auto_sign_in_bubble_controller.h",
      "passwords/bubble_controllers/generation_confirmation_bubble_controller.cc",
      "passwords/bubble_controllers/generation_confirmation_bubble_controller.h",
      "passwords/bubble_controllers/items_bubble_controller.cc",
      "passwords/bubble_controllers/items_bubble_controller.h",
      "passwords/bubble_controllers/move_to_account_store_bubble_controller.cc",
      "passwords/bubble_controllers/move_to_account_store_bubble_controller.h",
      "passwords/bubble_controllers/password_bubble_controller_base.cc",
      "passwords/bubble_controllers/password_bubble_controller_base.h",
      "passwords/bubble_controllers/post_save_compromised_bubble_controller.cc",
      "passwords/bubble_controllers/post_save_compromised_bubble_controller.h",
      "passwords/bubble_controllers/save_unsynced_credentials_locally_bubble_controller.cc",
      "passwords/bubble_controllers/save_unsynced_credentials_locally_bubble_controller.h",
      "passwords/bubble_controllers/save_update_bubble_controller.cc",
      "passwords/bubble_controllers/save_update_bubble_controller.h",
      "passwords/bubble_controllers/save_update_with_account_store_bubble_controller.cc",
      "passwords/bubble_controllers/save_update_with_account_store_bubble_controller.h",
      "passwords/bubble_controllers/sign_in_promo_bubble_controller.cc",
      "passwords/bubble_controllers/sign_in_promo_bubble_controller.h",
      "passwords/credential_leak_dialog_controller.h",
      "passwords/credential_leak_dialog_controller_impl.cc",
      "passwords/credential_leak_dialog_controller_impl.h",
      "passwords/credential_manager_dialog_controller.h",
      "passwords/credential_manager_dialog_controller_impl.cc",
      "passwords/credential_manager_dialog_controller_impl.h",
      "passwords/manage_passwords_icon_view.h",
      "passwords/manage_passwords_ui_controller.cc",
      "passwords/manage_passwords_ui_controller.h",
      "passwords/password_base_dialog_controller.h",
      "passwords/password_dialog_prompts.h",
      "passwords/passwords_client_ui_delegate.cc",
      "passwords/passwords_client_ui_delegate.h",
      "passwords/passwords_leak_dialog_delegate.h",
      "passwords/passwords_model_delegate.cc",
      "passwords/passwords_model_delegate.h",
      "pdf/chrome_pdf_web_contents_helper_client.cc",
      "pdf/chrome_pdf_web_contents_helper_client.h",
      "permission_bubble/permission_prompt.h",
      "sad_tab.cc",
      "sad_tab.h",
      "sad_tab_helper.cc",
      "sad_tab_helper.h",
      "sad_tab_types.h",
      "scoped_tabbed_browser_displayer.cc",
      "scoped_tabbed_browser_displayer.h",
      "search/instant_controller.cc",
      "search/instant_controller.h",
      "search/new_tab_page_navigation_throttle.cc",
      "search/new_tab_page_navigation_throttle.h",
      "search/ntp_user_data_logger.cc",
      "search/ntp_user_data_logger.h",
      "search/ntp_user_data_types.h",
      "search/omnibox_mojo_utils.cc",
      "search/omnibox_mojo_utils.h",
      "search/omnibox_utils.cc",
      "search/omnibox_utils.h",
      "search/search_ipc_router.cc",
      "search/search_ipc_router.h",
      "search/search_ipc_router_policy_impl.cc",
      "search/search_ipc_router_policy_impl.h",
      "search/search_tab_helper.cc",
      "search/search_tab_helper.h",
      "send_tab_to_self/send_tab_to_self_sub_menu_model.cc",
      "send_tab_to_self/send_tab_to_self_sub_menu_model.h",
      "serial/serial_chooser.cc",
      "serial/serial_chooser.h",
      "serial/serial_chooser_controller.cc",
      "serial/serial_chooser_controller.h",
      "signin/profile_colors_util.cc",
      "signin/profile_colors_util.h",
      "singleton_tabs.cc",
      "singleton_tabs.h",
      "startup/automation_infobar_delegate.cc",
      "startup/automation_infobar_delegate.h",
      "startup/google_api_keys_infobar_delegate.cc",
      "startup/google_api_keys_infobar_delegate.h",
      "startup/launch_mode_recorder.cc",
      "startup/launch_mode_recorder.h",
      "startup/obsolete_system_infobar_delegate.cc",
      "startup/obsolete_system_infobar_delegate.h",
      "startup/startup_browser_creator.cc",
      "startup/startup_browser_creator.h",
      "startup/startup_browser_creator_impl.cc",
      "startup/startup_browser_creator_impl.h",
      "startup/startup_tab.cc",
      "startup/startup_tab.h",
      "startup/startup_tab_provider.cc",
      "startup/startup_tab_provider.h",
      "startup/startup_types.h",
      "sync/browser_synced_tab_delegate.cc",
      "sync/browser_synced_tab_delegate.h",
      "sync/browser_synced_window_delegate.cc",
      "sync/browser_synced_window_delegate.h",
      "sync/browser_synced_window_delegates_getter.cc",
      "sync/browser_synced_window_delegates_getter.h",
      "sync/bubble_sync_promo_delegate.h",
      "sync/profile_signin_confirmation_helper.cc",
      "sync/profile_signin_confirmation_helper.h",
      "sync/sync_promo_ui.cc",
      "sync/sync_promo_ui.h",
      "tab_contents/tab_contents_iterator.cc",
      "tab_contents/tab_contents_iterator.h",
      "tab_modal_confirm_dialog_delegate.cc",
      "tab_modal_confirm_dialog_delegate.h",
      "tab_sharing/tab_sharing_infobar_delegate.cc",
      "tab_sharing/tab_sharing_infobar_delegate.h",
      "tab_sharing/tab_sharing_ui.h",
      "tabs/existing_base_sub_menu_model.cc",
      "tabs/existing_base_sub_menu_model.h",
      "tabs/existing_tab_group_sub_menu_model.cc",
      "tabs/existing_tab_group_sub_menu_model.h",
      "tabs/existing_window_sub_menu_model.cc",
      "tabs/existing_window_sub_menu_model.h",
      "tabs/hover_tab_selector.cc",
      "tabs/hover_tab_selector.h",
      "tabs/pinned_tab_codec.cc",
      "tabs/pinned_tab_codec.h",
      "tabs/pinned_tab_service.cc",
      "tabs/pinned_tab_service.h",
      "tabs/pinned_tab_service_factory.cc",
      "tabs/pinned_tab_service_factory.h",
      "tabs/tab_change_type.h",
      "tabs/tab_group.cc",
      "tabs/tab_group.h",
      "tabs/tab_group_controller.h",
      "tabs/tab_group_model.cc",
      "tabs/tab_group_model.h",
      "tabs/tab_group_theme.cc",
      "tabs/tab_group_theme.h",
      "tabs/tab_menu_model.cc",
      "tabs/tab_menu_model.h",
      "tabs/tab_menu_model_factory.cc",
      "tabs/tab_menu_model_factory.h",
      "tabs/tab_network_state.cc",
      "tabs/tab_network_state.h",
      "tabs/tab_renderer_data.cc",
      "tabs/tab_renderer_data.h",
      "tabs/tab_strip_model.cc",
      "tabs/tab_strip_model.h",
      "tabs/tab_strip_model_delegate.cc",
      "tabs/tab_strip_model_delegate.h",
      "tabs/tab_strip_model_observer.cc",
      "tabs/tab_strip_model_observer.h",
      "tabs/tab_strip_model_order_controller.cc",
      "tabs/tab_strip_model_order_controller.h",
      "tabs/tab_strip_model_stats_recorder.cc",
      "tabs/tab_strip_model_stats_recorder.h",
      "tabs/tab_style.cc",
      "tabs/tab_style.h",
      "tabs/tab_switch_event_latency_recorder.cc",
      "tabs/tab_switch_event_latency_recorder.h",
      "tabs/tab_types.h",
      "tabs/tab_utils.cc",
      "tabs/tab_utils.h",
      "task_manager/task_manager_columns.cc",
      "task_manager/task_manager_columns.h",
      "task_manager/task_manager_table_model.cc",
      "task_manager/task_manager_table_model.h",
      "thumbnails/thumbnail_capture_driver.cc",
      "thumbnails/thumbnail_capture_driver.h",
      "thumbnails/thumbnail_image.cc",
      "thumbnails/thumbnail_image.h",
      "thumbnails/thumbnail_readiness_tracker.cc",
      "thumbnails/thumbnail_readiness_tracker.h",
      "thumbnails/thumbnail_scheduler.h",
      "thumbnails/thumbnail_scheduler_impl.cc",
      "thumbnails/thumbnail_scheduler_impl.h",
      "thumbnails/thumbnail_stats_tracker.cc",
      "thumbnails/thumbnail_stats_tracker.h",
      "thumbnails/thumbnail_tab_helper.cc",
      "thumbnails/thumbnail_tab_helper.h",
      "toolbar/app_menu_icon_controller.cc",
      "toolbar/app_menu_icon_controller.h",
      "toolbar/app_menu_model.cc",
      "toolbar/app_menu_model.h",
      "toolbar/back_forward_menu_model.cc",
      "toolbar/back_forward_menu_model.h",
      "toolbar/bookmark_sub_menu_model.cc",
      "toolbar/bookmark_sub_menu_model.h",
      "toolbar/media_router_action_controller.cc",
      "toolbar/media_router_action_controller.h",
      "toolbar/media_router_contextual_menu.cc",
      "toolbar/media_router_contextual_menu.h",
      "toolbar/recent_tabs_sub_menu_model.cc",
      "toolbar/recent_tabs_sub_menu_model.h",
      "toolbar/toolbar_action_view_controller.h",
      "toolbar/toolbar_action_view_delegate.cc",
      "toolbar/toolbar_action_view_delegate.h",
      "toolbar/toolbar_actions_bar.cc",
      "toolbar/toolbar_actions_bar.h",
      "toolbar/toolbar_actions_bar_bubble_delegate.h",
      "toolbar/toolbar_actions_bar_delegate.h",
      "toolbar/toolbar_actions_bar_observer.h",
      "toolbar/toolbar_actions_model.cc",
      "toolbar/toolbar_actions_model.h",
      "toolbar/toolbar_actions_model_factory.cc",
      "toolbar/toolbar_actions_model_factory.h",
      "translate/translate_bubble_factory.cc",
      "translate/translate_bubble_factory.h",
      "uma_browsing_activity_observer.cc",
      "uma_browsing_activity_observer.h",
      "unload_controller.cc",
      "unload_controller.h",
      "views/eye_dropper/eye_dropper.cc",
      "views/eye_dropper/eye_dropper.h",
      "views/eye_dropper/eye_dropper_view.cc",
      "views/eye_dropper/eye_dropper_view.h",
      "views/eye_dropper/eye_dropper_view_mac.h",
      "views/eye_dropper/eye_dropper_view_mac.mm",
      "webui/app_launcher_login_handler.cc",
      "webui/app_launcher_login_handler.h",
      "webui/app_management/app_management_page_handler.cc",
      "webui/app_management/app_management_page_handler.h",
      "webui/bookmarks/bookmarks_message_handler.cc",
      "webui/bookmarks/bookmarks_message_handler.h",
      "webui/bookmarks/bookmarks_ui.cc",
      "webui/bookmarks/bookmarks_ui.h",
      "webui/chrome_web_contents_handler.cc",
      "webui/chrome_web_contents_handler.h",
      "webui/commander/commander_handler.cc",
      "webui/commander/commander_handler.h",
      "webui/commander/commander_ui.cc",
      "webui/commander/commander_ui.h",
      "webui/customize_themes/chrome_customize_themes_handler.cc",
      "webui/customize_themes/chrome_customize_themes_handler.h",
      "webui/devtools_ui.cc",
      "webui/devtools_ui.h",
      "webui/devtools_ui_data_source.cc",
      "webui/devtools_ui_data_source.h",
      "webui/downloads/downloads_dom_handler.cc",
      "webui/downloads/downloads_dom_handler.h",
      "webui/downloads/downloads_list_tracker.cc",
      "webui/downloads/downloads_list_tracker.h",
      "webui/downloads/downloads_ui.cc",
      "webui/downloads/downloads_ui.h",
      "webui/extensions/extensions_internals_source.cc",
      "webui/extensions/extensions_internals_source.h",
      "webui/extensions/extensions_ui.cc",
      "webui/extensions/extensions_ui.h",
      "webui/favicon_source.cc",
      "webui/favicon_source.h",
      "webui/help/version_updater.h",
      "webui/history/browsing_history_handler.cc",
      "webui/history/browsing_history_handler.h",
      "webui/history/foreign_session_handler.cc",
      "webui/history/foreign_session_handler.h",
      "webui/history/history_login_handler.cc",
      "webui/history/history_login_handler.h",
      "webui/history/history_ui.cc",
      "webui/history/history_ui.h",
      "webui/history/navigation_handler.cc",
      "webui/history/navigation_handler.h",
      "webui/identity_internals_ui.cc",
      "webui/identity_internals_ui.h",
      "webui/inspect_ui.cc",
      "webui/inspect_ui.h",
      "webui/internals/web_app/web_app_internals_page_handler_impl.cc",
      "webui/internals/web_app/web_app_internals_page_handler_impl.h",
      "webui/managed_ui_handler.cc",
      "webui/managed_ui_handler.h",
      "webui/management_ui.cc",
      "webui/management_ui.h",
      "webui/management_ui_handler.cc",
      "webui/management_ui_handler.h",
      "webui/media/media_feeds_ui.cc",
      "webui/media/media_feeds_ui.h",
      "webui/media_router/media_router_internals_ui.cc",
      "webui/media_router/media_router_internals_ui.h",
      "webui/media_router/media_router_internals_webui_message_handler.cc",
      "webui/media_router/media_router_internals_webui_message_handler.h",
      "webui/media_router/web_contents_display_observer.h",
      "webui/new_tab_page/new_tab_page_handler.cc",
      "webui/new_tab_page/new_tab_page_handler.h",
      "webui/new_tab_page/new_tab_page_ui.cc",
      "webui/new_tab_page/new_tab_page_ui.h",
      "webui/new_tab_page/promo_browser_command/promo_browser_command_handler.cc",
      "webui/new_tab_page/promo_browser_command/promo_browser_command_handler.h",
      "webui/new_tab_page/untrusted_source.cc",
      "webui/new_tab_page/untrusted_source.h",
      "webui/ntp/app_icon_webui_handler.cc",
      "webui/ntp/app_icon_webui_handler.h",
      "webui/ntp/app_launcher_handler.cc",
      "webui/ntp/app_launcher_handler.h",
      "webui/ntp/app_resource_cache_factory.cc",
      "webui/ntp/app_resource_cache_factory.h",
      "webui/ntp/cookie_controls_handler.cc",
      "webui/ntp/cookie_controls_handler.h",
      "webui/ntp/core_app_launcher_handler.cc",
      "webui/ntp/core_app_launcher_handler.h",
      "webui/ntp/new_tab_ui.cc",
      "webui/ntp/new_tab_ui.h",
      "webui/ntp/ntp_resource_cache.cc",
      "webui/ntp/ntp_resource_cache.h",
      "webui/ntp/ntp_resource_cache_factory.cc",
      "webui/ntp/ntp_resource_cache_factory.h",
      "webui/omnibox/omnibox_popup_handler.cc",
      "webui/omnibox/omnibox_popup_handler.h",
      "webui/page_not_available_for_guest/page_not_available_for_guest_ui.cc",
      "webui/page_not_available_for_guest/page_not_available_for_guest_ui.h",
      "webui/plural_string_handler.cc",
      "webui/plural_string_handler.h",
      "webui/policy_indicator_localized_strings_provider.cc",
      "webui/policy_indicator_localized_strings_provider.h",
      "webui/profile_info_watcher.cc",
      "webui/profile_info_watcher.h",
      "webui/read_later/read_later_page_handler.cc",
      "webui/read_later/read_later_page_handler.h",
      "webui/read_later/read_later_ui.cc",
      "webui/read_later/read_later_ui.h",
      "webui/sanitized_image_source.cc",
      "webui/sanitized_image_source.h",
      "webui/settings/about_handler.cc",
      "webui/settings/about_handler.h",
      "webui/settings/accessibility_main_handler.cc",
      "webui/settings/accessibility_main_handler.h",
      "webui/settings/appearance_handler.cc",
      "webui/settings/appearance_handler.h",
      "webui/settings/browser_lifetime_handler.cc",
      "webui/settings/browser_lifetime_handler.h",
      "webui/settings/custom_home_pages_table_model.cc",
      "webui/settings/custom_home_pages_table_model.h",
      "webui/settings/downloads_handler.cc",
      "webui/settings/downloads_handler.h",
      "webui/settings/extension_control_handler.cc",
      "webui/settings/extension_control_handler.h",
      "webui/settings/font_handler.cc",
      "webui/settings/font_handler.h",
      "webui/settings/hats_handler.cc",
      "webui/settings/hats_handler.h",
      "webui/settings/import_data_handler.cc",
      "webui/settings/import_data_handler.h",
      "webui/settings/languages_handler.cc",
      "webui/settings/languages_handler.h",
      "webui/settings/metrics_reporting_handler.cc",
      "webui/settings/metrics_reporting_handler.h",
      "webui/settings/on_startup_handler.cc",
      "webui/settings/on_startup_handler.h",
      "webui/settings/people_handler.cc",
      "webui/settings/people_handler.h",
      "webui/settings/profile_info_handler.cc",
      "webui/settings/profile_info_handler.h",
      "webui/settings/protocol_handlers_handler.cc",
      "webui/settings/protocol_handlers_handler.h",
      "webui/settings/recent_site_settings_helper.cc",
      "webui/settings/recent_site_settings_helper.h",
      "webui/settings/reset_settings_handler.cc",
      "webui/settings/reset_settings_handler.h",
      "webui/settings/safety_check_handler.cc",
      "webui/settings/safety_check_handler.h",
      "webui/settings/search_engines_handler.cc",
      "webui/settings/search_engines_handler.h",
      "webui/settings/settings_clear_browsing_data_handler.cc",
      "webui/settings/settings_clear_browsing_data_handler.h",
      "webui/settings/settings_cookies_view_handler.cc",
      "webui/settings/settings_cookies_view_handler.h",
      "webui/settings/settings_localized_strings_provider.cc",
      "webui/settings/settings_localized_strings_provider.h",
      "webui/settings/settings_media_devices_selection_handler.cc",
      "webui/settings/settings_media_devices_selection_handler.h",
      "webui/settings/settings_page_ui_handler.cc",
      "webui/settings/settings_page_ui_handler.h",
      "webui/settings/settings_secure_dns_handler.cc",
      "webui/settings/settings_secure_dns_handler.h",
      "webui/settings/settings_security_key_handler.cc",
      "webui/settings/settings_security_key_handler.h",
      "webui/settings/settings_startup_pages_handler.cc",
      "webui/settings/settings_startup_pages_handler.h",
      "webui/settings/settings_ui.cc",
      "webui/settings/settings_ui.h",
      "webui/settings/shared_settings_localized_strings_provider.cc",
      "webui/settings/shared_settings_localized_strings_provider.h",
      "webui/settings/site_settings_handler.cc",
      "webui/settings/site_settings_handler.h",
      "webui/settings/site_settings_helper.cc",
      "webui/settings/site_settings_helper.h",
      "webui/settings_utils.cc",
      "webui/settings_utils.h",
      "webui/signin/login_ui_service.cc",
      "webui/signin/login_ui_service.h",
      "webui/signin/login_ui_service_factory.cc",
      "webui/signin/login_ui_service_factory.h",
      "webui/signin/signin_utils.cc",
      "webui/signin/signin_utils.h",
      "webui/sync_file_system_internals/dump_database_handler.cc",
      "webui/sync_file_system_internals/dump_database_handler.h",
      "webui/sync_file_system_internals/extension_statuses_handler.cc",
      "webui/sync_file_system_internals/extension_statuses_handler.h",
      "webui/sync_file_system_internals/file_metadata_handler.cc",
      "webui/sync_file_system_internals/file_metadata_handler.h",
      "webui/sync_file_system_internals/sync_file_system_internals_handler.cc",
      "webui/sync_file_system_internals/sync_file_system_internals_handler.h",
      "webui/sync_file_system_internals/sync_file_system_internals_ui.cc",
      "webui/sync_file_system_internals/sync_file_system_internals_ui.h",
      "webui/system_info_ui.cc",
      "webui/system_info_ui.h",
      "webui/tab_search/tab_search_page_handler.cc",
      "webui/tab_search/tab_search_page_handler.h",
      "webui/tab_search/tab_search_ui.cc",
      "webui/tab_search/tab_search_ui.h",
      "webui/tab_search/tab_search_ui_embedder.h",
      "webui/theme_handler.cc",
      "webui/theme_handler.h",
      "webui/theme_source.cc",
      "webui/theme_source.h",
      "webui/util/image_util.cc",
      "webui/util/image_util.h",
      "webui/web_footer_experiment_ui.cc",
      "webui/web_footer_experiment_ui.h",
      "window_sizer/window_sizer.cc",
      "window_sizer/window_sizer.h",
      "zoom/chrome_zoom_level_otr_delegate.cc",
      "zoom/chrome_zoom_level_otr_delegate.h",
      "zoom/chrome_zoom_level_prefs.cc",
      "zoom/chrome_zoom_level_prefs.h",
    ]
    deps += [
      "//base/util/values:values_util",
      "//build:chromeos_buildflags",
      "//chrome/app/vector_icons",
      "//chrome/browser:theme_properties",
      "//chrome/browser/media/kaleidoscope/mojom",
      "//chrome/browser/media/router",
      "//chrome/browser/profile_resetter:profile_reset_report_proto",
      "//chrome/browser/promo_browser_command:mojo_bindings",
      "//chrome/browser/resource_coordinator:tab_metrics_event_proto",
      "//chrome/browser/resource_coordinator/tab_ranker",
      "//chrome/browser/safe_browsing:advanced_protection",
      "//chrome/browser/search/shopping_tasks:mojo_bindings",
      "//chrome/browser/ui/color:color_headers",
      "//chrome/browser/ui/color:mixers",
      "//chrome/browser/ui/webui/app_management:mojo_bindings",
      "//chrome/browser/ui/webui/internals/web_app:mojo_bindings",
      "//chrome/common:buildflags",
      "//chrome/common/search:generate_chrome_colors_info",
      "//chrome/common/search:mojo_bindings",
      "//chrome/common/themes:autogenerated_theme_util",
      "//components/feedback/proto",
      "//components/keep_alive_registry",
      "//components/media_router/common/mojom:media_router",
      "//components/network_session_configurator/common",
      "//components/page_load_metrics/browser",
      "//components/performance_manager:site_data_proto",
      "//components/printing/browser",
      "//components/profile_metrics",
      "//components/safe_browsing/core/common:safe_browsing_policy_handler",
      "//components/safety_check",
      "//components/search_provider_logos",
      "//components/services/app_service/public/cpp:app_update",
      "//components/services/app_service/public/mojom",
      "//components/ui_metrics",
      "//components/url_formatter",
      "//components/vector_icons",
      "//components/web_modal",
      "//components/zoom",
      "//device/bluetooth",
      "//device/bluetooth/strings:strings_grit",
      "//device/fido",
      "//ppapi/c",
      "//services/device/public/mojom",
      "//services/metrics/public/cpp:metrics_cpp",
      "//services/preferences/public/mojom:mojom",
      "//third_party/blink/public/common:headers",
      "//third_party/libaddressinput",
      "//third_party/libaddressinput:strings",
      "//ui/events",
    ]
    public_deps += [ "//ui/base/dragdrop/mojom:mojom_headers" ]

    if (use_ozone && !is_chromeos) {
      deps += [
        "//ui/base:features",
        "//ui/ozone",
      ]
    }

    if (is_linux && !is_chromeos) {
      deps += [ "//ui/base/ime/linux" ]
    }

    if (!toolkit_views) {
      sources += [ "media_router/cloud_services_dialog.cc" ]
    }

    if (enable_extensions) {
      deps += [
        "//chrome/browser/web_applications",

        # TODO(loyso): Erase these. crbug.com/877898.
        "//chrome/browser/web_applications:common",
        "//chrome/browser/web_applications:web_applications_on_extensions",
        "//chrome/browser/web_applications/components",
        "//chrome/browser/web_applications/extensions",
        "//google_apis/drive",
      ]
    }
  }

  if (enable_paint_preview) {
    deps += [ "//components/paint_preview/browser" ]
  }

  if (enable_supervised_users) {
    sources += [
      "webui/supervised_user_internals_message_handler.cc",
      "webui/supervised_user_internals_message_handler.h",
      "webui/supervised_user_internals_ui.cc",
      "webui/supervised_user_internals_ui.h",
    ]
    deps += [ "//chrome/browser/supervised_user/supervised_user_error_page" ]
  }

  if (is_chromeos) {
    assert(enable_extensions)
    assert(enable_supervised_users)
    assert(toolkit_views)
    sources += [
      "app_icon_loader_delegate.h",
      "app_list/app_context_menu.cc",
      "app_list/app_context_menu.h",
      "app_list/app_context_menu_delegate.h",
      "app_list/app_list_client_impl.cc",
      "app_list/app_list_client_impl.h",
      "app_list/app_list_controller_delegate.cc",
      "app_list/app_list_controller_delegate.h",
      "app_list/app_list_model_builder.cc",
      "app_list/app_list_model_builder.h",
      "app_list/app_list_model_updater.cc",
      "app_list/app_list_model_updater.h",
      "app_list/app_list_model_updater_observer.h",
      "app_list/app_list_notifier_impl.cc",
      "app_list/app_list_notifier_impl.h",
      "app_list/app_list_syncable_service.cc",
      "app_list/app_list_syncable_service.h",
      "app_list/app_list_syncable_service_factory.cc",
      "app_list/app_list_syncable_service_factory.h",
      "app_list/app_service/app_service_app_icon_loader.cc",
      "app_list/app_service/app_service_app_icon_loader.h",
      "app_list/app_service/app_service_app_item.cc",
      "app_list/app_service/app_service_app_item.h",
      "app_list/app_service/app_service_app_model_builder.cc",
      "app_list/app_service/app_service_app_model_builder.h",
      "app_list/app_service/app_service_context_menu.cc",
      "app_list/app_service/app_service_context_menu.h",
      "app_list/app_sync_ui_state.cc",
      "app_list/app_sync_ui_state.h",
      "app_list/app_sync_ui_state_factory.cc",
      "app_list/app_sync_ui_state_factory.h",
      "app_list/app_sync_ui_state_observer.h",
      "app_list/app_sync_ui_state_watcher.cc",
      "app_list/app_sync_ui_state_watcher.h",
      "app_list/arc/arc_app_dialog.h",
      "app_list/arc/arc_app_icon.cc",
      "app_list/arc/arc_app_icon.h",
      "app_list/arc/arc_app_icon_descriptor.cc",
      "app_list/arc/arc_app_icon_descriptor.h",
      "app_list/arc/arc_app_icon_factory.cc",
      "app_list/arc/arc_app_icon_factory.h",
      "app_list/arc/arc_app_launcher.cc",
      "app_list/arc/arc_app_launcher.h",
      "app_list/arc/arc_app_list_prefs.cc",
      "app_list/arc/arc_app_list_prefs.h",
      "app_list/arc/arc_app_list_prefs_factory.cc",
      "app_list/arc/arc_app_list_prefs_factory.h",
      "app_list/arc/arc_app_scoped_pref_update.cc",
      "app_list/arc/arc_app_scoped_pref_update.h",
      "app_list/arc/arc_app_utils.cc",
      "app_list/arc/arc_app_utils.h",
      "app_list/arc/arc_data_removal_dialog.h",
      "app_list/arc/arc_default_app_list.cc",
      "app_list/arc/arc_default_app_list.h",
      "app_list/arc/arc_fast_app_reinstall_starter.cc",
      "app_list/arc/arc_fast_app_reinstall_starter.h",
      "app_list/arc/arc_package_sync_model_type_controller.cc",
      "app_list/arc/arc_package_sync_model_type_controller.h",
      "app_list/arc/arc_package_syncable_service.cc",
      "app_list/arc/arc_package_syncable_service.h",
      "app_list/arc/arc_package_syncable_service_factory.cc",
      "app_list/arc/arc_package_syncable_service_factory.h",
      "app_list/arc/arc_pai_starter.cc",
      "app_list/arc/arc_pai_starter.h",
      "app_list/arc/arc_playstore_app_context_menu.cc",
      "app_list/arc/arc_playstore_app_context_menu.h",
      "app_list/arc/arc_usb_host_permission_manager.cc",
      "app_list/arc/arc_usb_host_permission_manager.h",
      "app_list/arc/arc_usb_host_permission_manager_factory.cc",
      "app_list/arc/arc_usb_host_permission_manager_factory.h",
      "app_list/arc/arc_vpn_provider_manager.cc",
      "app_list/arc/arc_vpn_provider_manager.h",
      "app_list/arc/arc_vpn_provider_manager_factory.cc",
      "app_list/arc/arc_vpn_provider_manager_factory.h",
      "app_list/chrome_app_list_item.cc",
      "app_list/chrome_app_list_item.h",
      "app_list/chrome_app_list_model_updater.cc",
      "app_list/chrome_app_list_model_updater.h",
      "app_list/extension_app_utils.cc",
      "app_list/extension_app_utils.h",
      "app_list/icon_standardizer.cc",
      "app_list/icon_standardizer.h",
      "app_list/internal_app/internal_app_metadata.cc",
      "app_list/internal_app/internal_app_metadata.h",
      "app_list/md_icon_normalizer.cc",
      "app_list/md_icon_normalizer.h",
      "app_list/page_break_app_item.cc",
      "app_list/page_break_app_item.h",
      "app_list/page_break_constants.cc",
      "app_list/page_break_constants.h",
      "app_list/search/answer_card/answer_card_result.cc",
      "app_list/search/answer_card/answer_card_result.h",
      "app_list/search/answer_card/answer_card_search_provider.cc",
      "app_list/search/answer_card/answer_card_search_provider.h",
      "app_list/search/app_result.cc",
      "app_list/search/app_result.h",
      "app_list/search/app_search_provider.cc",
      "app_list/search/app_search_provider.h",
      "app_list/search/app_service_app_result.cc",
      "app_list/search/app_service_app_result.h",
      "app_list/search/arc/arc_app_data_search_provider.cc",
      "app_list/search/arc/arc_app_data_search_provider.h",
      "app_list/search/arc/arc_app_data_search_result.cc",
      "app_list/search/arc/arc_app_data_search_result.h",
      "app_list/search/arc/arc_app_reinstall_app_result.cc",
      "app_list/search/arc/arc_app_reinstall_app_result.h",
      "app_list/search/arc/arc_app_reinstall_search_provider.cc",
      "app_list/search/arc/arc_app_reinstall_search_provider.h",
      "app_list/search/arc/arc_app_shortcut_search_result.cc",
      "app_list/search/arc/arc_app_shortcut_search_result.h",
      "app_list/search/arc/arc_app_shortcuts_search_provider.cc",
      "app_list/search/arc/arc_app_shortcuts_search_provider.h",
      "app_list/search/arc/arc_playstore_search_provider.cc",
      "app_list/search/arc/arc_playstore_search_provider.h",
      "app_list/search/arc/arc_playstore_search_result.cc",
      "app_list/search/arc/arc_playstore_search_result.h",
      "app_list/search/assistant_search_provider.cc",
      "app_list/search/assistant_search_provider.h",
      "app_list/search/assistant_text_search_provider.cc",
      "app_list/search/assistant_text_search_provider.h",
      "app_list/search/chrome_search_result.cc",
      "app_list/search/chrome_search_result.h",
      "app_list/search/common/url_icon_source.cc",
      "app_list/search/common/url_icon_source.h",
      "app_list/search/cros_action_history/cros_action_recorder.cc",
      "app_list/search/cros_action_history/cros_action_recorder.h",
      "app_list/search/cros_action_history/cros_action_recorder_tab_tracker.cc",
      "app_list/search/cros_action_history/cros_action_recorder_tab_tracker.h",
      "app_list/search/drive_quick_access_chip_result.cc",
      "app_list/search/drive_quick_access_chip_result.h",
      "app_list/search/drive_quick_access_provider.cc",
      "app_list/search/drive_quick_access_provider.h",
      "app_list/search/drive_quick_access_result.cc",
      "app_list/search/drive_quick_access_result.h",
      "app_list/search/file_chip_result.cc",
      "app_list/search/file_chip_result.h",
      "app_list/search/files/drive_zero_state_provider.cc",
      "app_list/search/files/drive_zero_state_provider.h",
      "app_list/search/files/file_result.cc",
      "app_list/search/files/file_result.h",
      "app_list/search/files/item_suggest_cache.cc",
      "app_list/search/files/item_suggest_cache.h",
      "app_list/search/launcher_search/launcher_search_icon_image_loader.cc",
      "app_list/search/launcher_search/launcher_search_icon_image_loader.h",
      "app_list/search/launcher_search/launcher_search_icon_image_loader_impl.cc",
      "app_list/search/launcher_search/launcher_search_icon_image_loader_impl.h",
      "app_list/search/launcher_search/launcher_search_provider.cc",
      "app_list/search/launcher_search/launcher_search_provider.h",
      "app_list/search/launcher_search/launcher_search_result.cc",
      "app_list/search/launcher_search/launcher_search_result.h",
      "app_list/search/mixer.cc",
      "app_list/search/mixer.h",
      "app_list/search/omnibox_provider.cc",
      "app_list/search/omnibox_provider.h",
      "app_list/search/omnibox_result.cc",
      "app_list/search/omnibox_result.h",
      "app_list/search/os_settings_provider.cc",
      "app_list/search/os_settings_provider.h",
      "app_list/search/search_controller.cc",
      "app_list/search/search_controller.h",
      "app_list/search/search_controller_factory.cc",
      "app_list/search/search_controller_factory.h",
      "app_list/search/search_metrics_observer.cc",
      "app_list/search/search_metrics_observer.h",
      "app_list/search/search_provider.cc",
      "app_list/search/search_provider.h",
      "app_list/search/search_result_ranker/app_launch_data.cc",
      "app_list/search/search_result_ranker/app_launch_data.h",
      "app_list/search/search_result_ranker/app_launch_event_logger.cc",
      "app_list/search/search_result_ranker/app_launch_event_logger.h",
      "app_list/search/search_result_ranker/app_launch_event_logger_helper.cc",
      "app_list/search/search_result_ranker/app_launch_event_logger_helper.h",
      "app_list/search/search_result_ranker/app_launch_predictor.cc",
      "app_list/search/search_result_ranker/app_launch_predictor.h",
      "app_list/search/search_result_ranker/app_list_launch_metrics_provider.cc",
      "app_list/search/search_result_ranker/app_list_launch_metrics_provider.h",
      "app_list/search/search_result_ranker/app_list_launch_recorder.cc",
      "app_list/search/search_result_ranker/app_list_launch_recorder.h",
      "app_list/search/search_result_ranker/app_list_launch_recorder_util.cc",
      "app_list/search/search_result_ranker/app_list_launch_recorder_util.h",
      "app_list/search/search_result_ranker/app_search_result_ranker.cc",
      "app_list/search/search_result_ranker/app_search_result_ranker.h",
      "app_list/search/search_result_ranker/chip_ranker.cc",
      "app_list/search/search_result_ranker/chip_ranker.h",
      "app_list/search/search_result_ranker/frecency_store.cc",
      "app_list/search/search_result_ranker/frecency_store.h",
      "app_list/search/search_result_ranker/histogram_util.cc",
      "app_list/search/search_result_ranker/histogram_util.h",
      "app_list/search/search_result_ranker/ml_app_rank_provider.cc",
      "app_list/search/search_result_ranker/ml_app_rank_provider.h",
      "app_list/search/search_result_ranker/ranking_item_util.cc",
      "app_list/search/search_result_ranker/ranking_item_util.h",
      "app_list/search/search_result_ranker/recurrence_predictor.cc",
      "app_list/search/search_result_ranker/recurrence_predictor.h",
      "app_list/search/search_result_ranker/recurrence_ranker.cc",
      "app_list/search/search_result_ranker/recurrence_ranker.h",
      "app_list/search/search_result_ranker/recurrence_ranker_util.cc",
      "app_list/search/search_result_ranker/recurrence_ranker_util.h",
      "app_list/search/search_result_ranker/search_ranking_event_logger.cc",
      "app_list/search/search_result_ranker/search_ranking_event_logger.h",
      "app_list/search/search_result_ranker/search_result_ranker.cc",
      "app_list/search/search_result_ranker/search_result_ranker.h",
      "app_list/search/settings_shortcut/settings_shortcut_metadata.cc",
      "app_list/search/settings_shortcut/settings_shortcut_metadata.h",
      "app_list/search/settings_shortcut/settings_shortcut_provider.cc",
      "app_list/search/settings_shortcut/settings_shortcut_provider.h",
      "app_list/search/settings_shortcut/settings_shortcut_result.cc",
      "app_list/search/settings_shortcut/settings_shortcut_result.h",
      "app_list/search/zero_state_file_provider.cc",
      "app_list/search/zero_state_file_provider.h",
      "app_list/search/zero_state_file_result.cc",
      "app_list/search/zero_state_file_result.h",
      "ash/accessibility/accessibility_controller_client.cc",
      "ash/accessibility/accessibility_controller_client.h",
      "ash/ambient/ambient_client_impl.cc",
      "ash/ambient/ambient_client_impl.h",
      "ash/arc_chrome_actions_client.cc",
      "ash/arc_chrome_actions_client.h",
      "ash/arc_custom_tab_modal_dialog_host.cc",
      "ash/arc_custom_tab_modal_dialog_host.h",
      "ash/ash_shell_init.cc",
      "ash/ash_shell_init.h",
      "ash/ash_util.cc",
      "ash/ash_util.h",
      "ash/assistant/assistant_client_impl.cc",
      "ash/assistant/assistant_client_impl.h",
      "ash/assistant/assistant_context_util.cc",
      "ash/assistant/assistant_context_util.h",
      "ash/assistant/assistant_setup.cc",
      "ash/assistant/assistant_setup.h",
      "ash/assistant/assistant_state_client.cc",
      "ash/assistant/assistant_state_client.h",
      "ash/assistant/assistant_web_view_factory_impl.cc",
      "ash/assistant/assistant_web_view_factory_impl.h",
      "ash/assistant/assistant_web_view_impl.cc",
      "ash/assistant/assistant_web_view_impl.h",
      "ash/assistant/conversation_starters_client_impl.cc",
      "ash/assistant/conversation_starters_client_impl.h",
      "ash/assistant/conversation_starters_parser.cc",
      "ash/assistant/conversation_starters_parser.h",
      "ash/assistant/device_actions.cc",
      "ash/assistant/device_actions.h",
      "ash/assistant/device_actions_delegate.h",
      "ash/assistant/device_actions_delegate_impl.cc",
      "ash/assistant/device_actions_delegate_impl.h",
      "ash/assistant/search_and_assistant_enabled_checker.cc",
      "ash/assistant/search_and_assistant_enabled_checker.h",
      "ash/back_gesture_contextual_nudge_delegate.cc",
      "ash/back_gesture_contextual_nudge_delegate.h",
      "ash/cast_config_controller_media_router.cc",
      "ash/cast_config_controller_media_router.h",
      "ash/chrome_accessibility_delegate.cc",
      "ash/chrome_accessibility_delegate.h",
      "ash/chrome_browser_main_extra_parts_ash.cc",
      "ash/chrome_browser_main_extra_parts_ash.h",
      "ash/chrome_capture_mode_delegate.cc",
      "ash/chrome_capture_mode_delegate.h",
      "ash/chrome_launcher_prefs.cc",
      "ash/chrome_launcher_prefs.h",
      "ash/chrome_new_window_client.cc",
      "ash/chrome_new_window_client.h",
      "ash/chrome_screenshot_grabber.cc",
      "ash/chrome_screenshot_grabber.h",
      "ash/chrome_screenshot_grabber_test_observer.h",
      "ash/chrome_shell_delegate.cc",
      "ash/chrome_shell_delegate.h",
      "ash/clipboard_image_model_factory_impl.cc",
      "ash/clipboard_image_model_factory_impl.h",
      "ash/clipboard_image_model_request.cc",
      "ash/clipboard_image_model_request.h",
      "ash/clipboard_util.cc",
      "ash/clipboard_util.h",
      "ash/holding_space/holding_space_client_impl.cc",
      "ash/holding_space/holding_space_client_impl.h",
      "ash/holding_space/holding_space_downloads_delegate.cc",
      "ash/holding_space/holding_space_downloads_delegate.h",
      "ash/holding_space/holding_space_file_system_delegate.cc",
      "ash/holding_space/holding_space_file_system_delegate.h",
      "ash/holding_space/holding_space_keyed_service.cc",
      "ash/holding_space/holding_space_keyed_service.h",
      "ash/holding_space/holding_space_keyed_service_delegate.cc",
      "ash/holding_space/holding_space_keyed_service_delegate.h",
      "ash/holding_space/holding_space_keyed_service_factory.cc",
      "ash/holding_space/holding_space_keyed_service_factory.h",
      "ash/holding_space/holding_space_persistence_delegate.cc",
      "ash/holding_space/holding_space_persistence_delegate.h",
      "ash/holding_space/holding_space_thumbnail_loader.cc",
      "ash/holding_space/holding_space_thumbnail_loader.h",
      "ash/holding_space/holding_space_util.cc",
      "ash/holding_space/holding_space_util.h",
      "ash/image_downloader_impl.cc",
      "ash/image_downloader_impl.h",
      "ash/ime_controller_client.cc",
      "ash/ime_controller_client.h",
      "ash/in_session_auth_dialog_client.cc",
      "ash/in_session_auth_dialog_client.h",
      "ash/keyboard/chrome_keyboard_bounds_observer.cc",
      "ash/keyboard/chrome_keyboard_bounds_observer.h",
      "ash/keyboard/chrome_keyboard_controller_client.cc",
      "ash/keyboard/chrome_keyboard_controller_client.h",
      "ash/keyboard/chrome_keyboard_ui.cc",
      "ash/keyboard/chrome_keyboard_ui.h",
      "ash/keyboard/chrome_keyboard_ui_factory.cc",
      "ash/keyboard/chrome_keyboard_ui_factory.h",
      "ash/keyboard/chrome_keyboard_web_contents.cc",
      "ash/keyboard/chrome_keyboard_web_contents.h",
      "ash/launcher/app_service/app_service_app_window_arc_tracker.cc",
      "ash/launcher/app_service/app_service_app_window_arc_tracker.h",
      "ash/launcher/app_service/app_service_app_window_crostini_tracker.cc",
      "ash/launcher/app_service/app_service_app_window_crostini_tracker.h",
      "ash/launcher/app_service/app_service_app_window_launcher_controller.cc",
      "ash/launcher/app_service/app_service_app_window_launcher_controller.h",
      "ash/launcher/app_service/app_service_app_window_launcher_item_controller.cc",
      "ash/launcher/app_service/app_service_app_window_launcher_item_controller.h",
      "ash/launcher/app_service/app_service_instance_registry_helper.cc",
      "ash/launcher/app_service/app_service_instance_registry_helper.h",
      "ash/launcher/app_service/app_service_shelf_context_menu.cc",
      "ash/launcher/app_service/app_service_shelf_context_menu.h",
      "ash/launcher/app_service/launcher_app_service_app_updater.cc",
      "ash/launcher/app_service/launcher_app_service_app_updater.h",
      "ash/launcher/app_shortcut_launcher_item_controller.cc",
      "ash/launcher/app_shortcut_launcher_item_controller.h",
      "ash/launcher/app_window_base.cc",
      "ash/launcher/app_window_base.h",
      "ash/launcher/app_window_launcher_controller.cc",
      "ash/launcher/app_window_launcher_controller.h",
      "ash/launcher/app_window_launcher_item_controller.cc",
      "ash/launcher/app_window_launcher_item_controller.h",
      "ash/launcher/arc_app_shelf_id.cc",
      "ash/launcher/arc_app_shelf_id.h",
      "ash/launcher/arc_app_window.cc",
      "ash/launcher/arc_app_window.h",
      "ash/launcher/arc_app_window_delegate.h",
      "ash/launcher/arc_app_window_info.cc",
      "ash/launcher/arc_app_window_info.h",
      "ash/launcher/arc_playstore_shortcut_launcher_item_controller.cc",
      "ash/launcher/arc_playstore_shortcut_launcher_item_controller.h",
      "ash/launcher/arc_shelf_spinner_item_controller.cc",
      "ash/launcher/arc_shelf_spinner_item_controller.h",
      "ash/launcher/browser_shortcut_launcher_item_controller.cc",
      "ash/launcher/browser_shortcut_launcher_item_controller.h",
      "ash/launcher/browser_status_monitor.cc",
      "ash/launcher/browser_status_monitor.h",
      "ash/launcher/chrome_launcher_controller.cc",
      "ash/launcher/chrome_launcher_controller.h",
      "ash/launcher/chrome_launcher_controller_util.cc",
      "ash/launcher/chrome_launcher_controller_util.h",
      "ash/launcher/crostini_app_display.cc",
      "ash/launcher/crostini_app_display.h",
      "ash/launcher/discover_window_observer.cc",
      "ash/launcher/discover_window_observer.h",
      "ash/launcher/extension_shelf_context_menu.cc",
      "ash/launcher/extension_shelf_context_menu.h",
      "ash/launcher/extension_uninstaller.cc",
      "ash/launcher/extension_uninstaller.h",
      "ash/launcher/launcher_app_updater.cc",
      "ash/launcher/launcher_app_updater.h",
      "ash/launcher/launcher_controller_helper.cc",
      "ash/launcher/launcher_controller_helper.h",
      "ash/launcher/launcher_extension_app_updater.cc",
      "ash/launcher/launcher_extension_app_updater.h",
      "ash/launcher/multi_profile_browser_status_monitor.cc",
      "ash/launcher/multi_profile_browser_status_monitor.h",
      "ash/launcher/settings_window_observer.cc",
      "ash/launcher/settings_window_observer.h",
      "ash/launcher/shelf_context_menu.cc",
      "ash/launcher/shelf_context_menu.h",
      "ash/launcher/shelf_spinner_controller.cc",
      "ash/launcher/shelf_spinner_controller.h",
      "ash/launcher/shelf_spinner_item_controller.cc",
      "ash/launcher/shelf_spinner_item_controller.h",
      "ash/login_screen_client.cc",
      "ash/login_screen_client.h",
      "ash/login_screen_shown_observer.h",
      "ash/media_client_impl.cc",
      "ash/media_client_impl.h",
      "ash/media_notification_provider_impl.cc",
      "ash/media_notification_provider_impl.h",
      "ash/multi_user/multi_profile_support.cc",
      "ash/multi_user/multi_profile_support.h",
      "ash/multi_user/multi_user_context_menu.h",
      "ash/multi_user/multi_user_context_menu_chromeos.cc",
      "ash/multi_user/multi_user_util.cc",
      "ash/multi_user/multi_user_util.h",
      "ash/multi_user/multi_user_window_manager_helper.cc",
      "ash/multi_user/multi_user_window_manager_helper.h",
      "ash/multi_user/multi_user_window_manager_stub.cc",
      "ash/multi_user/multi_user_window_manager_stub.h",
      "ash/network/enrollment_dialog_view.cc",
      "ash/network/enrollment_dialog_view.h",
      "ash/network/mobile_data_notifications.cc",
      "ash/network/mobile_data_notifications.h",
      "ash/network/network_connect_delegate_chromeos.cc",
      "ash/network/network_connect_delegate_chromeos.h",
      "ash/network/network_portal_notification_controller.cc",
      "ash/network/network_portal_notification_controller.h",
      "ash/network/network_state_notifier.cc",
      "ash/network/network_state_notifier.h",
      "ash/network/tether_notification_presenter.cc",
      "ash/network/tether_notification_presenter.h",
      "ash/quick_answers/quick_answers_browser_client_impl.cc",
      "ash/quick_answers/quick_answers_browser_client_impl.h",
      "ash/screen_orientation_delegate_chromeos.cc",
      "ash/screen_orientation_delegate_chromeos.h",
      "ash/session_controller_client_impl.cc",
      "ash/session_controller_client_impl.h",
      "ash/session_util.cc",
      "ash/session_util.h",
      "ash/system_tray_client.cc",
      "ash/system_tray_client.h",
      "ash/tab_scrubber.cc",
      "ash/tab_scrubber.h",
      "ash/tablet_mode_page_behavior.cc",
      "ash/tablet_mode_page_behavior.h",
      "ash/test_ime_controller.cc",
      "ash/test_ime_controller.h",
      "ash/vpn_list_forwarder.cc",
      "ash/vpn_list_forwarder.h",
      "ash/wallpaper_controller_client.cc",
      "ash/wallpaper_controller_client.h",
      "ash/window_properties.cc",
      "ash/window_properties.h",
      "browser_commands_chromeos.cc",
      "browser_commands_chromeos.h",
      "extensions/extension_installed_notification.cc",
      "extensions/extension_installed_notification.h",
      "platform_keys_certificate_selector_chromeos.h",
      "settings_window_manager_chromeos.cc",
      "settings_window_manager_chromeos.h",
      "settings_window_manager_observer_chromeos.h",
      "supervised_user/parent_permission_dialog.h",
      "views/apps/app_dialog/app_block_dialog_view.cc",
      "views/apps/app_dialog/app_block_dialog_view.h",
      "views/apps/app_dialog/app_pause_dialog_view.cc",
      "views/apps/app_dialog/app_pause_dialog_view.h",
      "views/apps/app_info_dialog/arc_app_info_links_panel.cc",
      "views/apps/app_info_dialog/arc_app_info_links_panel.h",
      "views/apps/chrome_app_window_client_views_chromeos.cc",
      "views/apps/chrome_native_app_window_views_aura_ash.cc",
      "views/apps/chrome_native_app_window_views_aura_ash.h",
      "views/arc_app_dialog_view.cc",
      "views/arc_data_removal_dialog_view.cc",
      "views/borealis/borealis_installer_view.cc",
      "views/borealis/borealis_installer_view.h",
      "views/chrome_views_delegate_chromeos.cc",
      "views/crostini/crostini_ansible_software_config_view.cc",
      "views/crostini/crostini_ansible_software_config_view.h",
      "views/crostini/crostini_app_restart_view.cc",
      "views/crostini/crostini_app_restart_view.h",
      "views/crostini/crostini_force_close_view.cc",
      "views/crostini/crostini_force_close_view.h",
      "views/crostini/crostini_package_install_failure_view.cc",
      "views/crostini/crostini_package_install_failure_view.h",
      "views/crostini/crostini_recovery_view.cc",
      "views/crostini/crostini_recovery_view.h",
      "views/crostini/crostini_uninstaller_view.cc",
      "views/crostini/crostini_uninstaller_view.h",
      "views/crostini/crostini_update_component_view.cc",
      "views/crostini/crostini_update_component_view.h",
      "views/crostini/crostini_update_filesystem_view.cc",
      "views/crostini/crostini_update_filesystem_view.h",
      "views/extensions/print_job_confirmation_dialog_view.cc",
      "views/extensions/print_job_confirmation_dialog_view.h",
      "views/extensions/request_file_system_dialog_view.cc",
      "views/extensions/request_file_system_dialog_view.h",
      "views/frame/browser_frame_ash.cc",
      "views/frame/browser_frame_ash.h",
      "views/frame/browser_frame_header_ash.cc",
      "views/frame/browser_frame_header_ash.h",
      "views/frame/browser_non_client_frame_view_ash.cc",
      "views/frame/browser_non_client_frame_view_ash.h",
      "views/frame/browser_non_client_frame_view_factory_chromeos.cc",
      "views/frame/custom_tab_browser_frame.cc",
      "views/frame/custom_tab_browser_frame.h",
      "views/frame/immersive_mode_controller_ash.cc",
      "views/frame/immersive_mode_controller_ash.h",
      "views/frame/native_browser_frame_factory_chromeos.cc",
      "views/frame/top_controls_slide_controller_chromeos.cc",
      "views/frame/top_controls_slide_controller_chromeos.h",
      "views/platform_keys_certificate_selector_chromeos.cc",
      "views/platform_keys_certificate_selector_chromeos.h",
      "views/plugin_vm/plugin_vm_installer_view.cc",
      "views/plugin_vm/plugin_vm_installer_view.h",
      "views/profiles/profile_indicator_icon.cc",
      "views/profiles/profile_indicator_icon.h",
      "views/relaunch_notification/relaunch_notification_controller_platform_impl_chromeos.cc",
      "views/relaunch_notification/relaunch_notification_controller_platform_impl_chromeos.h",
      "views/relaunch_notification/relaunch_notification_metrics.cc",
      "views/relaunch_notification/relaunch_notification_metrics.h",
      "views/sharesheet/sharesheet_bubble_view.cc",
      "views/sharesheet/sharesheet_bubble_view.h",
      "views/sharesheet/sharesheet_expand_button.cc",
      "views/sharesheet/sharesheet_expand_button.h",
      "views/sharesheet/sharesheet_target_button.cc",
      "views/sharesheet/sharesheet_target_button.h",

      # On chromeos, file manager extension handles the file open/save dialog.
      "views/select_file_dialog_extension.cc",
      "views/select_file_dialog_extension.h",
      "views/select_file_dialog_extension_factory.cc",
      "views/select_file_dialog_extension_factory.h",
      "views/supervised_user/extension_install_blocked_by_parent_dialog_view.cc",
      "views/supervised_user/extension_install_blocked_by_parent_dialog_view.h",
      "views/supervised_user/parent_permission_dialog_view.cc",
      "views/supervised_user/parent_permission_dialog_view.h",
      "views/touch_selection_menu_chromeos.cc",
      "views/touch_selection_menu_chromeos.h",
      "views/touch_selection_menu_runner_chromeos.cc",
      "views/touch_selection_menu_runner_chromeos.h",
      "webui/app_management/app_management_shelf_delegate_chromeos.cc",
      "webui/app_management/app_management_shelf_delegate_chromeos.h",
      "webui/certificate_provisioning_ui_handler.cc",
      "webui/certificate_provisioning_ui_handler.h",
      "webui/chromeos/account_manager/account_manager_error_ui.cc",
      "webui/chromeos/account_manager/account_manager_error_ui.h",
      "webui/chromeos/account_manager/account_manager_welcome_dialog.cc",
      "webui/chromeos/account_manager/account_manager_welcome_dialog.h",
      "webui/chromeos/account_manager/account_manager_welcome_ui.cc",
      "webui/chromeos/account_manager/account_manager_welcome_ui.h",
      "webui/chromeos/account_manager/account_migration_welcome_dialog.cc",
      "webui/chromeos/account_manager/account_migration_welcome_dialog.h",
      "webui/chromeos/account_manager/account_migration_welcome_ui.cc",
      "webui/chromeos/account_manager/account_migration_welcome_ui.h",
      "webui/chromeos/add_supervision/add_supervision_handler.cc",
      "webui/chromeos/add_supervision/add_supervision_handler.h",
      "webui/chromeos/add_supervision/add_supervision_handler_utils.cc",
      "webui/chromeos/add_supervision/add_supervision_handler_utils.h",
      "webui/chromeos/add_supervision/add_supervision_metrics_recorder.cc",
      "webui/chromeos/add_supervision/add_supervision_metrics_recorder.h",
      "webui/chromeos/add_supervision/add_supervision_ui.cc",
      "webui/chromeos/add_supervision/add_supervision_ui.h",
      "webui/chromeos/add_supervision/confirm_signout_dialog.cc",
      "webui/chromeos/add_supervision/confirm_signout_dialog.h",
      "webui/chromeos/arc_graphics_tracing/arc_graphics_tracing.h",
      "webui/chromeos/arc_graphics_tracing/arc_graphics_tracing_handler.cc",
      "webui/chromeos/arc_graphics_tracing/arc_graphics_tracing_handler.h",
      "webui/chromeos/arc_graphics_tracing/arc_graphics_tracing_ui.cc",
      "webui/chromeos/arc_graphics_tracing/arc_graphics_tracing_ui.h",
      "webui/chromeos/assistant_optin/assistant_optin_ui.cc",
      "webui/chromeos/assistant_optin/assistant_optin_ui.h",
      "webui/chromeos/assistant_optin/assistant_optin_utils.cc",
      "webui/chromeos/assistant_optin/assistant_optin_utils.h",
      "webui/chromeos/bluetooth_dialog_localized_strings_provider.cc",
      "webui/chromeos/bluetooth_dialog_localized_strings_provider.h",
      "webui/chromeos/bluetooth_pairing_dialog.cc",
      "webui/chromeos/bluetooth_pairing_dialog.h",
      "webui/chromeos/cellular_setup/cellular_setup_dialog.cc",
      "webui/chromeos/cellular_setup/cellular_setup_dialog.h",
      "webui/chromeos/cellular_setup/cellular_setup_dialog_launcher.cc",
      "webui/chromeos/cellular_setup/cellular_setup_dialog_launcher.h",
      "webui/chromeos/cellular_setup/cellular_setup_localized_strings_provider.cc",
      "webui/chromeos/cellular_setup/cellular_setup_localized_strings_provider.h",
      "webui/chromeos/cellular_setup/mobile_setup_dialog.cc",
      "webui/chromeos/cellular_setup/mobile_setup_dialog.h",
      "webui/chromeos/cellular_setup/mobile_setup_ui.cc",
      "webui/chromeos/cellular_setup/mobile_setup_ui.h",
      "webui/chromeos/certificate_manager_dialog_ui.cc",
      "webui/chromeos/certificate_manager_dialog_ui.h",
      "webui/chromeos/chrome_url_disabled/chrome_url_disabled_ui.cc",
      "webui/chromeos/chrome_url_disabled/chrome_url_disabled_ui.h",
      "webui/chromeos/crostini_installer/crostini_installer_dialog.cc",
      "webui/chromeos/crostini_installer/crostini_installer_dialog.h",
      "webui/chromeos/crostini_installer/crostini_installer_page_handler.cc",
      "webui/chromeos/crostini_installer/crostini_installer_page_handler.h",
      "webui/chromeos/crostini_installer/crostini_installer_ui.cc",
      "webui/chromeos/crostini_installer/crostini_installer_ui.h",
      "webui/chromeos/crostini_upgrader/crostini_upgrader_dialog.cc",
      "webui/chromeos/crostini_upgrader/crostini_upgrader_dialog.h",
      "webui/chromeos/crostini_upgrader/crostini_upgrader_page_handler.cc",
      "webui/chromeos/crostini_upgrader/crostini_upgrader_page_handler.h",
      "webui/chromeos/crostini_upgrader/crostini_upgrader_ui.cc",
      "webui/chromeos/crostini_upgrader/crostini_upgrader_ui.h",
      "webui/chromeos/cryptohome_ui.cc",
      "webui/chromeos/cryptohome_ui.h",
      "webui/chromeos/cryptohome_web_ui_handler.cc",
      "webui/chromeos/cryptohome_web_ui_handler.h",
      "webui/chromeos/drive_internals_ui.cc",
      "webui/chromeos/drive_internals_ui.h",
      "webui/chromeos/edu_account_login_handler_chromeos.cc",
      "webui/chromeos/edu_account_login_handler_chromeos.h",
      "webui/chromeos/first_run/first_run_actor.cc",
      "webui/chromeos/first_run/first_run_actor.h",
      "webui/chromeos/first_run/first_run_handler.cc",
      "webui/chromeos/first_run/first_run_handler.h",
      "webui/chromeos/first_run/first_run_ui.cc",
      "webui/chromeos/first_run/first_run_ui.h",
      "webui/chromeos/image_source.cc",
      "webui/chromeos/image_source.h",
      "webui/chromeos/in_session_password_change/confirm_password_change_handler.cc",
      "webui/chromeos/in_session_password_change/confirm_password_change_handler.h",
      "webui/chromeos/in_session_password_change/lock_screen_reauth_dialogs.cc",
      "webui/chromeos/in_session_password_change/lock_screen_reauth_dialogs.h",
      "webui/chromeos/in_session_password_change/lock_screen_reauth_handler.cc",
      "webui/chromeos/in_session_password_change/lock_screen_reauth_handler.h",
      "webui/chromeos/in_session_password_change/lock_screen_start_reauth_ui.cc",
      "webui/chromeos/in_session_password_change/lock_screen_start_reauth_ui.h",
      "webui/chromeos/in_session_password_change/password_change_dialogs.cc",
      "webui/chromeos/in_session_password_change/password_change_dialogs.h",
      "webui/chromeos/in_session_password_change/password_change_handler.cc",
      "webui/chromeos/in_session_password_change/password_change_handler.h",
      "webui/chromeos/in_session_password_change/password_change_ui.cc",
      "webui/chromeos/in_session_password_change/password_change_ui.h",
      "webui/chromeos/in_session_password_change/urgent_password_expiry_notification_handler.cc",
      "webui/chromeos/in_session_password_change/urgent_password_expiry_notification_handler.h",
      "webui/chromeos/internet_config_dialog.cc",
      "webui/chromeos/internet_config_dialog.h",
      "webui/chromeos/internet_detail_dialog.cc",
      "webui/chromeos/internet_detail_dialog.h",
      "webui/chromeos/login/active_directory_password_change_screen_handler.cc",
      "webui/chromeos/login/active_directory_password_change_screen_handler.h",
      "webui/chromeos/login/app_downloading_screen_handler.cc",
      "webui/chromeos/login/app_downloading_screen_handler.h",
      "webui/chromeos/login/app_launch_splash_screen_handler.cc",
      "webui/chromeos/login/app_launch_splash_screen_handler.h",
      "webui/chromeos/login/arc_terms_of_service_screen_handler.cc",
      "webui/chromeos/login/arc_terms_of_service_screen_handler.h",
      "webui/chromeos/login/assistant_optin_flow_screen_handler.cc",
      "webui/chromeos/login/assistant_optin_flow_screen_handler.h",
      "webui/chromeos/login/auto_enrollment_check_screen_handler.cc",
      "webui/chromeos/login/auto_enrollment_check_screen_handler.h",
      "webui/chromeos/login/base_screen_handler.cc",
      "webui/chromeos/login/base_screen_handler.h",
      "webui/chromeos/login/base_webui_handler.cc",
      "webui/chromeos/login/base_webui_handler.h",
      "webui/chromeos/login/cookie_waiter.cc",
      "webui/chromeos/login/cookie_waiter.h",
      "webui/chromeos/login/core_oobe_handler.cc",
      "webui/chromeos/login/core_oobe_handler.h",
      "webui/chromeos/login/debug/debug_overlay_handler.cc",
      "webui/chromeos/login/debug/debug_overlay_handler.h",
      "webui/chromeos/login/demo_preferences_screen_handler.cc",
      "webui/chromeos/login/demo_preferences_screen_handler.h",
      "webui/chromeos/login/demo_setup_screen_handler.cc",
      "webui/chromeos/login/demo_setup_screen_handler.h",
      "webui/chromeos/login/device_disabled_screen_handler.cc",
      "webui/chromeos/login/device_disabled_screen_handler.h",
      "webui/chromeos/login/discover/discover_handler.cc",
      "webui/chromeos/login/discover/discover_handler.h",
      "webui/chromeos/login/discover/discover_manager.cc",
      "webui/chromeos/login/discover/discover_manager.h",
      "webui/chromeos/login/discover/discover_ui.cc",
      "webui/chromeos/login/discover/discover_ui.h",
      "webui/chromeos/login/discover/discover_window_manager.cc",
      "webui/chromeos/login/discover/discover_window_manager.h",
      "webui/chromeos/login/discover/discover_window_manager_observer.h",
      "webui/chromeos/login/discover/modules/discover_module_launch_help_app.cc",
      "webui/chromeos/login/discover/modules/discover_module_launch_help_app.h",
      "webui/chromeos/login/discover/modules/discover_module_pin_setup.cc",
      "webui/chromeos/login/discover/modules/discover_module_pin_setup.h",
      "webui/chromeos/login/discover/modules/discover_module_redeem_offers.cc",
      "webui/chromeos/login/discover/modules/discover_module_redeem_offers.h",
      "webui/chromeos/login/discover/modules/discover_module_set_wallpaper.cc",
      "webui/chromeos/login/discover/modules/discover_module_set_wallpaper.h",
      "webui/chromeos/login/discover/modules/discover_module_sync_files.cc",
      "webui/chromeos/login/discover/modules/discover_module_sync_files.h",
      "webui/chromeos/login/discover/modules/discover_module_welcome.cc",
      "webui/chromeos/login/discover/modules/discover_module_welcome.h",
      "webui/chromeos/login/discover_screen_handler.cc",
      "webui/chromeos/login/discover_screen_handler.h",
      "webui/chromeos/login/enable_adb_sideloading_screen_handler.cc",
      "webui/chromeos/login/enable_adb_sideloading_screen_handler.h",
      "webui/chromeos/login/enable_debugging_screen_handler.cc",
      "webui/chromeos/login/enable_debugging_screen_handler.h",
      "webui/chromeos/login/encryption_migration_screen_handler.cc",
      "webui/chromeos/login/encryption_migration_screen_handler.h",
      "webui/chromeos/login/enrollment_screen_handler.cc",
      "webui/chromeos/login/enrollment_screen_handler.h",
      "webui/chromeos/login/error_screen_handler.cc",
      "webui/chromeos/login/error_screen_handler.h",
      "webui/chromeos/login/eula_screen_handler.cc",
      "webui/chromeos/login/eula_screen_handler.h",
      "webui/chromeos/login/family_link_notice_screen_handler.cc",
      "webui/chromeos/login/family_link_notice_screen_handler.h",
      "webui/chromeos/login/fingerprint_setup_screen_handler.cc",
      "webui/chromeos/login/fingerprint_setup_screen_handler.h",
      "webui/chromeos/login/gaia_password_changed_screen_handler.cc",
      "webui/chromeos/login/gaia_password_changed_screen_handler.h",
      "webui/chromeos/login/gaia_screen_handler.cc",
      "webui/chromeos/login/gaia_screen_handler.h",
      "webui/chromeos/login/gesture_navigation_screen_handler.cc",
      "webui/chromeos/login/gesture_navigation_screen_handler.h",
      "webui/chromeos/login/hid_detection_screen_handler.cc",
      "webui/chromeos/login/hid_detection_screen_handler.h",
      "webui/chromeos/login/js_calls_container.cc",
      "webui/chromeos/login/js_calls_container.h",
      "webui/chromeos/login/kiosk_autolaunch_screen_handler.cc",
      "webui/chromeos/login/kiosk_autolaunch_screen_handler.h",
      "webui/chromeos/login/kiosk_enable_screen_handler.cc",
      "webui/chromeos/login/kiosk_enable_screen_handler.h",
      "webui/chromeos/login/l10n_util.cc",
      "webui/chromeos/login/l10n_util.h",
      "webui/chromeos/login/marketing_opt_in_screen_handler.cc",
      "webui/chromeos/login/marketing_opt_in_screen_handler.h",
      "webui/chromeos/login/multidevice_setup_screen_handler.cc",
      "webui/chromeos/login/multidevice_setup_screen_handler.h",
      "webui/chromeos/login/network_dropdown_handler.cc",
      "webui/chromeos/login/network_dropdown_handler.h",
      "webui/chromeos/login/network_screen_handler.cc",
      "webui/chromeos/login/network_screen_handler.h",
      "webui/chromeos/login/network_state_informer.cc",
      "webui/chromeos/login/network_state_informer.h",
      "webui/chromeos/login/oobe_display_chooser.cc",
      "webui/chromeos/login/oobe_display_chooser.h",
      "webui/chromeos/login/oobe_ui.cc",
      "webui/chromeos/login/oobe_ui.h",
      "webui/chromeos/login/packaged_license_screen_handler.cc",
      "webui/chromeos/login/packaged_license_screen_handler.h",
      "webui/chromeos/login/recommend_apps_screen_handler.cc",
      "webui/chromeos/login/recommend_apps_screen_handler.h",
      "webui/chromeos/login/reset_screen_handler.cc",
      "webui/chromeos/login/reset_screen_handler.h",
      "webui/chromeos/login/saml_challenge_key_handler.cc",
      "webui/chromeos/login/saml_challenge_key_handler.h",
      "webui/chromeos/login/signin_screen_handler.cc",
      "webui/chromeos/login/signin_screen_handler.h",
      "webui/chromeos/login/supervision_transition_screen_handler.cc",
      "webui/chromeos/login/supervision_transition_screen_handler.h",
      "webui/chromeos/login/sync_consent_screen_handler.cc",
      "webui/chromeos/login/sync_consent_screen_handler.h",
      "webui/chromeos/login/terms_of_service_screen_handler.cc",
      "webui/chromeos/login/terms_of_service_screen_handler.h",
      "webui/chromeos/login/tpm_error_screen_handler.cc",
      "webui/chromeos/login/tpm_error_screen_handler.h",
      "webui/chromeos/login/update_required_screen_handler.cc",
      "webui/chromeos/login/update_required_screen_handler.h",
      "webui/chromeos/login/update_screen_handler.cc",
      "webui/chromeos/login/update_screen_handler.h",
      "webui/chromeos/login/user_board_screen_handler.cc",
      "webui/chromeos/login/user_board_screen_handler.h",
      "webui/chromeos/login/user_creation_screen_handler.cc",
      "webui/chromeos/login/user_creation_screen_handler.h",
      "webui/chromeos/login/welcome_screen_handler.cc",
      "webui/chromeos/login/welcome_screen_handler.h",
      "webui/chromeos/login/wrong_hwid_screen_handler.cc",
      "webui/chromeos/login/wrong_hwid_screen_handler.h",
      "webui/chromeos/machine_learning/machine_learning_internals_page_handler.cc",
      "webui/chromeos/machine_learning/machine_learning_internals_page_handler.h",
      "webui/chromeos/machine_learning/machine_learning_internals_ui.cc",
      "webui/chromeos/machine_learning/machine_learning_internals_ui.h",
      "webui/chromeos/multidevice_internals/multidevice_internals_logs_handler.cc",
      "webui/chromeos/multidevice_internals/multidevice_internals_logs_handler.h",
      "webui/chromeos/multidevice_internals/multidevice_internals_phone_hub_handler.cc",
      "webui/chromeos/multidevice_internals/multidevice_internals_phone_hub_handler.h",
      "webui/chromeos/multidevice_internals/multidevice_internals_ui.cc",
      "webui/chromeos/multidevice_internals/multidevice_internals_ui.h",
      "webui/chromeos/multidevice_setup/multidevice_setup_dialog.cc",
      "webui/chromeos/multidevice_setup/multidevice_setup_dialog.h",
      "webui/chromeos/multidevice_setup/multidevice_setup_handler.cc",
      "webui/chromeos/multidevice_setup/multidevice_setup_handler.h",
      "webui/chromeos/multidevice_setup/multidevice_setup_localized_strings_provider.cc",
      "webui/chromeos/multidevice_setup/multidevice_setup_localized_strings_provider.h",
      "webui/chromeos/network_element_localized_strings_provider.cc",
      "webui/chromeos/network_element_localized_strings_provider.h",
      "webui/chromeos/network_logs_message_handler.cc",
      "webui/chromeos/network_logs_message_handler.h",
      "webui/chromeos/network_ui.cc",
      "webui/chromeos/network_ui.h",
      "webui/chromeos/onc_import_message_handler.cc",
      "webui/chromeos/onc_import_message_handler.h",
      "webui/chromeos/power_ui.cc",
      "webui/chromeos/power_ui.h",
      "webui/chromeos/set_time_ui.cc",
      "webui/chromeos/set_time_ui.h",
      "webui/chromeos/slow_trace_ui.cc",
      "webui/chromeos/slow_trace_ui.h",
      "webui/chromeos/slow_ui.cc",
      "webui/chromeos/slow_ui.h",
      "webui/chromeos/smb_shares/smb_credentials_dialog.cc",
      "webui/chromeos/smb_shares/smb_credentials_dialog.h",
      "webui/chromeos/smb_shares/smb_handler.cc",
      "webui/chromeos/smb_shares/smb_handler.h",
      "webui/chromeos/smb_shares/smb_share_dialog.cc",
      "webui/chromeos/smb_shares/smb_share_dialog.h",
      "webui/chromeos/smb_shares/smb_shares_localized_strings_provider.cc",
      "webui/chromeos/smb_shares/smb_shares_localized_strings_provider.h",
      "webui/chromeos/sync/os_sync_handler.cc",
      "webui/chromeos/sync/os_sync_handler.h",
      "webui/chromeos/sys_internals/sys_internals_message_handler.cc",
      "webui/chromeos/sys_internals/sys_internals_message_handler.h",
      "webui/chromeos/sys_internals/sys_internals_ui.cc",
      "webui/chromeos/sys_internals/sys_internals_ui.h",
      "webui/chromeos/system_web_dialog_delegate.cc",
      "webui/chromeos/system_web_dialog_delegate.h",
      "webui/chromeos/user_image_source.cc",
      "webui/chromeos/user_image_source.h",
      "webui/chromeos/video_source.cc",
      "webui/chromeos/video_source.h",
      "webui/extensions/chromeos/kiosk_apps_handler.cc",
      "webui/extensions/chromeos/kiosk_apps_handler.h",
      "webui/help/help_utils_chromeos.cc",
      "webui/help/help_utils_chromeos.h",
      "webui/help/version_updater_chromeos.cc",
      "webui/help/version_updater_chromeos.h",
      "webui/management_ui_handler_chromeos.cc",
      "webui/management_ui_handler_chromeos.h",
      "webui/nearby_internals/nearby_internals_contact_handler.cc",
      "webui/nearby_internals/nearby_internals_contact_handler.h",
      "webui/nearby_internals/nearby_internals_http_handler.cc",
      "webui/nearby_internals/nearby_internals_http_handler.h",
      "webui/nearby_internals/nearby_internals_logs_handler.cc",
      "webui/nearby_internals/nearby_internals_logs_handler.h",
      "webui/nearby_internals/nearby_internals_ui.cc",
      "webui/nearby_internals/nearby_internals_ui.h",
      "webui/nearby_internals/nearby_internals_ui_trigger_handler.cc",
      "webui/nearby_internals/nearby_internals_ui_trigger_handler.h",
      "webui/nearby_share/nearby_share_dialog_ui.cc",
      "webui/nearby_share/nearby_share_dialog_ui.h",
      "webui/nearby_share/shared_resources.cc",
      "webui/nearby_share/shared_resources.h",
      "webui/settings/chromeos/about_section.cc",
      "webui/settings/chromeos/about_section.h",
      "webui/settings/chromeos/accessibility_handler.cc",
      "webui/settings/chromeos/accessibility_handler.h",
      "webui/settings/chromeos/accessibility_section.cc",
      "webui/settings/chromeos/accessibility_section.h",
      "webui/settings/chromeos/account_manager_handler.cc",
      "webui/settings/chromeos/account_manager_handler.h",
      "webui/settings/chromeos/ambient_mode_handler.cc",
      "webui/settings/chromeos/ambient_mode_handler.h",
      "webui/settings/chromeos/android_apps_handler.cc",
      "webui/settings/chromeos/android_apps_handler.h",
      "webui/settings/chromeos/app_management/app_management_page_handler_factory.cc",
      "webui/settings/chromeos/app_management/app_management_page_handler_factory.h",
      "webui/settings/chromeos/apps_section.cc",
      "webui/settings/chromeos/apps_section.h",
      "webui/settings/chromeos/bluetooth_section.cc",
      "webui/settings/chromeos/bluetooth_section.h",
      "webui/settings/chromeos/calculator/size_calculator.cc",
      "webui/settings/chromeos/calculator/size_calculator.h",
      "webui/settings/chromeos/change_picture_handler.cc",
      "webui/settings/chromeos/change_picture_handler.h",
      "webui/settings/chromeos/constants/constants_util.cc",
      "webui/settings/chromeos/constants/constants_util.h",
      "webui/settings/chromeos/constants/routes_util.cc",
      "webui/settings/chromeos/constants/routes_util.h",
      "webui/settings/chromeos/crostini_handler.cc",
      "webui/settings/chromeos/crostini_handler.h",
      "webui/settings/chromeos/crostini_section.cc",
      "webui/settings/chromeos/crostini_section.h",
      "webui/settings/chromeos/cups_printers_handler.cc",
      "webui/settings/chromeos/cups_printers_handler.h",
      "webui/settings/chromeos/date_time_handler.cc",
      "webui/settings/chromeos/date_time_handler.h",
      "webui/settings/chromeos/date_time_section.cc",
      "webui/settings/chromeos/date_time_section.h",
      "webui/settings/chromeos/device_display_handler.cc",
      "webui/settings/chromeos/device_display_handler.h",
      "webui/settings/chromeos/device_keyboard_handler.cc",
      "webui/settings/chromeos/device_keyboard_handler.h",
      "webui/settings/chromeos/device_pointer_handler.cc",
      "webui/settings/chromeos/device_pointer_handler.h",
      "webui/settings/chromeos/device_power_handler.cc",
      "webui/settings/chromeos/device_power_handler.h",
      "webui/settings/chromeos/device_section.cc",
      "webui/settings/chromeos/device_section.h",
      "webui/settings/chromeos/device_storage_handler.cc",
      "webui/settings/chromeos/device_storage_handler.h",
      "webui/settings/chromeos/device_stylus_handler.cc",
      "webui/settings/chromeos/device_stylus_handler.h",
      "webui/settings/chromeos/files_section.cc",
      "webui/settings/chromeos/files_section.h",
      "webui/settings/chromeos/fingerprint_handler.cc",
      "webui/settings/chromeos/fingerprint_handler.h",
      "webui/settings/chromeos/google_assistant_handler.cc",
      "webui/settings/chromeos/google_assistant_handler.h",
      "webui/settings/chromeos/hierarchy.cc",
      "webui/settings/chromeos/hierarchy.h",
      "webui/settings/chromeos/internet_handler.cc",
      "webui/settings/chromeos/internet_handler.h",
      "webui/settings/chromeos/internet_section.cc",
      "webui/settings/chromeos/internet_section.h",
      "webui/settings/chromeos/kerberos_accounts_handler.cc",
      "webui/settings/chromeos/kerberos_accounts_handler.h",
      "webui/settings/chromeos/languages_section.cc",
      "webui/settings/chromeos/languages_section.h",
      "webui/settings/chromeos/main_section.cc",
      "webui/settings/chromeos/main_section.h",
      "webui/settings/chromeos/multidevice_handler.cc",
      "webui/settings/chromeos/multidevice_handler.h",
      "webui/settings/chromeos/multidevice_section.cc",
      "webui/settings/chromeos/multidevice_section.h",
      "webui/settings/chromeos/os_settings_features_util.cc",
      "webui/settings/chromeos/os_settings_features_util.h",
      "webui/settings/chromeos/os_settings_identifier.h",
      "webui/settings/chromeos/os_settings_manager.cc",
      "webui/settings/chromeos/os_settings_manager.h",
      "webui/settings/chromeos/os_settings_manager_factory.cc",
      "webui/settings/chromeos/os_settings_manager_factory.h",
      "webui/settings/chromeos/os_settings_section.cc",
      "webui/settings/chromeos/os_settings_section.h",
      "webui/settings/chromeos/os_settings_sections.cc",
      "webui/settings/chromeos/os_settings_sections.h",
      "webui/settings/chromeos/os_settings_ui.cc",
      "webui/settings/chromeos/os_settings_ui.h",
      "webui/settings/chromeos/parental_controls_handler.cc",
      "webui/settings/chromeos/parental_controls_handler.h",
      "webui/settings/chromeos/people_section.cc",
      "webui/settings/chromeos/people_section.h",
      "webui/settings/chromeos/personalization_section.cc",
      "webui/settings/chromeos/personalization_section.h",
      "webui/settings/chromeos/plugin_vm_handler.cc",
      "webui/settings/chromeos/plugin_vm_handler.h",
      "webui/settings/chromeos/pref_names.cc",
      "webui/settings/chromeos/pref_names.h",
      "webui/settings/chromeos/printing_section.cc",
      "webui/settings/chromeos/printing_section.h",
      "webui/settings/chromeos/privacy_section.cc",
      "webui/settings/chromeos/privacy_section.h",
      "webui/settings/chromeos/quick_unlock_handler.cc",
      "webui/settings/chromeos/quick_unlock_handler.h",
      "webui/settings/chromeos/reset_section.cc",
      "webui/settings/chromeos/reset_section.h",
      "webui/settings/chromeos/search/per_session_settings_user_action_tracker.cc",
      "webui/settings/chromeos/search/per_session_settings_user_action_tracker.h",
      "webui/settings/chromeos/search/search_concept.h",
      "webui/settings/chromeos/search/search_handler.cc",
      "webui/settings/chromeos/search/search_handler.h",
      "webui/settings/chromeos/search/search_tag_registry.cc",
      "webui/settings/chromeos/search/search_tag_registry.h",
      "webui/settings/chromeos/search_section.cc",
      "webui/settings/chromeos/search_section.h",
      "webui/settings/chromeos/server_printer_url_util.cc",
      "webui/settings/chromeos/server_printer_url_util.h",
      "webui/settings/chromeos/settings_user_action_tracker.cc",
      "webui/settings/chromeos/settings_user_action_tracker.h",
      "webui/settings/chromeos/wallpaper_handler.cc",
      "webui/settings/chromeos/wallpaper_handler.h",
      "webui/settings/tts_handler.cc",
      "webui/settings/tts_handler.h",
      "webui/signin/inline_login_dialog_chromeos.cc",
      "webui/signin/inline_login_dialog_chromeos.h",
      "webui/signin/inline_login_handler_chromeos.cc",
      "webui/signin/inline_login_handler_chromeos.h",
      "webui/signin/inline_login_handler_modal_delegate.cc",
      "webui/signin/inline_login_handler_modal_delegate.h",
      "webui/version_handler_chromeos.cc",
      "webui/version_handler_chromeos.h",
      "window_sizer/window_sizer_chromeos.cc",
      "window_sizer/window_sizer_chromeos.h",
    ]

    deps += [
      "//ash",
      "//ash/app_list",
      "//ash/assistant/model",
      "//ash/assistant/util",
      "//ash/keyboard/ui",
      "//ash/public/cpp",
      "//ash/public/cpp/app_list/vector_icons",
      "//ash/public/cpp/resources:ash_public_unscaled_resources",
      "//ash/shortcut_viewer",
      "//build:chromeos_buildflags",
      "//chrome/app:generated_resources",
      "//chrome/browser/chromeos",
      "//chrome/browser/chromeos:backdrop_wallpaper_proto",
      "//chrome/browser/chromeos/crostini:crostini_installer_types_mojom",
      "//chrome/browser/nearby_sharing:share_target",
      "//chrome/browser/nearby_sharing/certificates",
      "//chrome/browser/nearby_sharing/client",
      "//chrome/browser/nearby_sharing/common",
      "//chrome/browser/nearby_sharing/contacts",
      "//chrome/browser/nearby_sharing/local_device_data",
      "//chrome/browser/nearby_sharing/logging",
      "//chrome/browser/nearby_sharing/logging:util",
      "//chrome/browser/nearby_sharing/proto",
      "//chrome/browser/resources:bluetooth_pairing_dialog_resources",
      "//chrome/browser/ui/app_list/search/cros_action_history:cros_action_proto",
      "//chrome/browser/ui/app_list/search/search_result_ranker:app_launch_event_logger_proto",
      "//chrome/browser/ui/app_list/search/search_result_ranker:app_launch_predictor_proto",
      "//chrome/browser/ui/app_list/search/search_result_ranker:app_list_launch_recorder_proto",
      "//chrome/browser/ui/app_list/search/search_result_ranker:recurrence_ranker_proto",
      "//chrome/browser/ui/app_list/search/search_result_ranker:search_ranking_event_proto",
      "//chrome/browser/ui/webui/app_management:mojo_bindings",
      "//chrome/browser/ui/webui/chromeos/add_supervision:mojo_bindings",
      "//chrome/browser/ui/webui/chromeos/crostini_installer:mojo_bindings",
      "//chrome/browser/ui/webui/chromeos/crostini_upgrader:mojo_bindings",
      "//chrome/browser/ui/webui/chromeos/machine_learning:mojo_bindings",
      "//chrome/browser/ui/webui/nearby_share:mojom",
      "//chrome/browser/ui/webui/nearby_share/public/mojom",
      "//chrome/browser/ui/webui/settings/chromeos/constants:mojom",
      "//chrome/browser/ui/webui/settings/chromeos/search:mojo_bindings",
      "//chrome/services/file_util/public/cpp",
      "//chromeos",
      "//chromeos/assistant:buildflags",
      "//chromeos/audio",
      "//chromeos/components/account_manager",
      "//chromeos/components/bloom/public/cpp",
      "//chromeos/components/bloom/public/cpp:bloom_controller_factory",
      "//chromeos/components/camera_app_ui",
      "//chromeos/components/diagnostics_ui",
      "//chromeos/components/drivefs/mojom:mojom",
      "//chromeos/components/help_app_ui",
      "//chromeos/components/local_search_service:local_search_service",
      "//chromeos/components/media_app_ui",
      "//chromeos/components/multidevice",
      "//chromeos/components/multidevice/debug_webui",
      "//chromeos/components/multidevice/logging",
      "//chromeos/components/phonehub",
      "//chromeos/components/phonehub:debug",
      "//chromeos/components/print_management",
      "//chromeos/components/proximity_auth",
      "//chromeos/components/quick_answers",
      "//chromeos/components/scanning",
      "//chromeos/components/string_matching",
      "//chromeos/components/tether",
      "//chromeos/components/web_applications",
      "//chromeos/constants",
      "//chromeos/cryptohome",
      "//chromeos/dbus",
      "//chromeos/dbus/audio",
      "//chromeos/dbus/cryptohome",
      "//chromeos/dbus/cryptohome:cryptohome_proto",
      "//chromeos/dbus/kerberos:kerberos_proto",
      "//chromeos/dbus/power",
      "//chromeos/dbus/session_manager",
      "//chromeos/dbus/system_clock",
      "//chromeos/dbus/upstart",
      "//chromeos/disks",
      "//chromeos/login/auth",
      "//chromeos/login/login_state",
      "//chromeos/login/session",
      "//chromeos/network",
      "//chromeos/resources:resources_grit",
      "//chromeos/services/assistant:lib",
      "//chromeos/services/assistant/public/cpp",
      "//chromeos/services/assistant/public/mojom",
      "//chromeos/services/assistant/public/proto",
      "//chromeos/services/assistant/public/shared",
      "//chromeos/services/cellular_setup",
      "//chromeos/services/cellular_setup/public/mojom",
      "//chromeos/services/machine_learning/public/cpp",
      "//chromeos/services/multidevice_setup",
      "//chromeos/services/multidevice_setup/public/cpp",
      "//chromeos/services/multidevice_setup/public/cpp:android_sms_app_helper_delegate",
      "//chromeos/services/multidevice_setup/public/cpp:prefs",
      "//chromeos/services/multidevice_setup/public/cpp:url_provider",
      "//chromeos/services/network_config/public/mojom",
      "//chromeos/services/network_health/public/mojom",
      "//chromeos/settings",
      "//chromeos/strings",
      "//chromeos/system",
      "//chromeos/ui",
      "//chromeos/ui/vector_icons",
      "//components/arc",
      "//components/assist_ranker",
      "//components/assist_ranker/proto",
      "//components/captive_portal/core",
      "//components/consent_auditor:consent_auditor",
      "//components/exo",
      "//components/login",
      "//components/metrics/structured:structured_events",
      "//components/services/app_service/public/cpp:app_file_handling",
      "//components/services/app_service/public/cpp:app_share_target",
      "//components/services/app_service/public/cpp:app_update",
      "//components/services/app_service/public/cpp:icon_loader",
      "//components/services/app_service/public/cpp:instance_update",
      "//components/session_manager/core",
      "//components/user_manager",
      "//google_apis/drive",
      "//mojo/public/js:resources_grit",
      "//services/audio/public/mojom",
      "//services/data_decoder/public/cpp",
      "//services/device/public/cpp:device_features",
      "//services/device/public/mojom",
      "//services/media_session/public/mojom",
      "//services/preferences/public/mojom",
      "//ui/base/ime/chromeos",
      "//ui/chromeos",
      "//ui/chromeos/events",
      "//ui/compositor_extra",
      "//ui/file_manager:file_manager",
      "//ui/ozone",
    ]
    public_deps += [ "//chromeos/services/multidevice_setup/public/mojom" ]
    allow_circular_includes_from += [ "//chrome/browser/chromeos" ]

    if (!is_official_build) {
      if (!use_real_dbus_clients) {
        sources += [
          "webui/chromeos/emulator/device_emulator_message_handler.cc",
          "webui/chromeos/emulator/device_emulator_message_handler.h",
          "webui/chromeos/emulator/device_emulator_ui.cc",
          "webui/chromeos/emulator/device_emulator_ui.h",
        ]
      }
      deps += [
        "//chromeos/components/file_manager:file_manager_ui",
        "//chromeos/components/sample_system_web_app_ui",
        "//chromeos/components/telemetry_extension_ui",
      ]
    }

    if (use_cras) {
      defines += [ "USE_CRAS" ]
    }
  }

  # TODO(crbug.com/1052397): Rename GN variable. This is the lacros browser.
  if (chromeos_is_browser_only) {
    sources += [
      "window_sizer/window_sizer_chromeos.cc",
      "window_sizer/window_sizer_chromeos.h",
    ]
  }

  if (is_win || is_mac || is_desktop_linux || is_chromeos) {
    sources += [
      "autofill/payments/virtual_card_selection_dialog_controller.h",
      "autofill/payments/virtual_card_selection_dialog_controller_impl.cc",
      "autofill/payments/virtual_card_selection_dialog_controller_impl.h",
      "autofill/payments/virtual_card_selection_dialog_view.h",
      "autofill/payments/webauthn_dialog_controller.h",
      "autofill/payments/webauthn_dialog_controller_impl.cc",
      "autofill/payments/webauthn_dialog_controller_impl.h",
      "autofill/payments/webauthn_dialog_model.cc",
      "autofill/payments/webauthn_dialog_model.h",
      "autofill/payments/webauthn_dialog_model_observer.h",
      "autofill/payments/webauthn_dialog_state.h",
      "autofill/payments/webauthn_dialog_view.h",
      "avatar_button_error_controller.cc",
      "avatar_button_error_controller.h",
      "avatar_button_error_controller_delegate.h",
      "frame/window_frame_util.cc",
      "frame/window_frame_util.h",
      "passwords/account_storage_auth_helper.cc",
      "passwords/account_storage_auth_helper.h",
      "signin_view_controller.cc",
      "signin_view_controller.h",
      "signin_view_controller_delegate.cc",
      "signin_view_controller_delegate.h",
      "tab_contents/chrome_web_contents_menu_helper.cc",
      "tab_contents/chrome_web_contents_menu_helper.h",
      "tab_contents/chrome_web_contents_view_handle_drop.cc",
      "tab_contents/chrome_web_contents_view_handle_drop.h",
      "views/autofill/payments/virtual_card_selection_dialog_view_impl.cc",
      "views/autofill/payments/virtual_card_selection_dialog_view_impl.h",
      "views/autofill/payments/webauthn_dialog_view_impl.cc",
      "views/autofill/payments/webauthn_dialog_view_impl.h",
      "views/close_bubble_on_tab_activation_helper.cc",
      "views/close_bubble_on_tab_activation_helper.h",
      "views/external_protocol_dialog.cc",
      "views/external_protocol_dialog.h",
      "views/hats/hats_bubble_view.cc",
      "views/hats/hats_bubble_view.h",
      "views/hats/hats_next_web_dialog.cc",
      "views/hats/hats_next_web_dialog.h",
      "views/hats/hats_web_dialog.cc",
      "views/hats/hats_web_dialog.h",
      "views/profiles/incognito_menu_view.cc",
      "views/profiles/incognito_menu_view.h",
      "views/profiles/profile_menu_view.cc",
      "views/profiles/profile_menu_view.h",
      "views/profiles/profile_menu_view_base.cc",
      "views/profiles/profile_menu_view_base.h",
      "views/profiles/signin_view_controller_delegate_views.cc",
      "views/profiles/signin_view_controller_delegate_views.h",
      "webui/discards/discards_ui.cc",
      "webui/discards/discards_ui.h",
      "webui/discards/graph_dump_impl.cc",
      "webui/discards/graph_dump_impl.h",
      "webui/discards/site_data_provider_impl.cc",
      "webui/discards/site_data_provider_impl.h",
      "webui/signin/inline_login_handler.cc",
      "webui/signin/inline_login_handler.h",
      "webui/signin/inline_login_ui.cc",
      "webui/signin/inline_login_ui.h",
      "webui/signin/signin_web_dialog_ui.cc",
      "webui/signin/signin_web_dialog_ui.h",
      "webui/signin/sync_confirmation_handler.cc",
      "webui/signin/sync_confirmation_handler.h",
      "webui/signin/sync_confirmation_ui.cc",
      "webui/signin/sync_confirmation_ui.h",
    ]
    deps += [ "//ui/webui" ]
  }

  if (is_win || is_mac || is_desktop_linux) {
    sources += [
      "bookmarks/bookmark_bubble_sign_in_delegate.cc",
      "bookmarks/bookmark_bubble_sign_in_delegate.h",
      "profile_picker.h",
      "signin_reauth_view_controller.cc",
      "signin_reauth_view_controller.h",
      "startup/default_browser_infobar_delegate.cc",
      "startup/default_browser_infobar_delegate.h",
      "startup/default_browser_prompt.cc",
      "startup/default_browser_prompt.h",
      "sync/one_click_signin_links_delegate.h",
      "sync/one_click_signin_links_delegate_impl.cc",
      "sync/one_click_signin_links_delegate_impl.h",
      "user_manager.cc",
      "user_manager.h",
      "views/profiles/badged_profile_photo.cc",
      "views/profiles/badged_profile_photo.h",
      "views/profiles/profile_picker_view.cc",
      "views/profiles/profile_picker_view.h",
      "views/profiles/user_manager_view.cc",
      "views/profiles/user_manager_view.h",
      "webui/app_launcher_page_ui.cc",
      "webui/app_launcher_page_ui.h",
      "webui/browser_switch/browser_switch_ui.cc",
      "webui/browser_switch/browser_switch_ui.h",
      "webui/profile_helper.cc",
      "webui/profile_helper.h",
      "webui/settings/settings_default_browser_handler.cc",
      "webui/settings/settings_default_browser_handler.h",
      "webui/settings/settings_manage_profile_handler.cc",
      "webui/settings/settings_manage_profile_handler.h",
      "webui/settings/system_handler.cc",
      "webui/settings/system_handler.h",
      "webui/signin/inline_login_handler_impl.cc",
      "webui/signin/inline_login_handler_impl.h",
      "webui/signin/profile_creation_customize_themes_handler.cc",
      "webui/signin/profile_creation_customize_themes_handler.h",
      "webui/signin/profile_picker_handler.cc",
      "webui/signin/profile_picker_handler.h",
      "webui/signin/profile_picker_ui.cc",
      "webui/signin/profile_picker_ui.h",
      "webui/signin/signin_create_profile_handler.cc",
      "webui/signin/signin_create_profile_handler.h",
      "webui/signin/signin_email_confirmation_dialog.cc",
      "webui/signin/signin_email_confirmation_dialog.h",
      "webui/signin/signin_email_confirmation_ui.cc",
      "webui/signin/signin_email_confirmation_ui.h",
      "webui/signin/signin_error_handler.cc",
      "webui/signin/signin_error_handler.h",
      "webui/signin/signin_error_ui.cc",
      "webui/signin/signin_error_ui.h",
      "webui/signin/signin_reauth_handler.cc",
      "webui/signin/signin_reauth_handler.h",
      "webui/signin/signin_reauth_ui.cc",
      "webui/signin/signin_reauth_ui.h",
      "webui/signin/signin_utils_desktop.cc",
      "webui/signin/signin_utils_desktop.h",
      "webui/signin/user_manager_screen_handler.cc",
      "webui/signin/user_manager_screen_handler.h",
      "webui/signin/user_manager_ui.cc",
      "webui/signin/user_manager_ui.h",
      "webui/welcome/bookmark_handler.cc",
      "webui/welcome/bookmark_handler.h",
      "webui/welcome/bookmark_item.cc",
      "webui/welcome/bookmark_item.h",
      "webui/welcome/google_apps_handler.cc",
      "webui/welcome/google_apps_handler.h",
      "webui/welcome/helpers.cc",
      "webui/welcome/helpers.h",
      "webui/welcome/ntp_background_fetcher.cc",
      "webui/welcome/ntp_background_fetcher.h",
      "webui/welcome/ntp_background_handler.cc",
      "webui/welcome/ntp_background_handler.h",
      "webui/welcome/set_as_default_handler.cc",
      "webui/welcome/set_as_default_handler.h",
      "webui/welcome/welcome_handler.cc",
      "webui/welcome/welcome_handler.h",
      "webui/welcome/welcome_ui.cc",
      "webui/welcome/welcome_ui.h",
    ]

    deps += [ "//components/country_codes" ]

    if (enable_dice_support) {
      sources += [
        "signin/dice_web_signin_interceptor_delegate.cc",
        "signin/dice_web_signin_interceptor_delegate.h",
        "views/profiles/dice_web_signin_interception_bubble_view.cc",
        "views/profiles/dice_web_signin_interception_bubble_view.h",
        "webui/signin/dice_turn_sync_on_helper.cc",
        "webui/signin/dice_turn_sync_on_helper.h",
        "webui/signin/dice_turn_sync_on_helper_delegate_impl.cc",
        "webui/signin/dice_turn_sync_on_helper_delegate_impl.h",
        "webui/signin/dice_web_signin_intercept_handler.cc",
        "webui/signin/dice_web_signin_intercept_handler.h",
        "webui/signin/dice_web_signin_intercept_ui.cc",
        "webui/signin/dice_web_signin_intercept_ui.h",
      ]
    }
  }

  if (is_win || is_mac) {
    sources += [
      "webui/settings/native_certificates_handler.cc",
      "webui/settings/native_certificates_handler.h",
    ]
  }

  if (is_mac) {
    sources += [
      "autofill/autofill_popup_controller_impl_mac.h",
      "autofill/autofill_popup_controller_impl_mac.mm",
      "browser_commands_mac.h",
      "browser_commands_mac.mm",
      "browser_mac.cc",
      "browser_mac.h",
      "cocoa/accelerator_utils_cocoa.mm",
      "cocoa/accelerators_cocoa.h",
      "cocoa/accelerators_cocoa.mm",
      "cocoa/applescript/apple_event_util.h",
      "cocoa/applescript/apple_event_util.mm",
      "cocoa/applescript/bookmark_folder_applescript.h",
      "cocoa/applescript/bookmark_folder_applescript.mm",
      "cocoa/applescript/bookmark_item_applescript.h",
      "cocoa/applescript/bookmark_item_applescript.mm",
      "cocoa/applescript/bookmark_node_applescript.h",
      "cocoa/applescript/bookmark_node_applescript.mm",
      "cocoa/applescript/browsercrapplication+applescript.h",
      "cocoa/applescript/browsercrapplication+applescript.mm",
      "cocoa/applescript/constants_applescript.h",
      "cocoa/applescript/constants_applescript.mm",
      "cocoa/applescript/element_applescript.h",
      "cocoa/applescript/element_applescript.mm",
      "cocoa/applescript/error_applescript.h",
      "cocoa/applescript/error_applescript.mm",
      "cocoa/applescript/metrics_applescript.h",
      "cocoa/applescript/metrics_applescript.mm",
      "cocoa/applescript/tab_applescript.h",
      "cocoa/applescript/tab_applescript.mm",
      "cocoa/applescript/window_applescript.h",
      "cocoa/applescript/window_applescript.mm",
      "cocoa/apps/app_shim_menu_controller_mac.h",
      "cocoa/apps/app_shim_menu_controller_mac.mm",
      "cocoa/apps/quit_with_apps_controller_mac.cc",
      "cocoa/apps/quit_with_apps_controller_mac.h",
      "cocoa/apps/titlebar_background_view.h",
      "cocoa/apps/titlebar_background_view.mm",
      "cocoa/bookmarks/bookmark_menu_bridge.h",
      "cocoa/bookmarks/bookmark_menu_bridge.mm",
      "cocoa/bookmarks/bookmark_menu_cocoa_controller.h",
      "cocoa/bookmarks/bookmark_menu_cocoa_controller.mm",
      "cocoa/browser_window_command_handler.h",
      "cocoa/browser_window_command_handler.mm",
      "cocoa/chrome_command_dispatcher_delegate.h",
      "cocoa/chrome_command_dispatcher_delegate.mm",
      "cocoa/color_chooser_mac.h",
      "cocoa/color_chooser_mac.mm",
      "cocoa/confirm_quit.cc",
      "cocoa/confirm_quit.h",
      "cocoa/confirm_quit_panel_controller.h",
      "cocoa/confirm_quit_panel_controller.mm",
      "cocoa/dock_icon.h",
      "cocoa/dock_icon.mm",
      "cocoa/first_run_dialog.h",
      "cocoa/first_run_dialog.mm",
      "cocoa/first_run_dialog_controller.h",
      "cocoa/first_run_dialog_controller.mm",
      "cocoa/fullscreen/fullscreen_menubar_tracker.h",
      "cocoa/fullscreen/fullscreen_menubar_tracker.mm",
      "cocoa/fullscreen/fullscreen_toolbar_animation_controller.h",
      "cocoa/fullscreen/fullscreen_toolbar_animation_controller.mm",
      "cocoa/fullscreen/fullscreen_toolbar_controller.h",
      "cocoa/fullscreen/fullscreen_toolbar_controller.mm",
      "cocoa/fullscreen/fullscreen_toolbar_mouse_tracker.h",
      "cocoa/fullscreen/fullscreen_toolbar_mouse_tracker.mm",
      "cocoa/handoff_active_url_observer.cc",
      "cocoa/handoff_active_url_observer.h",
      "cocoa/handoff_active_url_observer_bridge.h",
      "cocoa/handoff_active_url_observer_bridge.mm",
      "cocoa/handoff_active_url_observer_delegate.h",
      "cocoa/history_menu_bridge.h",
      "cocoa/history_menu_bridge.mm",
      "cocoa/history_menu_cocoa_controller.h",
      "cocoa/history_menu_cocoa_controller.mm",
      "cocoa/history_overlay_controller.h",
      "cocoa/history_overlay_controller.mm",
      "cocoa/javascript_app_modal_dialog_cocoa.h",
      "cocoa/javascript_app_modal_dialog_cocoa.mm",
      "cocoa/key_equivalent_constants.h",
      "cocoa/key_equivalent_constants.mm",
      "cocoa/keystone_infobar_delegate.h",
      "cocoa/keystone_infobar_delegate.mm",
      "cocoa/l10n_util.h",
      "cocoa/l10n_util.mm",
      "cocoa/last_active_browser_cocoa.cc",
      "cocoa/last_active_browser_cocoa.h",
      "cocoa/main_menu_builder.h",
      "cocoa/main_menu_builder.mm",
      "cocoa/main_menu_item.h",
      "cocoa/native_window_tracker_cocoa.h",
      "cocoa/native_window_tracker_cocoa.mm",
      "cocoa/nsmenuitem_additions.h",
      "cocoa/nsmenuitem_additions.mm",
      "cocoa/profiles/profile_menu_controller.h",
      "cocoa/profiles/profile_menu_controller.mm",
      "cocoa/renderer_context_menu/render_view_context_menu_mac.h",
      "cocoa/renderer_context_menu/render_view_context_menu_mac.mm",
      "cocoa/renderer_context_menu/render_view_context_menu_mac_cocoa.h",
      "cocoa/renderer_context_menu/render_view_context_menu_mac_cocoa.mm",
      "cocoa/rosetta_required_infobar_delegate.h",
      "cocoa/rosetta_required_infobar_delegate.mm",
      "cocoa/scoped_menu_bar_lock.h",
      "cocoa/scoped_menu_bar_lock.mm",
      "cocoa/share_menu_controller.h",
      "cocoa/share_menu_controller.mm",
      "cocoa/simple_message_box_cocoa.h",
      "cocoa/simple_message_box_cocoa.mm",
      "cocoa/status_icons/status_icon_mac.h",
      "cocoa/status_icons/status_icon_mac.mm",
      "cocoa/status_icons/status_tray_mac.h",
      "cocoa/status_icons/status_tray_mac.mm",
      "cocoa/tab_contents/chrome_web_contents_view_delegate_mac.h",
      "cocoa/tab_contents/chrome_web_contents_view_delegate_mac.mm",
      "cocoa/tab_contents/web_drag_bookmark_handler_mac.h",
      "cocoa/tab_contents/web_drag_bookmark_handler_mac.mm",
      "cocoa/tab_menu_bridge.h",
      "cocoa/tab_menu_bridge.mm",
      "cocoa/task_manager_mac.h",
      "cocoa/task_manager_mac.mm",
      "cocoa/touchbar/browser_window_default_touch_bar.h",
      "cocoa/touchbar/browser_window_default_touch_bar.mm",
      "cocoa/touchbar/browser_window_touch_bar_controller.h",
      "cocoa/touchbar/browser_window_touch_bar_controller.mm",
      "cocoa/touchbar/credit_card_autofill_touch_bar_controller.h",
      "cocoa/touchbar/credit_card_autofill_touch_bar_controller.mm",
      "cocoa/touchbar/web_textfield_touch_bar_controller.h",
      "cocoa/touchbar/web_textfield_touch_bar_controller.mm",
      "cocoa/window_size_autosaver.h",
      "cocoa/window_size_autosaver.mm",
      "content_settings/media_authorization_wrapper_test.h",
      "content_settings/media_authorization_wrapper_test.mm",
      "find_bar/find_bar_platform_helper_mac.mm",
      "startup/mac_system_infobar_delegate.cc",
      "startup/mac_system_infobar_delegate.h",
      "views/apps/chrome_app_window_client_views_mac.mm",
      "views/certificate_viewer_mac_views.mm",
      "views/dropdown_bar_host_mac.mm",
      "views/frame/browser_frame_mac.h",
      "views/frame/browser_frame_mac.mm",
      "views/frame/browser_non_client_frame_view_factory_mac.mm",
      "views/frame/browser_non_client_frame_view_mac.h",
      "views/frame/browser_non_client_frame_view_mac.mm",
      "views/frame/immersive_mode_controller_mac.h",
      "views/frame/immersive_mode_controller_mac.mm",
      "views/frame/native_browser_frame_factory_mac.mm",
      "views/tab_contents/chrome_web_contents_view_delegate_views_mac.h",
      "views/tab_contents/chrome_web_contents_view_delegate_views_mac.mm",
      "webui/help/version_updater_mac.h",
      "webui/help/version_updater_mac.mm",
      "webui/settings_utils_mac.mm",
      "window_sizer/window_sizer_mac.mm",
    ]

    allow_circular_includes_from += [ "//chrome/browser/apps/app_shim" ]

    deps += [
      "//chrome/browser/apps/app_shim",
      "//components/remote_cocoa/app_shim",
      "//components/remote_cocoa/browser",
      "//third_party/google_toolbox_for_mac",
      "//third_party/mozilla",
      "//third_party/widevine/cdm:buildflags",
      "//ui/accelerated_widget_mac:accelerated_widget_mac",
    ]

    if (enable_extensions) {
      deps += [
        "//extensions/components/native_app_window",
      ]
    }
    include_dirs = [ "$target_gen_dir" ]
    frameworks = [
      "Carbon.framework",
      "Quartz.framework",
    ]
  }

  if (is_win && toolkit_views) {
    assert(toolkit_views)
    assert(use_aura)
    sources += [
      "network_profile_bubble.cc",
      "network_profile_bubble.h",
      "pdf/adobe_reader_info_win.cc",
      "pdf/adobe_reader_info_win.h",
      "startup/credential_provider_signin_dialog_win.cc",
      "startup/credential_provider_signin_dialog_win.h",
      "startup/credential_provider_signin_info_fetcher_win.cc",
      "startup/credential_provider_signin_info_fetcher_win.h",
      "views/apps/app_window_desktop_native_widget_aura_win.cc",
      "views/apps/app_window_desktop_native_widget_aura_win.h",
      "views/apps/app_window_desktop_window_tree_host_win.cc",
      "views/apps/app_window_desktop_window_tree_host_win.h",
      "views/apps/chrome_app_window_client_views_win.cc",
      "views/apps/chrome_native_app_window_views_win.cc",
      "views/apps/chrome_native_app_window_views_win.h",
      "views/apps/glass_app_window_frame_view_win.cc",
      "views/apps/glass_app_window_frame_view_win.h",
      "views/certificate_viewer_win.cc",
      "views/chrome_cleaner_dialog_win.cc",
      "views/chrome_cleaner_dialog_win.h",
      "views/chrome_cleaner_reboot_dialog_win.cc",
      "views/chrome_cleaner_reboot_dialog_win.h",
      "views/color_chooser_dialog.cc",
      "views/color_chooser_dialog.h",
      "views/color_chooser_win.cc",
      "views/critical_notification_bubble_view.cc",
      "views/critical_notification_bubble_view.h",
      "views/frame/browser_desktop_window_tree_host.h",
      "views/frame/browser_desktop_window_tree_host_win.cc",
      "views/frame/browser_desktop_window_tree_host_win.h",
      "views/frame/browser_window_property_manager_win.cc",
      "views/frame/browser_window_property_manager_win.h",
      "views/frame/glass_browser_caption_button_container.cc",
      "views/frame/glass_browser_caption_button_container.h",
      "views/frame/glass_browser_frame_view.cc",
      "views/frame/glass_browser_frame_view.h",
      "views/frame/minimize_button_metrics_win.cc",
      "views/frame/minimize_button_metrics_win.h",
      "views/frame/native_browser_frame_factory_aurawin.cc",
      "views/frame/system_menu_insertion_delegate_win.cc",
      "views/frame/system_menu_insertion_delegate_win.h",
      "views/frame/windows_10_caption_button.cc",
      "views/frame/windows_10_caption_button.h",
      "views/network_profile_bubble_view.cc",
      "views/settings_reset_prompt_dialog.cc",
      "views/settings_reset_prompt_dialog.h",
      "views/status_icons/status_icon_win.cc",
      "views/status_icons/status_icon_win.h",
      "views/status_icons/status_tray_state_changer_win.cc",
      "views/status_icons/status_tray_state_changer_win.h",
      "views/status_icons/status_tray_win.cc",
      "views/status_icons/status_tray_win.h",
      "views/try_chrome_dialog_win/arrow_border.cc",
      "views/try_chrome_dialog_win/arrow_border.h",
      "views/try_chrome_dialog_win/button_layout.cc",
      "views/try_chrome_dialog_win/button_layout.h",
      "views/try_chrome_dialog_win/try_chrome_dialog.cc",
      "views/try_chrome_dialog_win/try_chrome_dialog.h",
      "views/uninstall_view.cc",
      "views/uninstall_view.h",
      "webui/conflicts/conflicts_data_fetcher.cc",
      "webui/conflicts/conflicts_data_fetcher.h",
      "webui/conflicts/conflicts_handler.cc",
      "webui/conflicts/conflicts_handler.h",
      "webui/conflicts/conflicts_ui.cc",
      "webui/conflicts/conflicts_ui.h",
      "webui/settings/chrome_cleanup_handler_win.cc",
      "webui/settings/chrome_cleanup_handler_win.h",
      "webui/settings_utils_win.cc",
      "webui/version_handler_win.cc",
      "webui/version_handler_win.h",
      "webui/version_util_win.cc",
      "webui/version_util_win.h",
    ]
    public_deps += [
      "//ui/views",
      "//ui/views/controls/webview",
    ]
    deps += [
      "//chrome/browser/safe_browsing/chrome_cleaner:public",
      "//chrome/browser/ui/startup:buildflags",
      "//chrome/browser/win/conflicts:module_info",
      "//chrome/credential_provider/common:common_constants",
      "//chrome/services/util_win/public/mojom:mojom",
      "//components/search_engines",
      "//third_party/iaccessible2",
      "//third_party/isimpledom",
      "//third_party/libphonenumber",
      "//third_party/wtl",
      "//ui/aura",
      "//ui/base/ime",
      "//ui/events:dom_keycode_converter",
    ]
    libs += [ "crypt32.lib" ]

    if (is_chrome_branded) {
      sources += [
        "webui/help/version_updater_win.cc",
        "webui/help/version_updater_win.h",
        "webui/settings/incompatible_applications_handler_win.cc",
        "webui/settings/incompatible_applications_handler_win.h",
      ]
      deps += [ "//google_update" ]
    } else {
      sources += [
        "webui/help/version_updater_basic.cc",
        "webui/help/version_updater_basic.h",
      ]
    }
  } else {  # 'OS!="win"
    # The Cast Linux build sets toolkit_views to false, but many files in this
    # target include views-related files unconditionally, causing `gn check`
    # to fail on this variant. Since this target is only referenced (but not
    # compiled) on this variant, it's okay to add this "incorrect" dependency
    # to Cast Linux builds so that `gn check` passes.
    if (toolkit_views || (is_chromecast && (is_linux || is_chromeos))) {
      public_deps += [
        "//ui/views",
        "//ui/views/controls/webview",
      ]
    }
  }

  if (is_desktop_linux) {
    sources += [
      "views/apps/chrome_app_window_client_views_linux.cc",
      "views/first_run_dialog.cc",
      "views/first_run_dialog.h",
      "views/frame/browser_desktop_window_tree_host.h",
      "views/frame/desktop_browser_frame_aura_linux.cc",
      "views/frame/desktop_browser_frame_aura_linux.h",
      "views/status_icons/status_icon_button_linux.cc",
      "views/status_icons/status_icon_button_linux.h",
      "views/status_icons/status_icon_linux_wrapper.cc",
      "views/status_icons/status_icon_linux_wrapper.h",
      "webui/help/version_updater_basic.cc",
      "webui/help/version_updater_basic.h",
      "webui/settings_utils_linux.cc",
    ]
    deps += [
      "//ui/base:wm_role_names",
      "//ui/base/ime",
      "//ui/events:dom_keycode_converter",
      "//ui/platform_window",
    ]

    if (use_dbus) {
      sources += [
        "views/status_icons/concat_menu_model.cc",
        "views/status_icons/concat_menu_model.h",
        "views/status_icons/status_icon_linux_dbus.cc",
        "views/status_icons/status_icon_linux_dbus.h",
      ]
      defines += [ "USE_DBUS" ]
      deps += [
        "//components/dbus/menu",
        "//components/dbus/thread_linux",
      ]
    }

    if (use_dbus && (use_x11 || ozone_platform_x11)) {
      sources += [
        "views/frame/dbus_appmenu.cc",
        "views/frame/dbus_appmenu.h",
        "views/frame/dbus_appmenu_registrar.cc",
        "views/frame/dbus_appmenu_registrar.h",
      ]
      defines += [ "USE_DBUS_MENU" ]
      deps += [ "//ui/gfx/x" ]
    }

    if (use_x11) {
      sources += [ "views/frame/native_browser_frame_factory_aurax11.cc" ]
      deps += [
        "//ui/events/devices",
        "//ui/events/devices/x11",
        "//ui/events/platform/x11",
      ]
    }
    if (use_ozone) {
      if (!is_desktop_linux) {
        sources += [
          "views/frame/browser_desktop_window_tree_host_platform.cc",
          "views/frame/browser_desktop_window_tree_host_platform.h",
        ]
      }
      sources += [ "views/frame/native_browser_frame_factory_ozone.cc" ]
    }
    if (is_desktop_linux) {
      sources += [
        "views/frame/browser_desktop_window_tree_host_linux.cc",
        "views/frame/browser_desktop_window_tree_host_linux.h",
      ]
    }
    if (use_gtk) {
      # This is the only component that can interact with gtk.
      deps += [ "//ui/gtk" ]
    }
  }

  if (is_linux || is_chromeos) {  # Both desktop Linux and ChromeOS.
    sources += [
      "certificate_dialogs.cc",
      "certificate_dialogs.h",
      "process_singleton_dialog_linux.h",
      "webui/certificate_viewer_ui.cc",
      "webui/certificate_viewer_ui.h",
      "webui/certificate_viewer_webui.cc",
      "webui/certificate_viewer_webui.h",
    ]
    if (use_aura) {
      deps += [ "//third_party/fontconfig" ]
    }
  }

  if (toolkit_views) {
    sources += [
      "autofill/payments/local_card_migration_bubble.h",
      "autofill/payments/local_card_migration_bubble_controller_impl.cc",
      "autofill/payments/local_card_migration_bubble_controller_impl.h",
      "autofill/payments/local_card_migration_controller_observer.h",
      "autofill/payments/local_card_migration_dialog.h",
      "autofill/payments/local_card_migration_dialog_controller_impl.cc",
      "autofill/payments/local_card_migration_dialog_controller_impl.h",
      "autofill/payments/local_card_migration_dialog_factory.h",
      "autofill/payments/local_card_migration_dialog_state.h",
      "autofill/payments/manage_migration_ui_controller.cc",
      "autofill/payments/manage_migration_ui_controller.h",
      "autofill/payments/save_card_bubble_controller.h",
      "autofill/payments/save_card_bubble_controller_impl.cc",
      "autofill/payments/save_card_bubble_controller_impl.h",
      "autofill/payments/save_card_bubble_view.h",
      "autofill/payments/save_card_ui.h",
      "autofill/payments/save_payment_icon_controller.cc",
      "autofill/payments/save_payment_icon_controller.h",
      "autofill/payments/save_upi_bubble.h",
      "autofill/payments/save_upi_bubble_controller.h",
      "autofill/payments/save_upi_bubble_controller_impl.cc",
      "autofill/payments/save_upi_bubble_controller_impl.h",
      "bubble_anchor_util.h",
      "manifest_web_app_browser_controller.cc",
      "manifest_web_app_browser_controller.h",
      "qrcode_generator/qrcode_generator_bubble_controller.cc",
      "qrcode_generator/qrcode_generator_bubble_controller.h",
      "qrcode_generator/qrcode_generator_bubble_view.h",
      "send_tab_to_self/send_tab_to_self_bubble_controller.cc",
      "send_tab_to_self/send_tab_to_self_bubble_controller.h",
      "send_tab_to_self/send_tab_to_self_bubble_view.h",

      # This test header is included because it contains forward declarations
      # needed for "friend" statements for use in tests.
      "translate/translate_bubble_test_utils.h",
      "views/accessibility/caption_bubble.cc",
      "views/accessibility/caption_bubble.h",
      "views/accessibility/caption_bubble_controller_views.cc",
      "views/accessibility/caption_bubble_controller_views.h",
      "views/accessibility/caption_bubble_model.cc",
      "views/accessibility/caption_bubble_model.h",
      "views/accessibility/caret_browsing_dialog_delegate.cc",
      "views/accessibility/caret_browsing_dialog_delegate.h",
      "views/accessibility/invert_bubble_view.cc",
      "views/accessibility/invert_bubble_view.h",
      "views/accessibility/non_accessible_image_view.cc",
      "views/accessibility/non_accessible_image_view.h",
      "views/apps/app_dialog/app_dialog_view.cc",
      "views/apps/app_dialog/app_dialog_view.h",
      "views/apps/app_dialog/app_uninstall_dialog_view.cc",
      "views/apps/app_dialog/app_uninstall_dialog_view.h",
      "views/apps/app_info_dialog/app_info_dialog_container.cc",
      "views/apps/app_info_dialog/app_info_dialog_container.h",
      "views/apps/app_info_dialog/app_info_dialog_views.cc",
      "views/apps/app_info_dialog/app_info_dialog_views.h",
      "views/apps/app_info_dialog/app_info_footer_panel.cc",
      "views/apps/app_info_dialog/app_info_footer_panel.h",
      "views/apps/app_info_dialog/app_info_header_panel.cc",
      "views/apps/app_info_dialog/app_info_header_panel.h",
      "views/apps/app_info_dialog/app_info_label.cc",
      "views/apps/app_info_dialog/app_info_label.h",
      "views/apps/app_info_dialog/app_info_panel.cc",
      "views/apps/app_info_dialog/app_info_panel.h",
      "views/apps/app_info_dialog/app_info_permissions_panel.cc",
      "views/apps/app_info_dialog/app_info_permissions_panel.h",
      "views/apps/app_info_dialog/app_info_summary_panel.cc",
      "views/apps/app_info_dialog/app_info_summary_panel.h",
      "views/apps/chrome_native_app_window_views.cc",
      "views/apps/chrome_native_app_window_views.h",
      "views/autofill/autofill_bubble_handler_impl.cc",
      "views/autofill/autofill_bubble_handler_impl.h",
      "views/autofill/autofill_popup_base_view.cc",
      "views/autofill/autofill_popup_base_view.h",
      "views/autofill/autofill_popup_view_native_views.cc",
      "views/autofill/autofill_popup_view_native_views.h",
      "views/autofill/autofill_popup_view_utils.cc",
      "views/autofill/autofill_popup_view_utils.h",
      "views/autofill/payments/card_unmask_prompt_views.cc",
      "views/autofill/payments/card_unmask_prompt_views.h",
      "views/autofill/payments/dialog_view_ids.h",
      "views/autofill/payments/local_card_migration_bubble_views.cc",
      "views/autofill/payments/local_card_migration_bubble_views.h",
      "views/autofill/payments/local_card_migration_dialog_view.cc",
      "views/autofill/payments/local_card_migration_dialog_view.h",
      "views/autofill/payments/local_card_migration_error_dialog_view.cc",
      "views/autofill/payments/local_card_migration_error_dialog_view.h",
      "views/autofill/payments/local_card_migration_icon_view.cc",
      "views/autofill/payments/local_card_migration_icon_view.h",
      "views/autofill/payments/migratable_card_view.cc",
      "views/autofill/payments/migratable_card_view.h",
      "views/autofill/payments/payments_view_util.cc",
      "views/autofill/payments/payments_view_util.h",
      "views/autofill/payments/save_card_bubble_views.cc",
      "views/autofill/payments/save_card_bubble_views.h",
      "views/autofill/payments/save_card_failure_bubble_views.cc",
      "views/autofill/payments/save_card_failure_bubble_views.h",
      "views/autofill/payments/save_card_manage_cards_bubble_views.cc",
      "views/autofill/payments/save_card_manage_cards_bubble_views.h",
      "views/autofill/payments/save_card_offer_bubble_views.cc",
      "views/autofill/payments/save_card_offer_bubble_views.h",
      "views/autofill/payments/save_card_sign_in_promo_bubble_views.cc",
      "views/autofill/payments/save_card_sign_in_promo_bubble_views.h",
      "views/autofill/payments/save_payment_icon_view.cc",
      "views/autofill/payments/save_payment_icon_view.h",
      "views/autofill/payments/save_upi_offer_bubble_views.cc",
      "views/autofill/payments/save_upi_offer_bubble_views.h",
      "views/bookmarks/bookmark_bar_view.cc",
      "views/bookmarks/bookmark_bar_view.h",
      "views/bookmarks/bookmark_bar_view_observer.h",
      "views/bookmarks/bookmark_bubble_view.cc",
      "views/bookmarks/bookmark_bubble_view.h",
      "views/bookmarks/bookmark_context_menu.cc",
      "views/bookmarks/bookmark_context_menu.h",
      "views/bookmarks/bookmark_drag_drop_views.cc",
      "views/bookmarks/bookmark_editor_view.cc",
      "views/bookmarks/bookmark_editor_view.h",
      "views/bookmarks/bookmark_menu_controller_observer.h",
      "views/bookmarks/bookmark_menu_controller_views.cc",
      "views/bookmarks/bookmark_menu_controller_views.h",
      "views/bookmarks/bookmark_menu_delegate.cc",
      "views/bookmarks/bookmark_menu_delegate.h",
      "views/browser_commands_views.cc",
      "views/browser_dialogs_views.cc",
      "views/bubble_anchor_util_views.cc",
      "views/bubble_anchor_util_views.h",
      "views/bubble_menu_item_factory.cc",
      "views/bubble_menu_item_factory.h",
      "views/bulleted_label_list_view.cc",
      "views/bulleted_label_list_view.h",
      "views/certificate_selector.cc",
      "views/certificate_selector.h",
      "views/chrome_browser_main_extra_parts_views.cc",
      "views/chrome_browser_main_extra_parts_views.h",
      "views/chrome_constrained_window_views_client.cc",
      "views/chrome_constrained_window_views_client.h",
      "views/chrome_layout_provider.cc",
      "views/chrome_layout_provider.h",
      "views/chrome_typography.cc",
      "views/chrome_typography.h",
      "views/chrome_typography_provider.cc",
      "views/chrome_typography_provider.h",
      "views/chrome_view_class_properties.cc",
      "views/chrome_view_class_properties.h",
      "views/chrome_views_delegate.cc",
      "views/chrome_views_delegate.h",
      "views/chrome_web_dialog_view.cc",
      "views/chrome_web_dialog_view.h",
      "views/collected_cookies_views.cc",
      "views/collected_cookies_views.h",
      "views/commander_frontend_views.cc",
      "views/commander_frontend_views.h",
      "views/confirm_bubble_views.cc",
      "views/confirm_bubble_views.h",
      "views/constrained_web_dialog_delegate_views.cc",
      "views/content_setting_bubble_contents.cc",
      "views/content_setting_bubble_contents.h",
      "views/content_setting_domain_list_view.cc",
      "views/content_setting_domain_list_view.h",
      "views/cookie_info_view.cc",
      "views/cookie_info_view.h",
      "views/desktop_capture/desktop_media_list_controller.cc",
      "views/desktop_capture/desktop_media_list_controller.h",
      "views/desktop_capture/desktop_media_list_view.cc",
      "views/desktop_capture/desktop_media_list_view.h",
      "views/desktop_capture/desktop_media_picker_views.cc",
      "views/desktop_capture/desktop_media_picker_views.h",
      "views/desktop_capture/desktop_media_source_view.cc",
      "views/desktop_capture/desktop_media_source_view.h",
      "views/desktop_capture/desktop_media_tab_list.cc",
      "views/desktop_capture/desktop_media_tab_list.h",
      "views/device_chooser_content_view.cc",
      "views/device_chooser_content_view.h",
      "views/devtools_process_observer.cc",
      "views/devtools_process_observer.h",
      "views/download/download_danger_prompt_views.cc",
      "views/download/download_in_progress_dialog_view.cc",
      "views/download/download_in_progress_dialog_view.h",
      "views/download/download_item_view.cc",
      "views/download/download_item_view.h",
      "views/download/download_shelf_context_menu_view.cc",
      "views/download/download_shelf_context_menu_view.h",
      "views/download/download_shelf_view.cc",
      "views/download/download_shelf_view.h",
      "views/download/download_started_animation_views.cc",
      "views/dropdown_bar_host.cc",
      "views/dropdown_bar_host.h",
      "views/dropdown_bar_host_delegate.h",
      "views/elevation_icon_setter.cc",
      "views/elevation_icon_setter.h",
      "views/exclusive_access_bubble_views.cc",
      "views/exclusive_access_bubble_views.h",
      "views/exclusive_access_bubble_views_context.h",
      "views/extensions/chooser_dialog_view.cc",
      "views/extensions/chooser_dialog_view.h",
      "views/extensions/expandable_container_view.cc",
      "views/extensions/expandable_container_view.h",
      "views/extensions/extension_context_menu_controller.cc",
      "views/extensions/extension_context_menu_controller.h",
      "views/extensions/extension_install_blocked_dialog_view.cc",
      "views/extensions/extension_install_blocked_dialog_view.h",
      "views/extensions/extension_install_dialog_view.cc",
      "views/extensions/extension_install_dialog_view.h",
      "views/extensions/extension_installed_bubble_view.cc",
      "views/extensions/extension_keybinding_registry_views.cc",
      "views/extensions/extension_keybinding_registry_views.h",
      "views/extensions/extension_permissions_view.cc",
      "views/extensions/extension_permissions_view.h",
      "views/extensions/extension_uninstall_dialog_view.cc",
      "views/extensions/extensions_menu_button.cc",
      "views/extensions/extensions_menu_button.h",
      "views/extensions/extensions_menu_item_view.cc",
      "views/extensions/extensions_menu_item_view.h",
      "views/extensions/extensions_menu_view.cc",
      "views/extensions/extensions_menu_view.h",
      "views/extensions/extensions_toolbar_button.cc",
      "views/extensions/extensions_toolbar_button.h",
      "views/extensions/extensions_toolbar_container.cc",
      "views/extensions/extensions_toolbar_container.h",
      "views/find_bar_host.cc",
      "views/find_bar_host.h",
      "views/find_bar_view.cc",
      "views/find_bar_view.h",
      "views/flying_indicator.cc",
      "views/flying_indicator.h",
      "views/folder_upload_confirmation_view.cc",
      "views/folder_upload_confirmation_view.h",
      "views/frame/app_menu_button.cc",
      "views/frame/app_menu_button.h",
      "views/frame/app_menu_button_observer.h",
      "views/frame/browser_frame.cc",
      "views/frame/browser_frame.h",
      "views/frame/browser_non_client_frame_view.cc",
      "views/frame/browser_non_client_frame_view.h",
      "views/frame/browser_root_view.cc",
      "views/frame/browser_root_view.h",
      "views/frame/browser_view.cc",
      "views/frame/browser_view.h",
      "views/frame/browser_view_layout.cc",
      "views/frame/browser_view_layout.h",
      "views/frame/browser_view_layout_delegate.h",
      "views/frame/browser_window_factory.cc",
      "views/frame/contents_layout_manager.cc",
      "views/frame/contents_layout_manager.h",
      "views/frame/contents_web_view.cc",
      "views/frame/contents_web_view.h",
      "views/frame/immersive_mode_controller.cc",
      "views/frame/immersive_mode_controller.h",
      "views/frame/immersive_mode_controller_factory_views.cc",
      "views/frame/immersive_mode_controller_stub.cc",
      "views/frame/immersive_mode_controller_stub.h",
      "views/frame/native_browser_frame.h",
      "views/frame/native_browser_frame_factory.cc",
      "views/frame/native_browser_frame_factory.h",
      "views/frame/system_menu_model_builder.cc",
      "views/frame/system_menu_model_builder.h",
      "views/frame/system_menu_model_delegate.cc",
      "views/frame/system_menu_model_delegate.h",
      "views/frame/tab_strip_region_view.cc",
      "views/frame/tab_strip_region_view.h",
      "views/frame/toolbar_button_provider.h",
      "views/frame/top_container_background.cc",
      "views/frame/top_container_background.h",
      "views/frame/top_container_loading_bar.cc",
      "views/frame/top_container_loading_bar.h",
      "views/frame/top_container_view.cc",
      "views/frame/top_container_view.h",
      "views/frame/top_controls_slide_controller.h",
      "views/frame/web_contents_close_handler.cc",
      "views/frame/web_contents_close_handler.h",
      "views/frame/web_contents_close_handler_delegate.h",
      "views/frame/web_footer_experiment_view.cc",
      "views/frame/web_footer_experiment_view.h",
      "views/fullscreen_control/fullscreen_control_host.cc",
      "views/fullscreen_control/fullscreen_control_host.h",
      "views/fullscreen_control/fullscreen_control_popup.cc",
      "views/fullscreen_control/fullscreen_control_popup.h",
      "views/fullscreen_control/fullscreen_control_view.cc",
      "views/fullscreen_control/fullscreen_control_view.h",
      "views/global_error_bubble_view.cc",
      "views/global_error_bubble_view.h",
      "views/global_media_controls/media_dialog_view.cc",
      "views/global_media_controls/media_dialog_view.h",
      "views/global_media_controls/media_dialog_view_observer.h",
      "views/global_media_controls/media_notification_container_impl_view.cc",
      "views/global_media_controls/media_notification_container_impl_view.h",
      "views/global_media_controls/media_notification_device_entry_ui.cc",
      "views/global_media_controls/media_notification_device_entry_ui.h",
      "views/global_media_controls/media_notification_device_selector_view.cc",
      "views/global_media_controls/media_notification_device_selector_view.h",
      "views/global_media_controls/media_notification_device_selector_view_delegate.h",
      "views/global_media_controls/media_notification_list_view.cc",
      "views/global_media_controls/media_notification_list_view.h",
      "views/global_media_controls/media_toolbar_button_view.cc",
      "views/global_media_controls/media_toolbar_button_view.h",
      "views/global_media_controls/overlay_media_notification_view.cc",
      "views/global_media_controls/overlay_media_notification_view.h",
      "views/hover_button.cc",
      "views/hover_button.h",
      "views/hover_button_controller.cc",
      "views/hover_button_controller.h",
      "views/hung_renderer_view.cc",
      "views/hung_renderer_view.h",
      "views/importer/import_lock_dialog_view.cc",
      "views/importer/import_lock_dialog_view.h",
      "views/in_product_help/feature_promo_bubble_params.cc",
      "views/in_product_help/feature_promo_bubble_params.h",
      "views/in_product_help/feature_promo_bubble_timeout.cc",
      "views/in_product_help/feature_promo_bubble_timeout.h",
      "views/in_product_help/feature_promo_bubble_view.cc",
      "views/in_product_help/feature_promo_bubble_view.h",
      "views/in_product_help/feature_promo_colors.cc",
      "views/in_product_help/feature_promo_colors.h",
      "views/in_product_help/feature_promo_controller_views.cc",
      "views/in_product_help/feature_promo_controller_views.h",
      "views/in_product_help/feature_promo_registry.cc",
      "views/in_product_help/feature_promo_registry.h",
      "views/in_product_help/reopen_tab_promo_controller.cc",
      "views/in_product_help/reopen_tab_promo_controller.h",
      "views/infobars/alternate_nav_infobar_view.cc",
      "views/infobars/alternate_nav_infobar_view.h",
      "views/infobars/confirm_infobar.cc",
      "views/infobars/confirm_infobar.h",
      "views/infobars/infobar_container_view.cc",
      "views/infobars/infobar_container_view.h",
      "views/infobars/infobar_view.cc",
      "views/infobars/infobar_view.h",
      "views/intent_picker_bubble_view.cc",
      "views/intent_picker_bubble_view.h",
      "views/javascript_tab_modal_dialog_view_views.cc",
      "views/javascript_tab_modal_dialog_view_views.h",
      "views/layout/interpolating_layout_manager.cc",
      "views/layout/interpolating_layout_manager.h",
      "views/load_complete_listener.cc",
      "views/load_complete_listener.h",
      "views/location_bar/content_setting_image_view.cc",
      "views/location_bar/content_setting_image_view.h",
      "views/location_bar/cookie_controls_bubble_view.cc",
      "views/location_bar/cookie_controls_bubble_view.h",
      "views/location_bar/cookie_controls_icon_view.cc",
      "views/location_bar/cookie_controls_icon_view.h",
      "views/location_bar/custom_tab_bar_view.cc",
      "views/location_bar/custom_tab_bar_view.h",
      "views/location_bar/find_bar_icon.cc",
      "views/location_bar/find_bar_icon.h",
      "views/location_bar/icon_label_bubble_view.cc",
      "views/location_bar/icon_label_bubble_view.h",
      "views/location_bar/intent_picker_view.cc",
      "views/location_bar/intent_picker_view.h",
      "views/location_bar/keyword_hint_view.cc",
      "views/location_bar/keyword_hint_view.h",
      "views/location_bar/location_bar_bubble_delegate_view.cc",
      "views/location_bar/location_bar_bubble_delegate_view.h",
      "views/location_bar/location_bar_layout.cc",
      "views/location_bar/location_bar_layout.h",
      "views/location_bar/location_bar_view.cc",
      "views/location_bar/location_bar_view.h",
      "views/location_bar/location_icon_view.cc",
      "views/location_bar/location_icon_view.h",
      "views/location_bar/permission_chip.cc",
      "views/location_bar/permission_chip.h",
      "views/location_bar/selected_keyword_view.cc",
      "views/location_bar/selected_keyword_view.h",
      "views/location_bar/star_menu_model.cc",
      "views/location_bar/star_menu_model.h",
      "views/location_bar/star_view.cc",
      "views/location_bar/star_view.h",
      "views/location_bar/zoom_bubble_view.cc",
      "views/location_bar/zoom_bubble_view.h",
      "views/login_handler_views.cc",
      "views/login_view.cc",
      "views/login_view.h",
      "views/md_text_button_with_down_arrow.cc",
      "views/md_text_button_with_down_arrow.h",
      "views/media_router/cast_dialog_helper.cc",
      "views/media_router/cast_dialog_helper.h",
      "views/media_router/cast_dialog_metrics.cc",
      "views/media_router/cast_dialog_metrics.h",
      "views/media_router/cast_dialog_no_sinks_view.cc",
      "views/media_router/cast_dialog_no_sinks_view.h",
      "views/media_router/cast_dialog_sink_button.cc",
      "views/media_router/cast_dialog_sink_button.h",
      "views/media_router/cast_dialog_view.cc",
      "views/media_router/cast_dialog_view.h",
      "views/media_router/cast_toolbar_button.cc",
      "views/media_router/cast_toolbar_button.h",
      "views/media_router/cloud_services_dialog_view.cc",
      "views/media_router/cloud_services_dialog_view.h",
      "views/media_router/media_remoting_dialog_view.cc",
      "views/media_router/media_remoting_dialog_view.h",
      "views/media_router/media_router_dialog_controller_views.cc",
      "views/media_router/media_router_dialog_controller_views.h",
      "views/media_router/presentation_receiver_window_factory.cc",
      "views/media_router/presentation_receiver_window_frame.cc",
      "views/media_router/presentation_receiver_window_frame.h",
      "views/media_router/presentation_receiver_window_view.cc",
      "views/media_router/presentation_receiver_window_view.h",
      "views/media_router/web_contents_display_observer_view.cc",
      "views/media_router/web_contents_display_observer_view.h",
      "views/message_box_dialog.cc",
      "views/message_box_dialog.h",
      "views/native_file_system/native_file_system_access_icon_view.cc",
      "views/native_file_system/native_file_system_access_icon_view.h",
      "views/native_file_system/native_file_system_permission_view.cc",
      "views/native_file_system/native_file_system_permission_view.h",
      "views/native_file_system/native_file_system_restricted_directory_dialog_view.cc",
      "views/native_file_system/native_file_system_restricted_directory_dialog_view.h",
      "views/native_file_system/native_file_system_ui_helpers.cc",
      "views/native_file_system/native_file_system_ui_helpers.h",
      "views/native_file_system/native_file_system_usage_bubble_view.cc",
      "views/native_file_system/native_file_system_usage_bubble_view.h",
      "views/omnibox/omnibox_match_cell_view.cc",
      "views/omnibox/omnibox_match_cell_view.h",
      "views/omnibox/omnibox_mouse_enter_exit_handler.cc",
      "views/omnibox/omnibox_mouse_enter_exit_handler.h",
      "views/omnibox/omnibox_popup_contents_view.cc",
      "views/omnibox/omnibox_popup_contents_view.h",
      "views/omnibox/omnibox_result_view.cc",
      "views/omnibox/omnibox_result_view.h",
      "views/omnibox/omnibox_row_view.cc",
      "views/omnibox/omnibox_row_view.h",
      "views/omnibox/omnibox_suggestion_button_row_view.cc",
      "views/omnibox/omnibox_suggestion_button_row_view.h",
      "views/omnibox/omnibox_tab_switch_button.cc",
      "views/omnibox/omnibox_tab_switch_button.h",
      "views/omnibox/omnibox_text_view.cc",
      "views/omnibox/omnibox_text_view.h",
      "views/omnibox/omnibox_view_views.cc",
      "views/omnibox/omnibox_view_views.h",
      "views/omnibox/remove_suggestion_bubble.cc",
      "views/omnibox/remove_suggestion_bubble.h",
      "views/omnibox/rounded_omnibox_results_frame.cc",
      "views/omnibox/rounded_omnibox_results_frame.h",
      "views/omnibox/webui_omnibox_popup_view.cc",
      "views/omnibox/webui_omnibox_popup_view.h",
      "views/overlay/back_to_tab_image_button.cc",
      "views/overlay/back_to_tab_image_button.h",
      "views/overlay/close_image_button.cc",
      "views/overlay/close_image_button.h",
      "views/overlay/overlay_window_views.cc",
      "views/overlay/overlay_window_views.h",
      "views/overlay/playback_image_button.cc",
      "views/overlay/playback_image_button.h",
      "views/overlay/resize_handle_button.cc",
      "views/overlay/resize_handle_button.h",
      "views/overlay/skip_ad_label_button.cc",
      "views/overlay/skip_ad_label_button.h",
      "views/overlay/track_image_button.cc",
      "views/overlay/track_image_button.h",
      "views/page_action/page_action_icon_container.cc",
      "views/page_action/page_action_icon_container.h",
      "views/page_action/page_action_icon_controller.cc",
      "views/page_action/page_action_icon_controller.h",
      "views/page_action/page_action_icon_loading_indicator_view.cc",
      "views/page_action/page_action_icon_loading_indicator_view.h",
      "views/page_action/page_action_icon_params.cc",
      "views/page_action/page_action_icon_params.h",
      "views/page_action/page_action_icon_view.cc",
      "views/page_action/page_action_icon_view.h",
      "views/page_action/pwa_install_view.cc",
      "views/page_action/pwa_install_view.h",
      "views/page_action/zoom_view.cc",
      "views/page_action/zoom_view.h",
      "views/page_info/chosen_object_view.cc",
      "views/page_info/chosen_object_view.h",
      "views/page_info/chosen_object_view_observer.h",
      "views/page_info/page_info_bubble_view.cc",
      "views/page_info/page_info_bubble_view.h",
      "views/page_info/page_info_bubble_view_base.cc",
      "views/page_info/page_info_bubble_view_base.h",
      "views/page_info/page_info_hover_button.cc",
      "views/page_info/page_info_hover_button.h",
      "views/page_info/permission_icon.cc",
      "views/page_info/permission_icon.h",
      "views/page_info/permission_selector_row.cc",
      "views/page_info/permission_selector_row.h",
      "views/page_info/permission_selector_row_observer.h",
      "views/page_info/safety_tip_page_info_bubble_view.cc",
      "views/page_info/safety_tip_page_info_bubble_view.h",
      "views/passwords/account_chooser_dialog_view.cc",
      "views/passwords/account_chooser_dialog_view.h",
      "views/passwords/auto_signin_first_run_dialog_view.cc",
      "views/passwords/auto_signin_first_run_dialog_view.h",
      "views/passwords/credential_leak_dialog_view.cc",
      "views/passwords/credential_leak_dialog_view.h",
      "views/passwords/credentials_item_view.cc",
      "views/passwords/credentials_item_view.h",
      "views/passwords/manage_passwords_icon_views.cc",
      "views/passwords/manage_passwords_icon_views.h",
      "views/passwords/move_to_account_store_bubble_view.cc",
      "views/passwords/move_to_account_store_bubble_view.h",
      "views/passwords/password_auto_sign_in_view.cc",
      "views/passwords/password_auto_sign_in_view.h",
      "views/passwords/password_bubble_view_base.cc",
      "views/passwords/password_bubble_view_base.h",
      "views/passwords/password_generation_confirmation_view.cc",
      "views/passwords/password_generation_confirmation_view.h",
      "views/passwords/password_generation_popup_view_views.cc",
      "views/passwords/password_generation_popup_view_views.h",
      "views/passwords/password_items_view.cc",
      "views/passwords/password_items_view.h",
      "views/passwords/password_save_unsynced_credentials_locally_view.cc",
      "views/passwords/password_save_unsynced_credentials_locally_view.h",
      "views/passwords/password_save_update_view.cc",
      "views/passwords/password_save_update_view.h",
      "views/passwords/password_save_update_with_account_store_view.cc",
      "views/passwords/password_save_update_with_account_store_view.h",
      "views/passwords/post_save_compromised_bubble_view.cc",
      "views/passwords/post_save_compromised_bubble_view.h",
      "views/payments/contact_info_editor_view_controller.cc",
      "views/payments/contact_info_editor_view_controller.h",
      "views/payments/credit_card_editor_view_controller.cc",
      "views/payments/credit_card_editor_view_controller.h",
      "views/payments/cvc_unmask_view_controller.cc",
      "views/payments/cvc_unmask_view_controller.h",
      "views/payments/editor_view_controller.cc",
      "views/payments/editor_view_controller.h",
      "views/payments/error_message_view_controller.cc",
      "views/payments/error_message_view_controller.h",
      "views/payments/order_summary_view_controller.cc",
      "views/payments/order_summary_view_controller.h",
      "views/payments/payment_handler_modal_dialog_manager_delegate.cc",
      "views/payments/payment_handler_modal_dialog_manager_delegate.h",
      "views/payments/payment_handler_web_flow_view_controller.cc",
      "views/payments/payment_handler_web_flow_view_controller.h",
      "views/payments/payment_method_view_controller.cc",
      "views/payments/payment_method_view_controller.h",
      "views/payments/payment_request_dialog_view.cc",
      "views/payments/payment_request_dialog_view.h",
      "views/payments/payment_request_dialog_view_ids.h",
      "views/payments/payment_request_item_list.cc",
      "views/payments/payment_request_item_list.h",
      "views/payments/payment_request_row_view.cc",
      "views/payments/payment_request_row_view.h",
      "views/payments/payment_request_sheet_controller.cc",
      "views/payments/payment_request_sheet_controller.h",
      "views/payments/payment_request_views_util.cc",
      "views/payments/payment_request_views_util.h",
      "views/payments/payment_sheet_view_controller.cc",
      "views/payments/payment_sheet_view_controller.h",
      "views/payments/profile_list_view_controller.cc",
      "views/payments/profile_list_view_controller.h",
      "views/payments/secure_payment_confirmation_dialog_view.cc",
      "views/payments/secure_payment_confirmation_dialog_view.h",
      "views/payments/secure_payment_confirmation_view.cc",
      "views/payments/shipping_address_editor_view_controller.cc",
      "views/payments/shipping_address_editor_view_controller.h",
      "views/payments/shipping_option_view_controller.cc",
      "views/payments/shipping_option_view_controller.h",
      "views/payments/validating_combobox.cc",
      "views/payments/validating_combobox.h",
      "views/payments/validating_textfield.cc",
      "views/payments/validating_textfield.h",
      "views/payments/validation_delegate.cc",
      "views/payments/validation_delegate.h",
      "views/payments/view_stack.cc",
      "views/payments/view_stack.h",
      "views/permission_bubble/chooser_bubble_ui.cc",
      "views/permission_bubble/permission_prompt_bubble_view.cc",
      "views/permission_bubble/permission_prompt_bubble_view.h",
      "views/permission_bubble/permission_prompt_impl.cc",
      "views/permission_bubble/permission_prompt_impl.h",
      "views/profiles/avatar_toolbar_button.cc",
      "views/profiles/avatar_toolbar_button.h",
      "views/profiles/avatar_toolbar_button_delegate.cc",
      "views/profiles/avatar_toolbar_button_delegate.h",
      "views/qrcode_generator/qrcode_generator_bubble.cc",
      "views/qrcode_generator/qrcode_generator_bubble.h",
      "views/qrcode_generator/qrcode_generator_icon_view.cc",
      "views/qrcode_generator/qrcode_generator_icon_view.h",
      "views/read_later/read_later_bubble_view.cc",
      "views/read_later/read_later_bubble_view.h",
      "views/read_later/read_later_button.cc",
      "views/read_later/read_later_button.h",
      "views/reader_mode/reader_mode_icon_view.cc",
      "views/reader_mode/reader_mode_icon_view.h",
      "views/relaunch_notification/relaunch_notification_controller.cc",
      "views/relaunch_notification/relaunch_notification_controller.h",
      "views/relaunch_notification/relaunch_required_timer.cc",
      "views/relaunch_notification/relaunch_required_timer.h",
      "views/relaunch_notification/relaunch_required_timer_internal.cc",
      "views/relaunch_notification/relaunch_required_timer_internal.h",
      "views/sad_tab_view.cc",
      "views/sad_tab_view.h",
      "views/safe_browsing/deep_scanning_failure_modal_dialog.cc",
      "views/safe_browsing/deep_scanning_failure_modal_dialog.h",
      "views/safe_browsing/deep_scanning_modal_dialog.cc",
      "views/safe_browsing/deep_scanning_modal_dialog.h",
      "views/safe_browsing/password_reuse_modal_warning_dialog.cc",
      "views/safe_browsing/password_reuse_modal_warning_dialog.h",
      "views/safe_browsing/prompt_for_scanning_modal_dialog.cc",
      "views/safe_browsing/prompt_for_scanning_modal_dialog.h",
      "views/send_tab_to_self/send_tab_to_self_bubble_device_button.cc",
      "views/send_tab_to_self/send_tab_to_self_bubble_device_button.h",
      "views/send_tab_to_self/send_tab_to_self_bubble_view_impl.cc",
      "views/send_tab_to_self/send_tab_to_self_bubble_view_impl.h",
      "views/send_tab_to_self/send_tab_to_self_icon_view.cc",
      "views/send_tab_to_self/send_tab_to_self_icon_view.h",
      "views/session_crashed_bubble_view.cc",
      "views/session_crashed_bubble_view.h",
      "views/sharing/sharing_dialog_view.cc",
      "views/sharing/sharing_dialog_view.h",
      "views/sharing/sharing_icon_view.cc",
      "views/sharing/sharing_icon_view.h",
      "views/ssl_client_certificate_selector.cc",
      "views/ssl_client_certificate_selector.h",
      "views/status_bubble_views.cc",
      "views/status_bubble_views.h",
      "views/storage/storage_pressure_bubble_view.cc",
      "views/storage/storage_pressure_bubble_view.h",
      "views/subtle_notification_view.cc",
      "views/subtle_notification_view.h",
      "views/sync/profile_signin_confirmation_dialog_views.cc",
      "views/sync/profile_signin_confirmation_dialog_views.h",
      "views/tab_contents/chrome_web_contents_view_focus_helper.cc",
      "views/tab_contents/chrome_web_contents_view_focus_helper.h",
      "views/tab_dialogs_views.cc",
      "views/tab_dialogs_views.h",
      "views/tab_icon_view.cc",
      "views/tab_icon_view.h",
      "views/tab_modal_confirm_dialog_views.cc",
      "views/tab_modal_confirm_dialog_views.h",
      "views/tab_search/tab_search_bubble_view.cc",
      "views/tab_search/tab_search_bubble_view.h",
      "views/tab_sharing/tab_sharing_ui_views.cc",
      "views/tab_sharing/tab_sharing_ui_views.h",
      "views/tabs/alert_indicator.cc",
      "views/tabs/alert_indicator.h",
      "views/tabs/browser_tab_strip_controller.cc",
      "views/tabs/browser_tab_strip_controller.h",
      "views/tabs/color_picker_view.cc",
      "views/tabs/color_picker_view.h",
      "views/tabs/glow_hover_controller.cc",
      "views/tabs/glow_hover_controller.h",
      "views/tabs/new_tab_button.cc",
      "views/tabs/new_tab_button.h",
      "views/tabs/stacked_tab_strip_layout.cc",
      "views/tabs/stacked_tab_strip_layout.h",
      "views/tabs/tab.cc",
      "views/tabs/tab.h",
      "views/tabs/tab_animation.cc",
      "views/tabs/tab_animation.h",
      "views/tabs/tab_animation_state.cc",
      "views/tabs/tab_animation_state.h",
      "views/tabs/tab_close_button.cc",
      "views/tabs/tab_close_button.h",
      "views/tabs/tab_controller.h",
      "views/tabs/tab_drag_context.h",
      "views/tabs/tab_drag_controller.cc",
      "views/tabs/tab_drag_controller.h",
      "views/tabs/tab_group_editor_bubble_view.cc",
      "views/tabs/tab_group_editor_bubble_view.h",
      "views/tabs/tab_group_header.cc",
      "views/tabs/tab_group_header.h",
      "views/tabs/tab_group_highlight.cc",
      "views/tabs/tab_group_highlight.h",
      "views/tabs/tab_group_underline.cc",
      "views/tabs/tab_group_underline.h",
      "views/tabs/tab_group_views.cc",
      "views/tabs/tab_group_views.h",
      "views/tabs/tab_hover_card_bubble_view.cc",
      "views/tabs/tab_hover_card_bubble_view.h",
      "views/tabs/tab_icon.cc",
      "views/tabs/tab_icon.h",
      "views/tabs/tab_search_button.cc",
      "views/tabs/tab_search_button.h",
      "views/tabs/tab_slot_view.cc",
      "views/tabs/tab_slot_view.h",
      "views/tabs/tab_strip.cc",
      "views/tabs/tab_strip.h",
      "views/tabs/tab_strip_controller.h",
      "views/tabs/tab_strip_layout.cc",
      "views/tabs/tab_strip_layout.h",
      "views/tabs/tab_strip_layout_helper.cc",
      "views/tabs/tab_strip_layout_helper.h",
      "views/tabs/tab_strip_layout_types.h",
      "views/tabs/tab_style_views.cc",
      "views/tabs/tab_style_views.h",
      "views/tabs/tab_width_constraints.cc",
      "views/tabs/tab_width_constraints.h",
      "views/tabs/window_finder.cc",
      "views/tabs/window_finder.h",
      "views/task_manager_view.cc",
      "views/task_manager_view.h",
      "views/textfield_layout.cc",
      "views/textfield_layout.h",
      "views/theme_copying_widget.cc",
      "views/theme_copying_widget.h",
      "views/title_origin_label.cc",
      "views/title_origin_label.h",
      "views/toolbar/app_menu.cc",
      "views/toolbar/app_menu.h",
      "views/toolbar/back_forward_button.cc",
      "views/toolbar/back_forward_button.h",
      "views/toolbar/browser_actions_container.cc",
      "views/toolbar/browser_actions_container.h",
      "views/toolbar/browser_app_menu_button.cc",
      "views/toolbar/browser_app_menu_button.h",
      "views/toolbar/extension_toolbar_menu_view.cc",
      "views/toolbar/extension_toolbar_menu_view.h",
      "views/toolbar/home_button.cc",
      "views/toolbar/home_button.h",
      "views/toolbar/reload_button.cc",
      "views/toolbar/reload_button.h",
      "views/toolbar/toolbar_account_icon_container_view.cc",
      "views/toolbar/toolbar_account_icon_container_view.h",
      "views/toolbar/toolbar_action_view.cc",
      "views/toolbar/toolbar_action_view.h",
      "views/toolbar/toolbar_action_view_delegate_views.h",
      "views/toolbar/toolbar_actions_bar_bubble_views.cc",
      "views/toolbar/toolbar_actions_bar_bubble_views.h",
      "views/toolbar/toolbar_button.cc",
      "views/toolbar/toolbar_button.h",
      "views/toolbar/toolbar_icon_container_view.cc",
      "views/toolbar/toolbar_icon_container_view.h",
      "views/toolbar/toolbar_ink_drop_util.cc",
      "views/toolbar/toolbar_ink_drop_util.h",
      "views/toolbar/toolbar_view.cc",
      "views/toolbar/toolbar_view.h",
      "views/touch_uma/touch_uma.cc",
      "views/touch_uma/touch_uma.h",
      "views/translate/translate_bubble_view.cc",
      "views/translate/translate_bubble_view.h",
      "views/translate/translate_icon_view.cc",
      "views/translate/translate_icon_view.h",
      "views/update_recommended_message_box.cc",
      "views/update_recommended_message_box.h",
      "views/web_apps/pwa_confirmation_bubble_view.cc",
      "views/web_apps/pwa_confirmation_bubble_view.h",
      "views/web_apps/web_app_confirmation_view.cc",
      "views/web_apps/web_app_confirmation_view.h",
      "views/web_apps/web_app_frame_toolbar_view.cc",
      "views/web_apps/web_app_frame_toolbar_view.h",
      "views/web_apps/web_app_info_image_source.cc",
      "views/web_apps/web_app_info_image_source.h",
      "views/web_apps/web_app_menu_button.cc",
      "views/web_apps/web_app_menu_button.h",
      "views/web_apps/web_app_origin_text.cc",
      "views/web_apps/web_app_origin_text.h",
      "views/web_apps/web_app_uninstall_dialog_view.cc",
      "views/web_apps/web_app_uninstall_dialog_view.h",
      "views/webauthn/authenticator_bio_enrollment_sheet_view.cc",
      "views/webauthn/authenticator_bio_enrollment_sheet_view.h",
      "views/webauthn/authenticator_client_pin_entry_sheet_view.cc",
      "views/webauthn/authenticator_client_pin_entry_sheet_view.h",
      "views/webauthn/authenticator_client_pin_entry_view.cc",
      "views/webauthn/authenticator_client_pin_entry_view.h",
      "views/webauthn/authenticator_qr_sheet_view.cc",
      "views/webauthn/authenticator_qr_sheet_view.h",
      "views/webauthn/authenticator_request_dialog_view.cc",
      "views/webauthn/authenticator_request_dialog_view.h",
      "views/webauthn/authenticator_request_sheet_view.cc",
      "views/webauthn/authenticator_request_sheet_view.h",
      "views/webauthn/authenticator_select_account_sheet_view.cc",
      "views/webauthn/authenticator_select_account_sheet_view.h",
      "views/webauthn/authenticator_transport_selector_sheet_view.cc",
      "views/webauthn/authenticator_transport_selector_sheet_view.h",
      "views/webauthn/hover_list_view.cc",
      "views/webauthn/hover_list_view.h",
      "views/webauthn/ring_progress_bar.cc",
      "views/webauthn/ring_progress_bar.h",
      "views/webauthn/sheet_view_factory.cc",
      "views/webauthn/sheet_view_factory.h",
      "views/webauthn/webauthn_hover_button.cc",
      "views/webauthn/webauthn_hover_button.h",
      "views/window_name_prompt.cc",
      "webauthn/account_hover_list_model.cc",
      "webauthn/account_hover_list_model.h",
      "webauthn/authenticator_request_sheet_model.cc",
      "webauthn/authenticator_request_sheet_model.h",
      "webauthn/hover_list_model.h",
      "webauthn/other_transports_menu_model.cc",
      "webauthn/other_transports_menu_model.h",
      "webauthn/sheet_models.cc",
      "webauthn/sheet_models.h",
      "webauthn/transport_hover_list_model.cc",
      "webauthn/transport_hover_list_model.h",
      "webauthn/transport_utils.cc",
      "webauthn/transport_utils.h",
    ]

    deps += [
      "//base",
      "//base/util/timer",
      "//chrome/browser/ui/views",
      "//chrome/common/qr_code_generator",
      "//components/constrained_window",
      "//components/content_settings/browser/ui",
      "//components/media_message_center",
      "//components/page_info",
      "//components/payments/content",
      "//components/payments/core",
      "//components/tab_count_metrics",
      "//components/ui_devtools/views",
      "//device/vr/buildflags:buildflags",
      "//services/media_session/public/mojom",
      "//ui/base/dragdrop/mojom:mojom_shared",
      "//ui/views:buildflags",
    ]

    allow_circular_includes_from += [ "//chrome/browser/ui/views" ]

    if (is_desktop_linux) {
      sources += [
        "views/chrome_views_delegate_linux.cc",
        "views/frame/desktop_linux_browser_frame_view.cc",
        "views/frame/desktop_linux_browser_frame_view.h",
        "views/frame/desktop_linux_browser_frame_view_layout.cc",
        "views/frame/desktop_linux_browser_frame_view_layout.h",
        "views/frame/opaque_browser_frame_view_linux.cc",
        "views/frame/opaque_browser_frame_view_linux.h",
      ]
    }

    if (is_linux || is_chromeos) {
      sources += [
        "views/process_singleton_dialog_linux.cc",
        "views/status_icons/status_tray_linux.cc",
        "views/status_icons/status_tray_linux.h",
      ]
    }

    if (is_mac) {
      sources += [
        "views/apps/app_window_native_widget_mac.h",
        "views/apps/app_window_native_widget_mac.mm",
        "views/apps/chrome_native_app_window_views_mac.h",
        "views/apps/chrome_native_app_window_views_mac.mm",
        "views/apps/native_app_window_frame_view_mac.h",
        "views/apps/native_app_window_frame_view_mac.mm",
        "views/chrome_views_delegate_mac.cc",
        "views/frame/browser_view_commands_mac.h",
        "views/frame/browser_view_commands_mac.mm",
        "views/policy/enterprise_startup_dialog_mac_util.h",
        "views/policy/enterprise_startup_dialog_mac_util.mm",
      ]

      # The Views task manager is not used on Mac - a native Cocoa
      # implementation is used instead.
      sources -= [
        "views/task_manager_view.cc",
        "views/task_manager_view.h",
      ]
    } else {
      sources += [
        "views/create_application_shortcut_view.cc",
        "views/create_application_shortcut_view.h",
      ]
    }

    if (is_win) {
      sources += [ "views/chrome_views_delegate_win.cc" ]
    }

    if (is_win || is_desktop_linux) {
      sources += [
        "views/native_widget_factory.cc",
        "views/native_widget_factory.h",
      ]
    }

    if (use_aura) {
      # These files can do Gtk+-based theming for builds with gtk enabled.
      if (is_desktop_linux) {
        sources += [
          "views/chrome_browser_main_extra_parts_views_linux.cc",
          "views/chrome_browser_main_extra_parts_views_linux.h",
        ]
        if (use_gtk) {
          deps += [ "//ui/gtk" ]
          if (use_x11) {
            deps += [
              "//ui/gfx/x",
              "//ui/gtk/x",
            ]
          }
          if (use_ozone) {
            deps += [ "//ui/ozone" ]
          }
        }
        if (use_ozone) {
          deps += [ "//ui/base/cursor:cursor_base" ]
        }
      }
    }

    if (!is_chromeos) {
      sources += [
        "views/accessibility/accessibility_focus_highlight.cc",
        "views/accessibility/accessibility_focus_highlight.h",
        "views/frame/opaque_browser_frame_view.cc",
        "views/frame/opaque_browser_frame_view.h",
        "views/frame/opaque_browser_frame_view_layout.cc",
        "views/frame/opaque_browser_frame_view_layout.h",
        "views/frame/opaque_browser_frame_view_layout_delegate.cc",
        "views/frame/opaque_browser_frame_view_layout_delegate.h",
        "views/frame/opaque_browser_frame_view_platform_specific.cc",
        "views/frame/opaque_browser_frame_view_platform_specific.h",
        "views/outdated_upgrade_bubble_view.cc",
        "views/outdated_upgrade_bubble_view.h",
        "views/passwords/password_sign_in_promo_view.cc",
        "views/passwords/password_sign_in_promo_view.h",
        "views/policy/enterprise_startup_dialog_view.cc",
        "views/policy/enterprise_startup_dialog_view.h",
        "views/relaunch_notification/relaunch_notification_controller_platform_impl_desktop.cc",
        "views/relaunch_notification/relaunch_notification_controller_platform_impl_desktop.h",
        "views/relaunch_notification/relaunch_recommended_bubble_view.cc",
        "views/relaunch_notification/relaunch_recommended_bubble_view.h",
        "views/relaunch_notification/relaunch_recommended_timer.cc",
        "views/relaunch_notification/relaunch_recommended_timer.h",
        "views/relaunch_notification/relaunch_required_dialog_view.cc",
        "views/relaunch_notification/relaunch_required_dialog_view.h",
        "views/screen_capture_notification_ui_views.cc",
        "views/sync/dice_bubble_sync_promo_view.cc",
        "views/sync/dice_bubble_sync_promo_view.h",
        "views/sync/dice_signin_button_view.cc",
        "views/sync/dice_signin_button_view.h",
        "views/sync/one_click_signin_dialog_view.cc",
        "views/sync/one_click_signin_dialog_view.h",
      ]
      deps += [ "//ui/views/window/vector_icons" ]
    }

    if (is_chrome_branded) {
      deps += [ "//chrome/browser/ui/media_router/internal/vector_icons" ]
    }
  }

  if (use_aura) {
    sources += [
      "aura/accessibility/automation_manager_aura.cc",
      "aura/accessibility/automation_manager_aura.h",
      "aura/native_window_tracker_aura.cc",
      "aura/native_window_tracker_aura.h",
      "aura/tab_contents/web_drag_bookmark_handler_aura.cc",
      "aura/tab_contents/web_drag_bookmark_handler_aura.h",
      "views/accelerator_utils_aura.cc",
      "views/apps/app_window_easy_resize_window_targeter.cc",
      "views/apps/app_window_easy_resize_window_targeter.h",
      "views/apps/chrome_native_app_window_views_aura.cc",
      "views/apps/chrome_native_app_window_views_aura.h",
      "views/apps/shaped_app_window_targeter.cc",
      "views/apps/shaped_app_window_targeter.h",
      "views/dropdown_bar_host_aura.cc",
      "views/eye_dropper/eye_dropper_view_aura.cc",
      "views/renderer_context_menu/render_view_context_menu_views.cc",
      "views/renderer_context_menu/render_view_context_menu_views.h",
      "views/tab_contents/chrome_web_contents_view_delegate_views.cc",
      "views/tab_contents/chrome_web_contents_view_delegate_views.h",
      "views/theme_profile_key.cc",
      "views/theme_profile_key.h",
      "window_sizer/window_sizer_aura.cc",
    ]
    deps += [
      "//ui/aura",
      "//ui/wm",
    ]

    if (!is_chromeos) {
      sources += [
        "views/frame/browser_non_client_frame_view_factory_views.cc",
        "views/frame/desktop_browser_frame_aura.cc",
        "views/frame/desktop_browser_frame_aura.h",
      ]
    }

    if (!is_win) {
      sources += [
        "views/color_chooser_aura.cc",
        "views/color_chooser_aura.h",
      ]
    }
  }

  if (enable_extensions) {
    deps += [
      "//apps",
      "//chrome/browser/apps/platform_apps",  # TODO(loyso): Remove this dep.
      "//chrome/browser/apps/platform_apps/api",
      "//chrome/browser/extensions",
      "//chrome/common/extensions/api",
      "//components/drive",
      "//components/guest_view/browser",
      "//extensions/browser",
      "//extensions/common:mojom",
      "//extensions/components/native_app_window",
      "//extensions/strings",
    ]
    allow_circular_includes_from += [
      "//chrome/browser/apps/platform_apps",
      "//chrome/browser/apps/platform_apps/api",
      "//chrome/browser/extensions",
    ]
    sources += [
      "extensions/accelerator_priority.h",
      "extensions/app_launch_params.cc",
      "extensions/app_launch_params.h",
      "extensions/application_launch.cc",
      "extensions/application_launch.h",
      "extensions/blocked_action_bubble_delegate.cc",
      "extensions/blocked_action_bubble_delegate.h",
      "extensions/extension_action_platform_delegate.h",
      "extensions/extension_action_view_controller.cc",
      "extensions/extension_action_view_controller.h",
      "extensions/extension_enable_flow.cc",
      "extensions/extension_enable_flow.h",
      "extensions/extension_enable_flow_delegate.h",
      "extensions/extension_install_ui_default.cc",
      "extensions/extension_install_ui_default.h",
      "extensions/extension_install_ui_factory.cc",
      "extensions/extension_install_ui_factory.h",
      "extensions/extension_installed_bubble_model.cc",
      "extensions/extension_installed_bubble_model.h",
      "extensions/extension_installed_waiter.cc",
      "extensions/extension_installed_waiter.h",
      "extensions/extension_message_bubble_bridge.cc",
      "extensions/extension_message_bubble_bridge.h",
      "extensions/extension_message_bubble_factory.cc",
      "extensions/extension_message_bubble_factory.h",
      "extensions/extension_removal_watcher.cc",
      "extensions/extension_removal_watcher.h",
      "extensions/extension_settings_overridden_dialog.cc",
      "extensions/extension_settings_overridden_dialog.h",
      "extensions/extensions_container.h",
      "extensions/hosted_app_browser_controller.cc",
      "extensions/hosted_app_browser_controller.h",
      "extensions/icon_with_badge_image_source.cc",
      "extensions/icon_with_badge_image_source.h",
      "extensions/installation_error_infobar_delegate.cc",
      "extensions/installation_error_infobar_delegate.h",
      "extensions/settings_api_bubble_helpers.cc",
      "extensions/settings_api_bubble_helpers.h",
      "extensions/settings_overridden_dialog_controller.h",
      "extensions/settings_overridden_params_providers.cc",
      "extensions/settings_overridden_params_providers.h",
      "views/extensions/browser_action_drag_data.cc",
      "views/extensions/browser_action_drag_data.h",
      "views/extensions/extension_action_platform_delegate_views.cc",
      "views/extensions/extension_action_platform_delegate_views.h",
      "views/extensions/extension_dialog.cc",
      "views/extensions/extension_dialog.h",
      "views/extensions/extension_dialog_observer.cc",
      "views/extensions/extension_dialog_observer.h",
      "views/extensions/extension_popup.cc",
      "views/extensions/extension_popup.h",
      "views/extensions/extension_view_views.cc",
      "views/extensions/extension_view_views.h",
      "views/extensions/media_galleries_dialog_views.cc",
      "views/extensions/media_galleries_dialog_views.h",
      "views/extensions/media_gallery_checkbox_view.cc",
      "views/extensions/media_gallery_checkbox_view.h",
      "views/extensions/settings_overridden_dialog_view.cc",
      "views/extensions/settings_overridden_dialog_view.h",
      "web_applications/app_browser_controller.cc",
      "web_applications/app_browser_controller.h",
      "web_applications/system_web_app_ui_utils.cc",
      "web_applications/system_web_app_ui_utils.h",
      "web_applications/web_app_browser_controller.cc",
      "web_applications/web_app_browser_controller.h",
      "web_applications/web_app_dialog_manager.cc",
      "web_applications/web_app_dialog_manager.h",
      "web_applications/web_app_dialog_utils.cc",
      "web_applications/web_app_dialog_utils.h",
      "web_applications/web_app_launch_manager.cc",
      "web_applications/web_app_launch_manager.h",
      "web_applications/web_app_launch_utils.cc",
      "web_applications/web_app_launch_utils.h",
      "web_applications/web_app_menu_model.cc",
      "web_applications/web_app_menu_model.h",
      "web_applications/web_app_metrics.cc",
      "web_applications/web_app_metrics.h",
      "web_applications/web_app_metrics_factory.cc",
      "web_applications/web_app_metrics_factory.h",
      "web_applications/web_app_ui_manager_impl.cc",
      "web_applications/web_app_ui_manager_impl.h",
      "web_applications/web_app_uninstall_dialog.h",
      "webui/extensions/extension_basic_info.cc",
      "webui/extensions/extension_basic_info.h",
      "webui/extensions/extension_icon_source.cc",
      "webui/extensions/extension_icon_source.h",
    ]

    if (!is_mac) {
      deps += [ "//apps/ui/views" ]
    }
    if (use_aura) {
      sources += [
        "views/chrome_javascript_app_modal_view_factory_views.cc",
        "views/javascript_app_modal_event_blocker.cc",
        "views/javascript_app_modal_event_blocker.h",
      ]
      deps += [ "//ui/wm/public" ]
    }
  }

  if (enable_nacl) {
    sources += [
      "webui/nacl_ui.cc",
      "webui/nacl_ui.h",
    ]
    deps += [ "//components/nacl/browser" ]
  }

  if (enable_plugins) {
    sources += [
      "hung_plugin_tab_helper.cc",
      "hung_plugin_tab_helper.h",
    ]
    deps += [ "//ppapi/proxy:ipc" ]
  }

  if (enable_basic_printing) {
    deps += [
      "//components/printing/browser",
      "//printing",
    ]
    if (!is_chromeos && !is_android) {
      sources += [
        "webui/settings/printing_handler.cc",
        "webui/settings/printing_handler.h",
      ]
    }
    if (use_cups) {
      configs += [ "//printing:cups" ]
    }
  }
  if (enable_print_preview) {
    sources += [
      "webui/print_preview/cloud_print_signin.cc",
      "webui/print_preview/cloud_print_signin.h",
      "webui/print_preview/extension_printer_handler.cc",
      "webui/print_preview/extension_printer_handler.h",
      "webui/print_preview/pdf_printer_handler.cc",
      "webui/print_preview/pdf_printer_handler.h",
      "webui/print_preview/policy_settings.cc",
      "webui/print_preview/policy_settings.h",
      "webui/print_preview/print_preview_handler.cc",
      "webui/print_preview/print_preview_handler.h",
      "webui/print_preview/print_preview_metrics.cc",
      "webui/print_preview/print_preview_metrics.h",
      "webui/print_preview/print_preview_ui.cc",
      "webui/print_preview/print_preview_ui.h",
      "webui/print_preview/print_preview_utils.cc",
      "webui/print_preview/print_preview_utils.h",
      "webui/print_preview/printer_handler.cc",
      "webui/print_preview/printer_handler.h",
    ]
    deps += [
      "//components/printing/common:mojo_interfaces",
      "//printing/mojom",
      "//services/device/public/cpp/usb",
      "//services/device/public/mojom:usb",
    ]

    if (is_chromeos) {
      sources += [
        "webui/print_preview/local_printer_handler_chromeos.cc",
        "webui/print_preview/local_printer_handler_chromeos.h",
      ]
    } else {
      sources += [
        "webui/print_preview/local_printer_handler_default.cc",
        "webui/print_preview/local_printer_handler_default.h",
      ]
    }

    if (enable_service_discovery) {
      sources += [
        "webui/print_preview/privet_printer_handler.cc",
        "webui/print_preview/privet_printer_handler.h",
      ]
    }
  }

  if (enable_service_discovery) {
    sources += [
      "webui/local_discovery/local_discovery_ui.cc",
      "webui/local_discovery/local_discovery_ui.h",
      "webui/local_discovery/local_discovery_ui_handler.cc",
      "webui/local_discovery/local_discovery_ui_handler.h",
    ]
    if (enable_print_preview && !is_chromeos) {
      deps += [ "//chrome/common:service_process_mojom" ]
    }
  }

  if (enable_webrtc) {
    sources += [
      "webui/media/webrtc_logs_ui.cc",
      "webui/media/webrtc_logs_ui.h",
    ]
    deps += [ "//components/webrtc_logging/browser" ]
  }

  if (safe_browsing_mode == 1) {
    deps += [
      "//chrome/browser/ui/webui/reset_password:mojo_bindings",
      "//chrome/common/safe_browsing:proto",
      "//components/safe_browsing/content/password_protection:password_protection_metrics_util",
      "//components/safe_browsing/core:csd_proto",
    ]
  }

  if (use_dbus) {
    deps += [ "//dbus" ]
  }

  if (use_nss_certs) {
    sources += [
      "crypto_module_delegate_nss.cc",
      "crypto_module_delegate_nss.h",
      "crypto_module_password_dialog_nss.cc",
      "crypto_module_password_dialog_nss.h",
      "webui/certificate_manager_localized_strings_provider.cc",
      "webui/certificate_manager_localized_strings_provider.h",
      "webui/certificates_handler.cc",
      "webui/certificates_handler.h",
    ]

    if (use_aura) {
      sources += [
        "views/crypto_module_password_dialog_view.cc",
        "views/crypto_module_password_dialog_view.h",
      ]
    }
  }

  if (use_udev) {
    deps += [ "//device/udev_linux" ]
  }

  if (enable_offline_pages) {
    deps += [
      "//components/offline_pages/core",
      "//components/offline_pages/core/background:background_offliner",
      "//components/offline_pages/core/prefetch",
    ]
  }

  if (enable_webui_tab_strip) {
    deps += [ "//chrome/browser/resources:tab_strip_resources" ]

    sources += [
      "views/frame/webui_tab_strip_container_view.cc",
      "views/frame/webui_tab_strip_container_view.h",
      "views/frame/webui_tab_strip_field_trial.cc",
      "views/frame/webui_tab_strip_field_trial.h",
      "views/toolbar/webui_tab_counter_button.cc",
      "views/toolbar/webui_tab_counter_button.h",
      "webui/tab_strip/chrome_content_browser_client_tab_strip_part.cc",
      "webui/tab_strip/chrome_content_browser_client_tab_strip_part.h",
      "webui/tab_strip/tab_before_unload_tracker.cc",
      "webui/tab_strip/tab_before_unload_tracker.h",
      "webui/tab_strip/tab_strip_ui.cc",
      "webui/tab_strip/tab_strip_ui.h",
      "webui/tab_strip/tab_strip_ui_embedder.h",
      "webui/tab_strip/tab_strip_ui_handler.cc",
      "webui/tab_strip/tab_strip_ui_handler.h",
      "webui/tab_strip/tab_strip_ui_layout.cc",
      "webui/tab_strip/tab_strip_ui_layout.h",
      "webui/tab_strip/tab_strip_ui_metrics.cc",
      "webui/tab_strip/tab_strip_ui_metrics.h",
      "webui/tab_strip/tab_strip_ui_util.cc",
      "webui/tab_strip/tab_strip_ui_util.h",
      "webui/tab_strip/thumbnail_tracker.cc",
      "webui/tab_strip/thumbnail_tracker.h",
    ]
  }
}

# In GYP this is part of test_support_common.
static_library("test_support") {
  testonly = true

  sources = [
    "content_settings/fake_owner.cc",
    "content_settings/fake_owner.h",
    "find_bar/find_bar_host_unittest_util.h",
    "login/login_handler_test_utils.cc",
    "login/login_handler_test_utils.h",
    "passwords/settings/password_ui_view_mock.cc",
    "passwords/settings/password_ui_view_mock.h",
    "toolbar/test_toolbar_action_view_controller.cc",
    "toolbar/test_toolbar_action_view_controller.h",
  ]
  public_deps = [ ":ui" ]
  deps = [
    "//chrome/app/theme:theme_resources",
    "//chrome/browser",
    "//chrome/browser/devtools",
    "//components/omnibox/browser",
    "//components/password_manager/core/browser",
    "//components/payments/content",
    "//components/permissions",
    "//components/sessions",
    "//components/translate/content/browser",
    "//content/public/browser",
    "//content/public/common",
    "//content/test:test_support",
    "//net:test_support",
    "//skia",
    "//testing/gtest",
    "//ui/base",
    "//ui/base:test_support",
    "//ui/gfx:test_support",
    "//ui/shell_dialogs",
  ]

  if (is_mac) {
    assert(toolkit_views)
    sources += [
      "cocoa/test/cocoa_test_helper.h",
      "cocoa/test/cocoa_test_helper.mm",
      "cocoa/test/run_loop_testing.h",
      "cocoa/test/run_loop_testing.mm",
      "views/extensions/extension_action_test_helper_mac.mm",
    ]
  }

  if (toolkit_views) {
    deps += [
      "//components/constrained_window:constrained_window",
      "//ui/views:test_support",
    ]
    sources += [
      "extensions/extension_action_test_helper.h",
      "views/extensions/extension_action_test_helper_views.cc",
      "views/extensions/extension_action_test_helper_views.h",
      "views/extensions/extensions_menu_test_util.cc",
      "views/extensions/extensions_menu_test_util.h",
      "views/find_bar_host_unittest_util_views.cc",
      "views/payments/test_chrome_payment_request_delegate.cc",
      "views/payments/test_chrome_payment_request_delegate.h",
      "views/payments/test_secure_payment_confirmation_payment_request_delegate.cc",
      "views/payments/test_secure_payment_confirmation_payment_request_delegate.h",
      "views/webauthn/authenticator_request_dialog_view_test_api.cc",
      "views/webauthn/authenticator_request_dialog_view_test_api.h",
    ]
    if (use_aura) {
      sources += [ "views/extensions/extension_action_test_helper_aura.cc" ]
      deps += [
        "//ui/aura",
        "//ui/wm",
      ]
    }
  }

  if (!is_android) {
    sources += [
      "exclusive_access/exclusive_access_test.cc",
      "exclusive_access/exclusive_access_test.h",
      "exclusive_access/fullscreen_controller_state_test.cc",
      "exclusive_access/fullscreen_controller_state_test.h",
      "exclusive_access/fullscreen_controller_state_tests.h",
      "global_error/global_error_waiter.cc",
      "global_error/global_error_waiter.h",
      "hats/mock_hats_service.cc",
      "hats/mock_hats_service.h",
      "passwords/credential_manager_dialog_controller_mock.cc",
      "passwords/credential_manager_dialog_controller_mock.h",
      "passwords/manage_passwords_ui_controller_mock.cc",
      "passwords/manage_passwords_ui_controller_mock.h",
      "passwords/passwords_leak_dialog_delegate_mock.cc",
      "passwords/passwords_leak_dialog_delegate_mock.h",
      "passwords/passwords_model_delegate_mock.cc",
      "passwords/passwords_model_delegate_mock.h",
      "tabs/tab_ukm_test_helper.cc",
      "tabs/tab_ukm_test_helper.h",
      "test/test_confirm_bubble_model.cc",
      "test/test_confirm_bubble_model.h",
      "webui/help/test_version_updater.cc",
      "webui/help/test_version_updater.h",
    ]
    deps += [
      "//components/signin/core/browser",
      "//components/signin/public/identity_manager",
      "//components/ukm:test_support",
      "//components/zoom",
      "//services/metrics/public/mojom",
    ]
  }

  if (is_chromeos) {
    sources += [
      "ash/ash_test_util.cc",
      "ash/ash_test_util.h",
      "ash/test_login_screen.cc",
      "ash/test_login_screen.h",
      "ash/test_login_screen_model.cc",
      "ash/test_login_screen_model.h",
      "ash/test_session_controller.cc",
      "ash/test_session_controller.h",
      "ash/test_wallpaper_controller.cc",
      "ash/test_wallpaper_controller.h",
      "webui/settings/chromeos/fake_hierarchy.cc",
      "webui/settings/chromeos/fake_hierarchy.h",
      "webui/settings/chromeos/fake_os_settings_section.cc",
      "webui/settings/chromeos/fake_os_settings_section.h",
      "webui/settings/chromeos/fake_os_settings_sections.cc",
      "webui/settings/chromeos/fake_os_settings_sections.h",
    ]
    deps += [
      "//ash/public/cpp",
      "//chromeos/dbus",
    ]
  }

  if (enable_extensions) {
    deps += [
      "//chrome/test:test_support_ui",
      "//extensions/browser",
    ]
  }
}

if (is_chromeos) {
  source_set("ash_test_support") {
    check_includes = false
    sources = [
      "ash/keyboard/chrome_keyboard_controller_client_test_helper.cc",
      "ash/keyboard/chrome_keyboard_controller_client_test_helper.h",
    ]
    deps = [ "//ash" ]
  }
}

if (is_android) {
  java_cpp_enum("tab_model_enums_java") {
    sources = [ "android/tab_model/tab_model.h" ]
  }
}