summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/ui/BUILD.gn
blob: 583a685cd125a327ff1609beb9ec9c3c954a1474 (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
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
# 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/features.gni")
import("//build/config/ozone.gni")
import("//build/config/ui.gni")
import("//chrome/browser/buildflags.gni")
import("//chrome/common/features.gni")
import("//chromeos/ash/components/assistant/assistant.gni")
import("//chromeos/components/chromebox_for_meetings/buildflags/buildflags.gni")
import("//chromeos/dbus/config/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("//crypto/features.gni")
import("//device/vr/buildflags/buildflags.gni")
import("//extensions/buildflags/buildflags.gni")
import("//pdf/features.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/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_ash 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/autofill_error_dialog_controller.h",
    "autofill/payments/autofill_error_dialog_controller_impl.cc",
    "autofill/payments/autofill_error_dialog_controller_impl.h",
    "autofill/payments/autofill_error_dialog_view.h",
    "autofill/payments/autofill_progress_dialog_controller.h",
    "autofill/payments/autofill_progress_dialog_controller_impl.cc",
    "autofill/payments/autofill_progress_dialog_controller_impl.h",
    "autofill/payments/autofill_progress_dialog_view.h",
    "autofill/payments/card_unmask_authentication_selection_dialog_controller.h",
    "autofill/payments/card_unmask_authentication_selection_dialog_controller_impl.cc",
    "autofill/payments/card_unmask_authentication_selection_dialog_controller_impl.h",
    "autofill/payments/card_unmask_authentication_selection_dialog_view.h",
    "autofill/payments/card_unmask_otp_input_dialog_controller.h",
    "autofill/payments/card_unmask_otp_input_dialog_controller_impl.cc",
    "autofill/payments/card_unmask_otp_input_dialog_controller_impl.h",
    "autofill/payments/card_unmask_otp_input_dialog_view.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_element_identifiers.cc",
    "browser_element_identifiers.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",
    "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",
    "file_system_access_dialogs.cc",
    "file_system_access_dialogs.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",
    "managed_ui.cc",
    "managed_ui.h",
    "monogram_utils.cc",
    "monogram_utils.h",
    "omnibox/omnibox_pedal_implementations.cc",
    "omnibox/omnibox_pedal_implementations.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/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/password_manager_navigation_throttle.cc",
    "passwords/password_manager_navigation_throttle.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/ui_utils.cc",
    "passwords/ui_utils.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_labs_prefs.cc",
    "toolbar/chrome_labs_prefs.h",
    "toolbar/chrome_location_bar_model_delegate.cc",
    "toolbar/chrome_location_bar_model_delegate.h",
    "translate/partial_translate_bubble_model.h",
    "translate/partial_translate_bubble_model_impl.cc",
    "translate/partial_translate_bubble_model_impl.h",
    "translate/partial_translate_bubble_ui_action_logger.cc",
    "translate/partial_translate_bubble_ui_action_logger.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_ui_action_logger.cc",
    "translate/translate_bubble_ui_action_logger.h",
    "translate/translate_language_list_model.h",
    "ui_features.cc",
    "ui_features.h",
    "uninstall_browser_prompt.h",
    "view_ids.h",
    "webauthn/authenticator_request_dialog.h",
    "webid/account_selection_view.h",
    "webid/identity_dialog_controller.cc",
    "webid/identity_dialog_controller.h",
    "webui/about_ui.cc",
    "webui/about_ui.h",
    "webui/apc_internals/apc_internals_handler.cc",
    "webui/apc_internals/apc_internals_handler.h",
    "webui/apc_internals/apc_internals_ui.cc",
    "webui/apc_internals/apc_internals_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/browsing_topics/browsing_topics_internals_page_handler.cc",
    "webui/browsing_topics/browsing_topics_internals_page_handler.h",
    "webui/browsing_topics/browsing_topics_internals_ui.cc",
    "webui/browsing_topics/browsing_topics_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/flags_ui.cc",
    "webui/flags/flags_ui.h",
    "webui/flags/flags_ui_handler.cc",
    "webui/flags/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/invalidations/invalidations_message_handler.cc",
    "webui/invalidations/invalidations_message_handler.h",
    "webui/invalidations/invalidations_ui.cc",
    "webui/invalidations/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/media/webrtc_logs_ui.cc",
    "webui/media/webrtc_logs_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/policy_ui.cc",
    "webui/policy/policy_ui.h",
    "webui/policy/policy_ui_handler.cc",
    "webui/policy/policy_ui_handler.h",
    "webui/policy/status_provider/cloud_policy_core_status_provider.cc",
    "webui/policy/status_provider/cloud_policy_core_status_provider.h",
    "webui/policy/status_provider/status_provider_util.cc",
    "webui/policy/status_provider/status_provider_util.h",
    "webui/policy/status_provider/user_cloud_policy_status_provider.cc",
    "webui/policy/status_provider/user_cloud_policy_status_provider.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/segmentation_internals/segmentation_internals_page_handler_impl.cc",
    "webui/segmentation_internals/segmentation_internals_page_handler_impl.h",
    "webui/segmentation_internals/segmentation_internals_ui.cc",
    "webui/segmentation_internals/segmentation_internals_ui.h",
    "webui/signin_internals_ui.cc",
    "webui/signin_internals_ui.h",
    "webui/sync_internals/sync_internals_message_handler.cc",
    "webui/sync_internals/sync_internals_message_handler.h",
    "webui/sync_internals/sync_internals_ui.cc",
    "webui/sync_internals/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/version_handler.cc",
    "webui/version/version_handler.h",
    "webui/version/version_ui.cc",
    "webui/version/version_ui.h",
    "webui/webui_load_timer.cc",
    "webui/webui_load_timer.h",
    "webui/webui_util.cc",
    "webui/webui_util.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",
  ]

  if (enable_session_service) {
    sources += [
      "webui/internals/sessions/session_service_internals_handler.cc",
      "webui/internals/sessions/session_service_internals_handler.h",
    ]
  }

  defines = []
  if (is_mac) {
    # For version_ui.cc:
    if (use_lld) {
      defines += [ "CHROMIUM_LINKER_NAME=\"lld\"" ]
    } else {
      defines += [ "CHROMIUM_LINKER_NAME=\"ld\"" ]
    }
  }
  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 = [
    "//components/dom_distiller/core",
    "//components/paint_preview/buildflags",
    "//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",
    "//build:chromeos_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:browser_process",
    "//chrome/browser:buildflags",
    "//chrome/browser:dev_ui_browser_resources",
    "//chrome/browser:resource_prefetch_predictor_proto",
    "//chrome/browser/breadcrumbs",
    "//chrome/browser/commerce/shopping_list",
    "//chrome/browser/devtools",
    "//chrome/browser/image_decoder",
    "//chrome/browser/media:mojo_bindings",
    "//chrome/browser/media/router:media_router_feature",
    "//chrome/browser/media/router/discovery/access_code:access_code_cast_feature",
    "//chrome/browser/media/router/discovery/access_code:discovery_resources_proto",
    "//chrome/browser/profiles",
    "//chrome/browser/profiles:profile",
    "//chrome/browser/profiling_host",
    "//chrome/browser/resources/browsing_topics:resources",
    "//chrome/browser/resources/internals:resources",
    "//chrome/browser/resources/invalidations:resources",
    "//chrome/browser/resources/media:resources",
    "//chrome/browser/resources/net_internals:resources",
    "//chrome/browser/resources/omnibox:resources",
    "//chrome/browser/resources/usb_internals:resources",
    "//chrome/browser/safe_browsing",
    "//chrome/browser/share",
    "//chrome/browser/ui/webui:configs",
    "//chrome/browser/ui/webui/bluetooth_internals",
    "//chrome/browser/ui/webui/downloads:mojo_bindings",
    "//chrome/browser/ui/webui/omnibox:mojo_bindings",
    "//chrome/browser/ui/webui/realbox:mojo_bindings",
    "//chrome/browser/ui/webui/segmentation_internals:mojo_bindings",
    "//chrome/browser/ui/webui/side_panel/bookmarks:mojo_bindings",
    "//chrome/browser/ui/webui/side_panel/read_anything:mojo_bindings",
    "//chrome/browser/ui/webui/side_panel/reading_list: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/access_code_cast/common",
    "//components/account_id",
    "//components/accuracy_tips",
    "//components/autofill/content/browser:risk_proto",
    "//components/autofill/core/browser",
    "//components/autofill_assistant/browser",
    "//components/autofill_assistant/browser/public:public",
    "//components/blocked_content",
    "//components/bookmarks/browser",
    "//components/bookmarks/managed",
    "//components/breadcrumbs/core",
    "//components/breadcrumbs/core:feature_flags",
    "//components/browser_sync",
    "//components/browsing_data/content",
    "//components/browsing_data/core",
    "//components/browsing_topics",
    "//components/browsing_topics/mojom:mojo_bindings",
    "//components/captive_portal/content",
    "//components/captive_portal/core:buildflags",
    "//components/client_hints/browser",
    "//components/commerce/content/browser",
    "//components/commerce/core:feature_list",
    "//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/crash/core/browser",
    "//components/crx_file",
    "//components/custom_handlers",
    "//components/device_event_log",
    "//components/dom_distiller/content/browser",
    "//components/domain_reliability",
    "//components/download/content/factory",
    "//components/download/content/public",
    "//components/download/resources/download_internals:resources",
    "//components/embedder_support",
    "//components/embedder_support:browser_util",
    "//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/feedback",
    "//components/feedback/content",
    "//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/history_clusters/core",
    "//components/history_clusters/history_clusters_internals/resources",
    "//components/history_clusters/history_clusters_internals/webui",
    "//components/history_clusters/history_clusters_internals/webui:mojo_bindings",
    "//components/image_fetcher/core",
    "//components/infobars/content",
    "//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/lens",
    "//components/live_caption:constants",
    "//components/live_caption:utils",
    "//components/local_state",
    "//components/lookalikes/core",
    "//components/metrics:content",
    "//components/metrics_services_manager",
    "//components/navigation_metrics",
    "//components/net_log",
    "//components/no_state_prefetch/browser",
    "//components/ntp_tiles",
    "//components/offline_pages/buildflags",
    "//components/omnibox/browser",
    "//components/omnibox/browser:vector_icons",
    "//components/onc",
    "//components/optimization_guide/content/browser",
    "//components/optimization_guide/core",
    "//components/optimization_guide/optimization_guide_internals/resources",
    "//components/optimization_guide/optimization_guide_internals/webui",
    "//components/optimization_guide/optimization_guide_internals/webui:mojo_bindings",
    "//components/password_manager/content/browser",
    "//components/password_manager/core/browser",
    "//components/password_manager/core/browser:affiliation",
    "//components/password_manager/core/browser:csv",
    "//components/password_manager/core/common",
    "//components/payments/content:utils",
    "//components/payments/content/icon",
    "//components/payments/core:error_strings",
    "//components/performance_manager",
    "//components/permissions",
    "//components/policy/core/browser",
    "//components/pref_registry",
    "//components/privacy_sandbox",
    "//components/privacy_sandbox:privacy_sandbox_prefs",
    "//components/profile_metrics",
    "//components/proxy_config",
    "//components/query_parser",
    "//components/reading_list/core",
    "//components/reading_list/features:flags",
    "//components/renderer_context_menu",
    "//components/resources",
    "//components/safe_browsing/content/browser",
    "//components/safe_browsing/content/browser:client_side_detection",
    "//components/safe_browsing/content/browser/password_protection",
    "//components/safe_browsing/content/browser/web_ui",
    "//components/safe_browsing/core/browser/db:database_manager",
    "//components/safe_browsing/core/browser/db:util",
    "//components/safe_browsing/core/browser/password_protection:password_protection_metrics_util",
    "//components/safe_browsing/core/common",
    "//components/safe_browsing/core/common:safe_browsing_prefs",
    "//components/safe_browsing/core/common/proto:csd_proto",
    "//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/segmentation_platform/content",
    "//components/segmentation_platform/public",
    "//components/send_tab_to_self",
    "//components/sessions",
    "//components/signin/core/browser",
    "//components/signin/public/base:signin_buildflags",
    "//components/signin/public/identity_manager",
    "//components/site_engagement/content",
    "//components/site_engagement/core/mojom:mojo_bindings",
    "//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",
    "//components/webapps/browser",
    "//components/webapps/common",
    "//components/webrtc_logging/browser",
    "//components/zoom",
    "//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/device/public/cpp/geolocation",
    "//services/metrics/public/cpp:ukm_builders",
    "//services/network/public/mojom",
    "//skia",
    "//storage/browser",
    "//storage/common",
    "//third_party/abseil-cpp:absl",
    "//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/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",
    "//v8:v8_version",
  ]

  # TODO(crbug/925153): Remove this circular dependency.
  allow_circular_includes_from = [
    # TODO(crbug.com/1158905): Remove this circular dependency.
    "//chrome/browser/devtools",
    "//chrome/browser/safe_browsing",
    "//chrome/browser/ui/webui/bluetooth_internals",
    "//chrome/browser/profiling_host",
    "//chrome/browser/ui/webui:configs",
  ]

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

  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 || is_linux || is_mac || is_chromeos_ash) {
    sources += [
      "webui/connectors_internals/connectors_internals_page_handler.cc",
      "webui/connectors_internals/connectors_internals_page_handler.h",
      "webui/connectors_internals/connectors_internals_ui.cc",
      "webui/connectors_internals/connectors_internals_ui.h",
      "webui/connectors_internals/zero_trust_utils.cc",
      "webui/connectors_internals/zero_trust_utils.h",
    ]

    deps += [
      "//chrome/browser/enterprise/connectors/device_trust:features",
      "//chrome/browser/enterprise/connectors/device_trust/attestation/common:types",
      "//chrome/browser/ui/webui/connectors_internals:mojo_bindings",
    ]
  }
  if (is_chromeos) {
    deps += [
      "//chromeos/constants",
      "//chromeos/crosapi/cpp",
      "//chromeos/crosapi/cpp:crosapi_constants",
    ]
  }

  if (!is_fuchsia) {
    deps += [ "//components/crash/core/app" ]
  }

  if (is_android) {
    sources += [
      "android/android_about_app_info.cc",
      "android/android_about_app_info.h",
      "android/autofill/authenticator_selection_dialog_view_android.cc",
      "android/autofill/authenticator_selection_dialog_view_android.h",
      "android/autofill/autofill_error_dialog_view_android.cc",
      "android/autofill/autofill_error_dialog_view_android.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/autofill_progress_dialog_view_android.cc",
      "android/autofill/autofill_progress_dialog_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/autofill/otp_verification_dialog_view_android.cc",
      "android/autofill/otp_verification_dialog_view_android.h",
      "android/autofill/save_card_controller_metrics_android.cc",
      "android/autofill/save_card_controller_metrics_android.h",
      "android/autofill/save_card_message_confirm_controller.cc",
      "android/autofill/save_card_message_confirm_controller.h",
      "android/autofill/save_card_message_confirm_delegate.h",
      "android/autofill/save_card_message_controller_android.cc",
      "android/autofill/save_card_message_controller_android.h",
      "android/autofill/save_update_address_profile_prompt_view_android.cc",
      "android/autofill/save_update_address_profile_prompt_view_android.h",
      "android/autofill/snackbar/autofill_snackbar_view_android.cc",
      "android/autofill/snackbar/autofill_snackbar_view_android.h",
      "android/autofill/virtual_card_enrollment_view_android.cc",
      "android/autofill/virtual_card_enrollment_view_android.h",
      "android/autofill/virtual_card_utils.cc",
      "android/autofill/virtual_card_utils.h",
      "android/chrome_http_auth_handler.cc",
      "android/chrome_http_auth_handler.h",
      "android/chrome_javascript_app_modal_dialog_android.cc",
      "android/context_menu_helper.cc",
      "android/context_menu_helper.h",
      "android/device_dialog/chrome_bluetooth_chooser_android_delegate.cc",
      "android/device_dialog/chrome_bluetooth_chooser_android_delegate.h",
      "android/device_dialog/chrome_bluetooth_scanning_prompt_android_delegate.cc",
      "android/device_dialog/chrome_bluetooth_scanning_prompt_android_delegate.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/autofill_credit_card_filling_infobar.cc",
      "android/infobars/autofill_credit_card_filling_infobar.h",
      "android/infobars/autofill_offer_notification_infobar.cc",
      "android/infobars/autofill_offer_notification_infobar.h",
      "android/infobars/autofill_save_card_infobar.cc",
      "android/infobars/autofill_save_card_infobar.h",
      "android/infobars/autofill_virtual_card_enrollment_infobar.cc",
      "android/infobars/autofill_virtual_card_enrollment_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/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/reader_mode_infobar.cc",
      "android/infobars/reader_mode_infobar.h",
      "android/infobars/save_password_infobar.cc",
      "android/infobars/save_password_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/logo/logo_bridge.cc",
      "android/logo/logo_bridge.h",
      "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/start_surface/start_surface_android.cc",
      "android/start_surface/start_surface_android.h",
      "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/android_live_tab_context_wrapper.cc",
      "android/tab_model/android_live_tab_context_wrapper.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",
      "android/webid/account_selection_view_android.cc",
      "android/webid/account_selection_view_android.h",
      "autofill/autofill_bubble_base.h",
      "autofill/autofill_bubble_controller_base.cc",
      "autofill/autofill_bubble_controller_base.h",
      "autofill/payments/autofill_snackbar_controller.h",
      "autofill/payments/autofill_snackbar_controller_impl.cc",
      "autofill/payments/autofill_snackbar_controller_impl.h",
      "autofill/payments/autofill_snackbar_view.h",
      "autofill/payments/offer_notification_controller_android.cc",
      "autofill/payments/offer_notification_controller_android.h",
      "autofill/payments/virtual_card_enroll_bubble_controller_impl.cc",
      "autofill/payments/virtual_card_enroll_bubble_controller_impl.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",
      "page_info/about_this_site_message_delegate_android.cc",
      "page_info/about_this_site_message_delegate_android.h",
      "page_info/chrome_page_info_client.cc",
      "page_info/chrome_page_info_client.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/lens/lens_internals_ui_message_handler.cc",
      "webui/internals/lens/lens_internals_ui_message_handler.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_ui.cc",
      "webui/video_tutorials/video_player_ui.h",
      "webui/webapks/webapks_handler.cc",
      "webui/webapks/webapks_handler.h",
      "webui/webapks/webapks_ui.cc",
      "webui/webapks/webapks_ui.h",
    ]
    if (enable_feed_v2) {
      sources += [
        "webui/feed_internals/feed_internals_ui.cc",
        "webui/feed_internals/feed_internals_ui.h",
        "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/app:chromium_strings",
      "//chrome/browser/flags:flags_android",
      "//chrome/browser/image_decoder",
      "//chrome/browser/notifications/scheduler/public",
      "//chrome/browser/resources/webapks:resources",
      "//chrome/browser/ui/android/autofill/internal:jni_headers",
      "//chrome/browser/ui/webui/explore_sites_internals:mojo_bindings",
      "//chrome/browser/ui/webui/feed_internals:mojo_bindings",
      "//components/browser_ui/accessibility/android",
      "//components/browser_ui/client_certificate/android",
      "//components/browser_ui/share/android",
      "//components/browser_ui/util/android",
      "//components/embedder_support/android:context_menu",
      "//components/embedder_support/android:web_contents_delegate",
      "//components/feed/core/common:feed_core_common",
      "//components/feed/core/shared_prefs:feed_shared_prefs",
      "//components/feed/core/v2:feed_core_v2",
      "//components/feed/core/v2/public:common",
      "//components/infobars/android",
      "//components/infobars/content",
      "//components/javascript_dialogs/android:jni_headers",
      "//components/messages/android",
      "//components/messages/android:feature_flags",
      "//components/navigation_interception",
      "//components/optimization_guide/proto:optimization_guide_proto",
      "//components/page_info",
      "//components/page_info/android:android",
      "//components/page_info/core",
      "//components/page_info/core:proto",
      "//components/query_tiles",
      "//components/resources:android_resources",
      "//components/search_provider_logos",
      "//components/security_state/content/android",
      "//components/subresource_filter/core/browser",
      "//components/thin_webview:thin_webview",
      "//components/translate/content/android",
      "//components/webauthn/android",
      "//content/public/browser",
      "//device/vr/buildflags",
      "//services/device/public/cpp/usb",
      "//services/device/public/mojom:usb",
      "//ui/android",
      "//url:gurl_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",
      "autofill_assistant/password_change/apc_utils.cc",
      "autofill_assistant/password_change/apc_utils.h",
      "autofill_assistant/password_change/assistant_display_delegate.h",
      "autofill_assistant/password_change/assistant_onboarding_controller.cc",
      "autofill_assistant/password_change/assistant_onboarding_controller.h",
      "autofill_assistant/password_change/assistant_onboarding_controller_impl.cc",
      "autofill_assistant/password_change/assistant_onboarding_controller_impl.h",
      "autofill_assistant/password_change/assistant_onboarding_prompt.h",
      "autofill_assistant/password_change/assistant_side_panel_coordinator.h",
      "autofill_assistant/password_change/password_change_run_controller.h",
      "autofill_assistant/password_change/password_change_run_display.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/chrome_bluetooth_chooser_controller.cc",
      "bluetooth/chrome_bluetooth_chooser_controller.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",
      "breadcrumb_manager_browser_agent.cc",
      "breadcrumb_manager_browser_agent.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_menu_model_delegate.cc",
      "browser_tab_menu_model_delegate.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_user_data.h",
      "browser_view_prefs.cc",
      "browser_view_prefs.h",
      "browser_window.h",
      "browser_window_state.cc",
      "browser_window_state.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/bookmark_command_source.cc",
      "commander/bookmark_command_source.h",
      "commander/command_source.cc",
      "commander/command_source.h",
      "commander/commander.cc",
      "commander/commander.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/entity_match.cc",
      "commander/entity_match.h",
      "commander/open_url_command_source.cc",
      "commander/open_url_command_source.h",
      "commander/simple_command_source.cc",
      "commander/simple_command_source.h",
      "commander/tab_command_source.cc",
      "commander/tab_command_source.h",
      "commander/window_command_source.cc",
      "commander/window_command_source.h",
      "commerce/commerce_prompt.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",
      "download/download_item_mode.cc",
      "download/download_item_mode.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_producer.cc",
      "global_media_controls/cast_media_notification_producer.h",
      "global_media_controls/cast_media_session_controller.cc",
      "global_media_controls/cast_media_session_controller.h",
      "global_media_controls/media_item_ui_device_selector_delegate.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_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/presentation_request_notification_item.cc",
      "global_media_controls/presentation_request_notification_item.h",
      "global_media_controls/presentation_request_notification_producer.cc",
      "global_media_controls/presentation_request_notification_producer.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/trust_safety_sentiment_service.cc",
      "hats/trust_safety_sentiment_service.h",
      "hats/trust_safety_sentiment_service_factory.cc",
      "hats/trust_safety_sentiment_service_factory.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",
      "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",
      "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/media_cast_mode.cc",
      "media_router/media_cast_mode.h",
      "media_router/media_route_starter.cc",
      "media_router/media_route_starter.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/media_sink_with_cast_modes_observer.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/presentation_request_source_observer.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/chrome_accuracy_tip_ui.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",
      "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/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",
      "privacy_sandbox/privacy_sandbox_prompt.cc",
      "privacy_sandbox/privacy_sandbox_prompt.h",
      "privacy_sandbox/privacy_sandbox_prompt_helper.cc",
      "privacy_sandbox/privacy_sandbox_prompt_helper.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_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",
      "serial/serial_chooser.cc",
      "serial/serial_chooser.h",
      "serial/serial_chooser_controller.cc",
      "serial/serial_chooser_controller.h",
      "shared_highlighting/shared_highlighting_promo.cc",
      "shared_highlighting/shared_highlighting_promo.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/infobar_utils.cc",
      "startup/infobar_utils.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/saved_tab_groups/saved_tab_group.cc",
      "tabs/saved_tab_groups/saved_tab_group.h",
      "tabs/saved_tab_groups/saved_tab_group_keyed_service.cc",
      "tabs/saved_tab_groups/saved_tab_group_keyed_service.h",
      "tabs/saved_tab_groups/saved_tab_group_model.cc",
      "tabs/saved_tab_groups/saved_tab_group_model.h",
      "tabs/saved_tab_groups/saved_tab_group_model_listener.cc",
      "tabs/saved_tab_groups/saved_tab_group_model_listener.h",
      "tabs/saved_tab_groups/saved_tab_group_model_observer.h",
      "tabs/saved_tab_groups/saved_tab_group_service_factory.cc",
      "tabs/saved_tab_groups/saved_tab_group_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/background_thumbnail_capturer.h",
      "thumbnails/background_thumbnail_video_capturer.cc",
      "thumbnails/background_thumbnail_video_capturer.h",
      "thumbnails/thumbnail_capture_driver.cc",
      "thumbnails/thumbnail_capture_driver.h",
      "thumbnails/thumbnail_capture_info.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_bubble_delegate.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",
      "user_education/active_tab_tracker.cc",
      "user_education/active_tab_tracker.h",
      "user_education/browser_feature_promo_snooze_service.cc",
      "user_education/browser_feature_promo_snooze_service.h",
      "user_education/browser_tutorial_service.cc",
      "user_education/browser_tutorial_service.h",
      "user_education/reopen_tab_in_product_help.cc",
      "user_education/reopen_tab_in_product_help.h",
      "user_education/reopen_tab_in_product_help_factory.cc",
      "user_education/reopen_tab_in_product_help_factory.h",
      "user_education/reopen_tab_in_product_help_trigger.cc",
      "user_education/reopen_tab_in_product_help_trigger.h",
      "user_education/scoped_new_badge_tracker.cc",
      "user_education/scoped_new_badge_tracker.h",
      "user_education/user_education_service.cc",
      "user_education/user_education_service.h",
      "user_education/user_education_service_factory.cc",
      "user_education/user_education_service_factory.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/access_code_cast/access_code_cast_dialog.cc",
      "webui/access_code_cast/access_code_cast_dialog.h",
      "webui/access_code_cast/access_code_cast_handler.cc",
      "webui/access_code_cast/access_code_cast_handler.h",
      "webui/access_code_cast/access_code_cast_ui.cc",
      "webui/access_code_cast/access_code_cast_ui.h",
      "webui/app_management/app_management_page_handler.cc",
      "webui/app_management/app_management_page_handler.h",
      "webui/app_management/app_management_page_handler_factory.cc",
      "webui/app_management/app_management_page_handler_factory.h",
      "webui/app_service_internals/app_service_internals_page_handler_impl.cc",
      "webui/app_service_internals/app_service_internals_page_handler_impl.h",
      "webui/app_service_internals/app_service_internals_ui.cc",
      "webui/app_service_internals/app_service_internals_ui.h",
      "webui/bookmarks/bookmarks_message_handler.cc",
      "webui/bookmarks/bookmarks_message_handler.h",
      "webui/bookmarks/bookmarks_ui.cc",
      "webui/bookmarks/bookmarks_ui.h",
      "webui/browser_command/browser_command_handler.cc",
      "webui/browser_command/browser_command_handler.h",
      "webui/chrome_web_contents_handler.cc",
      "webui/chrome_web_contents_handler.h",
      "webui/color_change_listener/color_change_handler.cc",
      "webui/color_change_listener/color_change_handler.h",
      "webui/commander/commander_handler.cc",
      "webui/commander/commander_handler.h",
      "webui/commander/commander_ui.cc",
      "webui/commander/commander_ui.h",
      "webui/cr_components/history_clusters/history_clusters_util.cc",
      "webui/cr_components/history_clusters/history_clusters_util.h",
      "webui/cr_components/most_visited/most_visited_handler.cc",
      "webui/cr_components/most_visited/most_visited_handler.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/feed/feed_handler.cc",
      "webui/feed/feed_handler.h",
      "webui/feed/feed_ui.cc",
      "webui/feed/feed_ui.h",
      "webui/feed/feed_ui_config.cc",
      "webui/feed/feed_ui_config.h",
      "webui/feedback/child_web_dialog.cc",
      "webui/feedback/child_web_dialog.h",
      "webui/feedback/feedback_dialog.cc",
      "webui/feedback/feedback_dialog.h",
      "webui/feedback/feedback_handler.cc",
      "webui/feedback/feedback_handler.h",
      "webui/feedback/feedback_ui.cc",
      "webui/feedback/feedback_ui.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/history_clusters/history_clusters_handler.cc",
      "webui/history_clusters/history_clusters_handler.h",
      "webui/identity_internals_ui.cc",
      "webui/identity_internals_ui.h",
      "webui/inspect_ui.cc",
      "webui/inspect_ui.h",
      "webui/internals/user_education/user_education_internals_page_handler_impl.cc",
      "webui/internals/user_education/user_education_internals_page_handler_impl.h",
      "webui/managed_ui_handler.cc",
      "webui/managed_ui_handler.h",
      "webui/management/management_ui.cc",
      "webui/management/management_ui.h",
      "webui/management/management_ui_handler.cc",
      "webui/management/management_ui_handler.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/metrics_reporter/metrics_reporter.cc",
      "webui/metrics_reporter/metrics_reporter.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/ntp_pref_names.cc",
      "webui/new_tab_page/ntp_pref_names.h",
      "webui/new_tab_page/untrusted_source.cc",
      "webui/new_tab_page/untrusted_source.h",
      "webui/new_tab_page_third_party/new_tab_page_third_party_handler.cc",
      "webui/new_tab_page_third_party/new_tab_page_third_party_handler.h",
      "webui/new_tab_page_third_party/new_tab_page_third_party_ui.cc",
      "webui/new_tab_page_third_party/new_tab_page_third_party_ui.h",
      "webui/ntp/app_icon_webui_handler.cc",
      "webui/ntp/app_icon_webui_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/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/privacy_sandbox/privacy_sandbox_dialog_handler.cc",
      "webui/privacy_sandbox/privacy_sandbox_dialog_handler.h",
      "webui/privacy_sandbox/privacy_sandbox_dialog_ui.cc",
      "webui/privacy_sandbox/privacy_sandbox_dialog_ui.h",
      "webui/profile_info_watcher.cc",
      "webui/profile_info_watcher.h",
      "webui/profile_internals/profile_internals_handler.cc",
      "webui/profile_internals/profile_internals_handler.h",
      "webui/profile_internals/profile_internals_ui.cc",
      "webui/profile_internals/profile_internals_ui.h",
      "webui/realbox/realbox_handler.cc",
      "webui/realbox/realbox_handler.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/captions_handler.cc",
      "webui/settings/captions_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/privacy_sandbox_handler.cc",
      "webui/settings/privacy_sandbox_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/settings_utils.cc",
      "webui/settings/settings_utils.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/side_panel/bookmarks/bookmarks_page_handler.cc",
      "webui/side_panel/bookmarks/bookmarks_page_handler.h",
      "webui/side_panel/bookmarks/bookmarks_side_panel_ui.cc",
      "webui/side_panel/bookmarks/bookmarks_side_panel_ui.h",
      "webui/side_panel/history_clusters/history_clusters_side_panel_ui.cc",
      "webui/side_panel/history_clusters/history_clusters_side_panel_ui.h",
      "webui/side_panel/read_anything/read_anything_page_handler.cc",
      "webui/side_panel/read_anything/read_anything_page_handler.h",
      "webui/side_panel/read_anything/read_anything_ui.cc",
      "webui/side_panel/read_anything/read_anything_ui.h",
      "webui/side_panel/reading_list/reading_list_page_handler.cc",
      "webui/side_panel/reading_list/reading_list_page_handler.h",
      "webui/side_panel/reading_list/reading_list_ui.cc",
      "webui/side_panel/reading_list/reading_list_ui.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/support_tool/support_tool_ui.cc",
      "webui/support_tool/support_tool_ui.h",
      "webui/support_tool/support_tool_ui_utils.cc",
      "webui/support_tool/support_tool_ui_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_prefs.cc",
      "webui/tab_search/tab_search_prefs.h",
      "webui/tab_search/tab_search_ui.cc",
      "webui/tab_search/tab_search_ui.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_app_internals/web_app_internals_source.cc",
      "webui/web_app_internals/web_app_internals_source.h",
      "webui/webui_gallery/webui_gallery_ui.cc",
      "webui/webui_gallery/webui_gallery_ui.h",
      "webui/whats_new/whats_new_handler.cc",
      "webui/whats_new/whats_new_handler.h",
      "webui/whats_new/whats_new_ui.cc",
      "webui/whats_new/whats_new_ui.h",
      "webui/whats_new/whats_new_util.cc",
      "webui/whats_new/whats_new_util.h",
      "window_sizer/window_sizer.cc",
      "window_sizer/window_sizer.h",
    ]
    if (is_chrome_branded) {
      sources += [
        "webui/media_router/cast_feedback_ui.cc",
        "webui/media_router/cast_feedback_ui.h",
      ]
    }

    deps += [
      "//base",
      "//build:chromeos_buildflags",
      "//chrome/app/vector_icons",
      "//chrome/browser:browser_themes",
      "//chrome/browser:theme_properties",
      "//chrome/browser/ash/system_web_apps/types:types",
      "//chrome/browser/autofill_assistant/password_change/proto:proto",
      "//chrome/browser/autofill_assistant/password_change/vector_icons",
      "//chrome/browser/browsing_data:constants",
      "//chrome/browser/cart:mojo_bindings",
      "//chrome/browser/image_editor",
      "//chrome/browser/image_editor:image_editor_component_util",
      "//chrome/browser/media/router",
      "//chrome/browser/media/router/discovery:discovery",
      "//chrome/browser/media/router/discovery/access_code:access_code_sink_service",
      "//chrome/browser/new_tab_page/chrome_colors:generate_chrome_colors_info",
      "//chrome/browser/new_tab_page/modules/drive:mojo_bindings",
      "//chrome/browser/new_tab_page/modules/photos:mojo_bindings",
      "//chrome/browser/new_tab_page/modules/task_module:mojo_bindings",
      "//chrome/browser/profile_resetter:profile_reset_report_proto",
      "//chrome/browser/resource_coordinator:tab_metrics_event_proto",
      "//chrome/browser/resource_coordinator/tab_ranker",
      "//chrome/browser/resources/identity_internals:resources",
      "//chrome/browser/resources/support_tool:resources",
      "//chrome/browser/safe_browsing",
      "//chrome/browser/safe_browsing:advanced_protection",
      "//chrome/browser/support_tool:support_tool_proto",
      "//chrome/browser/ui/color:color_headers",
      "//chrome/browser/ui/color:mixers",
      "//chrome/browser/ui/commander:fuzzy_finder",
      "//chrome/browser/ui/webui/access_code_cast:mojo_bindings",
      "//chrome/browser/ui/webui/app_service_internals:mojo_bindings",
      "//chrome/browser/ui/webui/feed:mojo_bindings",
      "//chrome/browser/ui/webui/image_editor:image_editor_ui",
      "//chrome/browser/ui/webui/image_editor:mojo_bindings",
      "//chrome/browser/ui/webui/internals/user_education:mojo_bindings",
      "//chrome/browser/ui/webui/new_tab_page:mojo_bindings",
      "//chrome/browser/ui/webui/new_tab_page_third_party:mojo_bindings",
      "//chrome/browser/ui/webui/tab_strip:mojo_bindings",
      "//chrome/browser/web_applications",
      "//chrome/common:buildflags",
      "//chrome/common:version_header",
      "//chrome/common/search:mojo_bindings",
      "//chrome/common/themes:autogenerated_theme_util",
      "//components/app_constants",
      "//components/commerce/content/browser:hint",
      "//components/commerce/core:feature_list",
      "//components/enterprise/common:download_item_reroute_info",
      "//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/paint_preview/buildflags",
      "//components/performance_manager:site_data_proto",
      "//components/reading_list/features:flags",
      "//components/safe_browsing/core/common:safe_browsing_policy_handler",
      "//components/safety_check",
      "//components/search_provider_logos",
      "//components/services/app_service/public/cpp:app_types",
      "//components/services/app_service/public/cpp:app_update",
      "//components/services/app_service/public/cpp:icon_types",
      "//components/services/app_service/public/cpp:preferred_app",
      "//components/services/app_service/public/cpp:preferred_apps",
      "//components/services/app_service/public/cpp:run_on_os_login",
      "//components/services/app_service/public/cpp:types",
      "//components/services/app_service/public/mojom",
      "//components/ui_metrics",
      "//components/url_formatter",
      "//components/url_param_filter/content",
      "//components/user_education/common",
      "//components/user_notes:features",
      "//components/vector_icons",
      "//components/web_modal",
      "//components/webauthn/content/browser",
      "//device/bluetooth",
      "//device/bluetooth/strings:strings_grit",
      "//device/fido",
      "//services/device/public/cpp/hid",
      "//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/base/dragdrop:types",
      "//ui/base/dragdrop/mojom",
      "//ui/events",
      "//ui/webui/resources/cr_components/app_management:mojo_bindings",
      "//ui/webui/resources/cr_components/history_clusters:mojo_bindings",
      "//ui/webui/resources/js/browser_command:mojo_bindings",
      "//ui/webui/resources/js/metrics_reporter:mojo_bindings",
    ]
    public_deps += [
      "//build:branding_buildflags",
      "//chrome/browser/ui/tabs:tab_enums",
      "//ui/base/dragdrop/mojom:mojom_headers",
    ]

    allow_circular_includes_from += [ "//chrome/browser/media/router" ]

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

    if (is_linux || is_chromeos_lacros) {
      deps += [ "//ui/base/ime/linux" ]
    }

    if (enable_extensions) {
      deps += [
        "//chrome/browser/web_applications/extensions",
        "//google_apis/common",
        "//google_apis/drive",
      ]
    }

    if (!is_official_build) {
      sources += [
        "webui/new_tab_page/foo/foo_handler.cc",
        "webui/new_tab_page/foo/foo_handler.h",
      ]
      deps += [ "//chrome/browser/ui/webui/new_tab_page/foo:mojo_bindings" ]
    }
  }

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

  if (enable_supervised_users) {
    sources += [
      "webui/family_link_user_internals/family_link_user_internals_message_handler.cc",
      "webui/family_link_user_internals/family_link_user_internals_message_handler.h",
      "webui/family_link_user_internals/family_link_user_internals_ui.cc",
      "webui/family_link_user_internals/family_link_user_internals_ui.h",
    ]
    deps += [
      "//chrome/browser/supervised_user/supervised_user_error_page",
      "//chrome/browser/supervised_user/supervised_user_features",
    ]
  }

  if (enable_supervised_users && enable_extensions) {
    assert(is_chromeos)
    sources += [
      "supervised_user/parent_permission_dialog.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",
    ]
    deps += [
      "//build:chromeos_buildflags",
      "//chromeos/ui/vector_icons",
    ]
  }

  if (is_chromeos_ash) {
    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_notifier_impl_old.cc",
      "app_list/app_list_notifier_impl_old.h",
      "app_list/app_list_sync_model_sanitizer.cc",
      "app_list/app_list_sync_model_sanitizer.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.cc",
      "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/arc/intent.cc",
      "app_list/arc/intent.h",
      "app_list/chrome_app_list_item.cc",
      "app_list/chrome_app_list_item.h",
      "app_list/chrome_app_list_item_manager.cc",
      "app_list/chrome_app_list_item_manager.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/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/reorder/app_list_reorder_core.cc",
      "app_list/reorder/app_list_reorder_core.h",
      "app_list/reorder/app_list_reorder_delegate.h",
      "app_list/reorder/app_list_reorder_util.cc",
      "app_list/reorder/app_list_reorder_util.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_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/arc/fake_recommend_apps_fetcher_delegate.cc",
      "app_list/search/arc/fake_recommend_apps_fetcher_delegate.h",
      "app_list/search/arc/recommend_apps_fetcher.cc",
      "app_list/search/arc/recommend_apps_fetcher.h",
      "app_list/search/arc/recommend_apps_fetcher_delegate.h",
      "app_list/search/arc/recommend_apps_fetcher_impl.cc",
      "app_list/search/arc/recommend_apps_fetcher_impl.h",
      "app_list/search/assistant_text_search_provider.cc",
      "app_list/search/assistant_text_search_provider.h",
      "app_list/search/burnin_controller.cc",
      "app_list/search/burnin_controller.h",
      "app_list/search/chrome_search_result.cc",
      "app_list/search/chrome_search_result.h",
      "app_list/search/common/icon_constants.cc",
      "app_list/search/common/icon_constants.h",
      "app_list/search/common/search_result_util.cc",
      "app_list/search/common/search_result_util.h",
      "app_list/search/common/string_util.cc",
      "app_list/search/common/string_util.h",
      "app_list/search/common/types_util.cc",
      "app_list/search/common/types_util.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/files/drive_search_provider.cc",
      "app_list/search/files/drive_search_provider.h",
      "app_list/search/files/file_result.cc",
      "app_list/search/files/file_result.h",
      "app_list/search/files/file_search_provider.cc",
      "app_list/search/files/file_search_provider.h",
      "app_list/search/files/item_suggest_cache.cc",
      "app_list/search/files/item_suggest_cache.h",
      "app_list/search/files/justifications.cc",
      "app_list/search/files/justifications.h",
      "app_list/search/files/zero_state_drive_provider.cc",
      "app_list/search/files/zero_state_drive_provider.h",
      "app_list/search/files/zero_state_file_provider.cc",
      "app_list/search/files/zero_state_file_provider.h",
      "app_list/search/games/game_provider.cc",
      "app_list/search/games/game_provider.h",
      "app_list/search/games/game_result.cc",
      "app_list/search/games/game_result.h",
      "app_list/search/help_app_provider.cc",
      "app_list/search/help_app_provider.h",
      "app_list/search/help_app_zero_state_provider.cc",
      "app_list/search/help_app_zero_state_provider.h",
      "app_list/search/keyboard_shortcut_data.cc",
      "app_list/search/keyboard_shortcut_data.h",
      "app_list/search/keyboard_shortcut_provider.cc",
      "app_list/search/keyboard_shortcut_provider.h",
      "app_list/search/keyboard_shortcut_result.cc",
      "app_list/search/keyboard_shortcut_result.h",
      "app_list/search/mixer.cc",
      "app_list/search/mixer.h",
      "app_list/search/omnibox_answer_result.cc",
      "app_list/search/omnibox_answer_result.h",
      "app_list/search/omnibox_lacros_provider.cc",
      "app_list/search/omnibox_lacros_provider.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/omnibox_util.h",
      "app_list/search/open_tab_result.cc",
      "app_list/search/open_tab_result.h",
      "app_list/search/os_settings_provider.cc",
      "app_list/search/os_settings_provider.h",
      "app_list/search/personalization_provider.cc",
      "app_list/search/personalization_provider.h",
      "app_list/search/ranking/answer_ranker.cc",
      "app_list/search/ranking/answer_ranker.h",
      "app_list/search/ranking/best_match_ranker.cc",
      "app_list/search/ranking/best_match_ranker.h",
      "app_list/search/ranking/constants.h",
      "app_list/search/ranking/continue_ranker.cc",
      "app_list/search/ranking/continue_ranker.h",
      "app_list/search/ranking/filtering_ranker.cc",
      "app_list/search/ranking/filtering_ranker.h",
      "app_list/search/ranking/ftrl_ranker.cc",
      "app_list/search/ranking/ftrl_ranker.h",
      "app_list/search/ranking/launch_data.cc",
      "app_list/search/ranking/launch_data.h",
      "app_list/search/ranking/mrfu_ranker.cc",
      "app_list/search/ranking/mrfu_ranker.h",
      "app_list/search/ranking/query_highlighter.cc",
      "app_list/search/ranking/query_highlighter.h",
      "app_list/search/ranking/ranker.cc",
      "app_list/search/ranking/ranker.h",
      "app_list/search/ranking/ranker_delegate.cc",
      "app_list/search/ranking/ranker_delegate.h",
      "app_list/search/ranking/removed_results_ranker.cc",
      "app_list/search/ranking/removed_results_ranker.h",
      "app_list/search/ranking/score_normalizing_ranker.cc",
      "app_list/search/ranking/score_normalizing_ranker.h",
      "app_list/search/ranking/scoring.cc",
      "app_list/search/ranking/scoring.h",
      "app_list/search/ranking/types.cc",
      "app_list/search/ranking/types.h",
      "app_list/search/ranking/util.cc",
      "app_list/search/ranking/util.h",
      "app_list/search/search_controller.h",
      "app_list/search/search_controller_factory.cc",
      "app_list/search/search_controller_factory.h",
      "app_list/search/search_controller_impl.cc",
      "app_list/search/search_controller_impl.h",
      "app_list/search/search_controller_impl_new.cc",
      "app_list/search/search_controller_impl_new.h",
      "app_list/search/search_features.cc",
      "app_list/search/search_features.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_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_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/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_result_ranker.cc",
      "app_list/search/search_result_ranker/search_result_ranker.h",
      "app_list/search/search_tags_util.cc",
      "app_list/search/search_tags_util.h",
      "app_list/search/util/ftrl_optimizer.cc",
      "app_list/search/util/ftrl_optimizer.h",
      "app_list/search/util/mrfu_cache.cc",
      "app_list/search/util/mrfu_cache.h",
      "app_list/search/util/persistent_proto.h",
      "app_list/search/util/score_normalizer.cc",
      "app_list/search/util/score_normalizer.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/app_icon_color_cache.cc",
      "ash/app_icon_color_cache.h",
      "ash/arc_custom_tab_modal_dialog_host.cc",
      "ash/arc_custom_tab_modal_dialog_host.h",
      "ash/arc_open_url_delegate_impl.cc",
      "ash/arc_open_url_delegate_impl.h",
      "ash/ash_shell_init.cc",
      "ash/ash_shell_init.h",
      "ash/ash_util.cc",
      "ash/ash_util.h",
      "ash/ash_web_view_factory_impl.cc",
      "ash/ash_web_view_factory_impl.h",
      "ash/ash_web_view_impl.cc",
      "ash/ash_web_view_impl.h",
      "ash/assistant/assistant_browser_delegate_impl.cc",
      "ash/assistant/assistant_browser_delegate_impl.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/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/browser_data_migration_error_dialog.cc",
      "ash/browser_data_migration_error_dialog.h",
      "ash/calendar/calendar_client_impl.cc",
      "ash/calendar/calendar_client_impl.h",
      "ash/calendar/calendar_keyed_service.cc",
      "ash/calendar/calendar_keyed_service.h",
      "ash/calendar/calendar_keyed_service_factory.cc",
      "ash/calendar/calendar_keyed_service_factory.h",
      "ash/capture_mode/chrome_capture_mode_delegate.cc",
      "ash/capture_mode/chrome_capture_mode_delegate.h",
      "ash/capture_mode/recording_overlay_view_impl.cc",
      "ash/capture_mode/recording_overlay_view_impl.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_new_window_client.cc",
      "ash/chrome_new_window_client.h",
      "ash/chrome_new_window_delegate_provider.cc",
      "ash/chrome_new_window_delegate_provider.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/crosapi_new_window_delegate.cc",
      "ash/crosapi_new_window_delegate.h",
      "ash/default_pinned_apps.cc",
      "ash/default_pinned_apps.h",
      "ash/desks/chrome_desks_templates_delegate.cc",
      "ash/desks/chrome_desks_templates_delegate.h",
      "ash/desks/desks_client.cc",
      "ash/desks/desks_client.h",
      "ash/desks/desks_templates_app_launch_handler.cc",
      "ash/desks/desks_templates_app_launch_handler.h",
      "ash/device_scheduled_reboot/reboot_notification_controller.cc",
      "ash/device_scheduled_reboot/reboot_notification_controller.h",
      "ash/device_scheduled_reboot/scheduled_reboot_dialog.cc",
      "ash/device_scheduled_reboot/scheduled_reboot_dialog.h",
      "ash/fwupd_download_client_impl.cc",
      "ash/fwupd_download_client_impl.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_util.cc",
      "ash/holding_space/holding_space_util.h",
      "ash/image_downloader_impl.cc",
      "ash/image_downloader_impl.h",
      "ash/ime_controller_client_impl.cc",
      "ash/ime_controller_client_impl.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/login_screen_client_impl.cc",
      "ash/login_screen_client_impl.h",
      "ash/login_screen_shown_observer.h",
      "ash/media_client_impl.cc",
      "ash/media_client_impl.h",
      "ash/microphone_mute_notification_delegate_impl.cc",
      "ash/microphone_mute_notification_delegate_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/projector/pending_screencast_manager.cc",
      "ash/projector/pending_screencast_manager.h",
      "ash/projector/projector_app_client_impl.cc",
      "ash/projector/projector_app_client_impl.h",
      "ash/projector/projector_client_impl.cc",
      "ash/projector/projector_client_impl.h",
      "ash/projector/projector_soda_installation_controller.cc",
      "ash/projector/projector_soda_installation_controller.h",
      "ash/projector/projector_utils.cc",
      "ash/projector/projector_utils.h",
      "ash/screen_orientation_delegate_chromeos.cc",
      "ash/screen_orientation_delegate_chromeos.h",
      "ash/screenshot_area.cc",
      "ash/screenshot_area.h",
      "ash/security_token_session_restriction_view.cc",
      "ash/security_token_session_restriction_view.h",
      "ash/session_controller_client_impl.cc",
      "ash/session_controller_client_impl.h",
      "ash/session_util.cc",
      "ash/session_util.h",
      "ash/sharesheet/sharesheet_bubble_view.cc",
      "ash/sharesheet/sharesheet_bubble_view.h",
      "ash/sharesheet/sharesheet_bubble_view_delegate.cc",
      "ash/sharesheet/sharesheet_bubble_view_delegate.h",
      "ash/sharesheet/sharesheet_constants.h",
      "ash/sharesheet/sharesheet_expand_button.cc",
      "ash/sharesheet/sharesheet_expand_button.h",
      "ash/sharesheet/sharesheet_header_view.cc",
      "ash/sharesheet/sharesheet_header_view.h",
      "ash/sharesheet/sharesheet_target_button.cc",
      "ash/sharesheet/sharesheet_target_button.h",
      "ash/sharesheet/sharesheet_util.cc",
      "ash/sharesheet/sharesheet_util.h",
      "ash/shelf/app_service/app_service_app_window_arc_tracker.cc",
      "ash/shelf/app_service/app_service_app_window_arc_tracker.h",
      "ash/shelf/app_service/app_service_app_window_crostini_tracker.cc",
      "ash/shelf/app_service/app_service_app_window_crostini_tracker.h",
      "ash/shelf/app_service/app_service_app_window_shelf_controller.cc",
      "ash/shelf/app_service/app_service_app_window_shelf_controller.h",
      "ash/shelf/app_service/app_service_app_window_shelf_item_controller.cc",
      "ash/shelf/app_service/app_service_app_window_shelf_item_controller.h",
      "ash/shelf/app_service/app_service_instance_registry_helper.cc",
      "ash/shelf/app_service/app_service_instance_registry_helper.h",
      "ash/shelf/app_service/app_service_shelf_context_menu.cc",
      "ash/shelf/app_service/app_service_shelf_context_menu.h",
      "ash/shelf/app_service/exo_app_type_resolver.cc",
      "ash/shelf/app_service/exo_app_type_resolver.h",
      "ash/shelf/app_service/shelf_app_service_app_updater.cc",
      "ash/shelf/app_service/shelf_app_service_app_updater.h",
      "ash/shelf/app_shortcut_shelf_item_controller.cc",
      "ash/shelf/app_shortcut_shelf_item_controller.h",
      "ash/shelf/app_window_base.cc",
      "ash/shelf/app_window_base.h",
      "ash/shelf/app_window_shelf_controller.cc",
      "ash/shelf/app_window_shelf_controller.h",
      "ash/shelf/app_window_shelf_item_controller.cc",
      "ash/shelf/app_window_shelf_item_controller.h",
      "ash/shelf/arc_app_shelf_id.cc",
      "ash/shelf/arc_app_shelf_id.h",
      "ash/shelf/arc_app_window.cc",
      "ash/shelf/arc_app_window.h",
      "ash/shelf/arc_app_window_delegate.h",
      "ash/shelf/arc_app_window_info.cc",
      "ash/shelf/arc_app_window_info.h",
      "ash/shelf/arc_playstore_shortcut_shelf_item_controller.cc",
      "ash/shelf/arc_playstore_shortcut_shelf_item_controller.h",
      "ash/shelf/arc_shelf_spinner_item_controller.cc",
      "ash/shelf/arc_shelf_spinner_item_controller.h",
      "ash/shelf/browser_app_shelf_controller.cc",
      "ash/shelf/browser_app_shelf_controller.h",
      "ash/shelf/browser_app_shelf_item_controller.cc",
      "ash/shelf/browser_app_shelf_item_controller.h",
      "ash/shelf/browser_shortcut_shelf_item_controller.cc",
      "ash/shelf/browser_shortcut_shelf_item_controller.h",
      "ash/shelf/browser_status_monitor.cc",
      "ash/shelf/browser_status_monitor.h",
      "ash/shelf/chrome_shelf_controller.cc",
      "ash/shelf/chrome_shelf_controller.h",
      "ash/shelf/chrome_shelf_controller_util.cc",
      "ash/shelf/chrome_shelf_controller_util.h",
      "ash/shelf/chrome_shelf_item_factory.cc",
      "ash/shelf/chrome_shelf_item_factory.h",
      "ash/shelf/chrome_shelf_prefs.cc",
      "ash/shelf/chrome_shelf_prefs.h",
      "ash/shelf/crostini_app_display.cc",
      "ash/shelf/crostini_app_display.h",
      "ash/shelf/crostini_app_window.cc",
      "ash/shelf/crostini_app_window.h",
      "ash/shelf/extension_shelf_context_menu.cc",
      "ash/shelf/extension_shelf_context_menu.h",
      "ash/shelf/extension_uninstaller.cc",
      "ash/shelf/extension_uninstaller.h",
      "ash/shelf/lacros_app_window.cc",
      "ash/shelf/lacros_app_window.h",
      "ash/shelf/settings_window_observer.cc",
      "ash/shelf/settings_window_observer.h",
      "ash/shelf/shelf_app_updater.cc",
      "ash/shelf/shelf_app_updater.h",
      "ash/shelf/shelf_context_menu.cc",
      "ash/shelf/shelf_context_menu.h",
      "ash/shelf/shelf_controller_helper.cc",
      "ash/shelf/shelf_controller_helper.h",
      "ash/shelf/shelf_extension_app_updater.cc",
      "ash/shelf/shelf_extension_app_updater.h",
      "ash/shelf/shelf_spinner_controller.cc",
      "ash/shelf/shelf_spinner_controller.h",
      "ash/shelf/shelf_spinner_item_controller.cc",
      "ash/shelf/shelf_spinner_item_controller.h",
      "ash/shelf/standalone_browser_extension_app_context_menu.cc",
      "ash/shelf/standalone_browser_extension_app_context_menu.h",
      "ash/shelf/standalone_browser_extension_app_shelf_item_controller.cc",
      "ash/shelf/standalone_browser_extension_app_shelf_item_controller.h",
      "ash/system_tray_client_impl.cc",
      "ash/system_tray_client_impl.h",
      "ash/tab_cluster_ui_client.cc",
      "ash/tab_cluster_ui_client.h",
      "ash/test_ime_controller.cc",
      "ash/test_ime_controller.h",
      "ash/thumbnail_loader.cc",
      "ash/thumbnail_loader.h",
      "ash/vpn_list_forwarder.cc",
      "ash/vpn_list_forwarder.h",
      "ash/wallpaper_controller_client_impl.cc",
      "ash/wallpaper_controller_client_impl.h",
      "ash/window_pin_util.cc",
      "ash/window_pin_util.h",
      "ash/window_properties.cc",
      "ash/window_properties.h",
      "browser_commands_chromeos.cc",
      "browser_commands_chromeos.h",
      "settings_window_manager_chromeos.cc",
      "settings_window_manager_chromeos.h",
      "settings_window_manager_observer_chromeos.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/borealis/borealis_splash_screen_view.cc",
      "views/borealis/borealis_splash_screen_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_dialog.cc",
      "views/crostini/crostini_app_restart_dialog.h",
      "views/crostini/crostini_expired_container_warning_view.cc",
      "views/crostini/crostini_expired_container_warning_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_filesystem_view.cc",
      "views/crostini/crostini_update_filesystem_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/custom_tab_browser_frame.cc",
      "views/frame/custom_tab_browser_frame.h",
      "views/frame/immersive_mode_controller_chromeos.cc",
      "views/frame/immersive_mode_controller_chromeos.h",
      "views/frame/native_browser_frame_factory_chromeos.cc",
      "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/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/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",
      "web_applications/file_stream_data_pipe_getter.cc",
      "web_applications/file_stream_data_pipe_getter.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_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/arc_power_control/arc_power_control_handler.cc",
      "webui/chromeos/arc_power_control/arc_power_control_handler.h",
      "webui/chromeos/arc_power_control/arc_power_control_ui.cc",
      "webui/chromeos/arc_power_control/arc_power_control_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/audio/audio_handler.cc",
      "webui/chromeos/audio/audio_handler.h",
      "webui/chromeos/audio/audio_ui.cc",
      "webui/chromeos/audio/audio_ui.h",
      "webui/chromeos/bluetooth_pairing_dialog.cc",
      "webui/chromeos/bluetooth_pairing_dialog.h",
      "webui/chromeos/bluetooth_shared_load_time_data_provider.cc",
      "webui/chromeos/bluetooth_shared_load_time_data_provider.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/connectivity_diagnostics_dialog.cc",
      "webui/chromeos/connectivity_diagnostics_dialog.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/diagnostics_dialog.cc",
      "webui/chromeos/diagnostics_dialog.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/edu_coexistence/edu_coexistence_login_handler_chromeos.cc",
      "webui/chromeos/edu_coexistence/edu_coexistence_login_handler_chromeos.h",
      "webui/chromeos/edu_coexistence/edu_coexistence_state_tracker.cc",
      "webui/chromeos/edu_coexistence/edu_coexistence_state_tracker.h",
      "webui/chromeos/emoji/emoji_page_handler.cc",
      "webui/chromeos/emoji/emoji_page_handler.h",
      "webui/chromeos/emoji/emoji_ui.cc",
      "webui/chromeos/emoji/emoji_ui.h",
      "webui/chromeos/guest_os_installer/guest_os_installer_dialog.cc",
      "webui/chromeos/guest_os_installer/guest_os_installer_dialog.h",
      "webui/chromeos/human_presence_internals_ui.cc",
      "webui/chromeos/human_presence_internals_ui.h",
      "webui/chromeos/image_source.cc",
      "webui/chromeos/image_source.h",
      "webui/chromeos/in_session_password_change/base_lock_dialog.cc",
      "webui/chromeos/in_session_password_change/base_lock_dialog.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_captive_portal_dialog.cc",
      "webui/chromeos/in_session_password_change/lock_screen_captive_portal_dialog.h",
      "webui/chromeos/in_session_password_change/lock_screen_network_dialog.cc",
      "webui/chromeos/in_session_password_change/lock_screen_network_dialog.h",
      "webui/chromeos/in_session_password_change/lock_screen_network_handler.cc",
      "webui/chromeos/in_session_password_change/lock_screen_network_handler.h",
      "webui/chromeos/in_session_password_change/lock_screen_network_ui.cc",
      "webui/chromeos/in_session_password_change/lock_screen_network_ui.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/launcher_internals/launcher_internals_handler.cc",
      "webui/chromeos/launcher_internals/launcher_internals_handler.h",
      "webui/chromeos/launcher_internals/launcher_internals_ui.cc",
      "webui/chromeos/launcher_internals/launcher_internals_ui.h",
      "webui/chromeos/login/active_directory_login_screen_handler.cc",
      "webui/chromeos/login/active_directory_login_screen_handler.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/check_passwords_against_cryptohome_helper.cc",
      "webui/chromeos/login/check_passwords_against_cryptohome_helper.h",
      "webui/chromeos/login/consolidated_consent_screen_handler.cc",
      "webui/chromeos/login/consolidated_consent_screen_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/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/guest_tos_screen_handler.cc",
      "webui/chromeos/login/guest_tos_screen_handler.h",
      "webui/chromeos/login/hardware_data_collection_screen_handler.cc",
      "webui/chromeos/login/hardware_data_collection_screen_handler.h",
      "webui/chromeos/login/hid_detection_screen_handler.cc",
      "webui/chromeos/login/hid_detection_screen_handler.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/lacros_data_migration_screen_handler.cc",
      "webui/chromeos/login/lacros_data_migration_screen_handler.h",
      "webui/chromeos/login/locale_switch_screen_handler.cc",
      "webui/chromeos/login/locale_switch_screen_handler.h",
      "webui/chromeos/login/management_transition_screen_handler.cc",
      "webui/chromeos/login/management_transition_screen_handler.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/offline_login_screen_handler.cc",
      "webui/chromeos/login/offline_login_screen_handler.h",
      "webui/chromeos/login/online_login_helper.cc",
      "webui/chromeos/login/online_login_helper.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/os_install_screen_handler.cc",
      "webui/chromeos/login/os_install_screen_handler.h",
      "webui/chromeos/login/os_trial_screen_handler.cc",
      "webui/chromeos/login/os_trial_screen_handler.h",
      "webui/chromeos/login/packaged_license_screen_handler.cc",
      "webui/chromeos/login/packaged_license_screen_handler.h",
      "webui/chromeos/login/parental_handoff_screen_handler.cc",
      "webui/chromeos/login/parental_handoff_screen_handler.h",
      "webui/chromeos/login/pin_setup_screen_handler.cc",
      "webui/chromeos/login/pin_setup_screen_handler.h",
      "webui/chromeos/login/quick_start_screen_handler.cc",
      "webui/chromeos/login/quick_start_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/saml_confirm_password_handler.cc",
      "webui/chromeos/login/saml_confirm_password_handler.h",
      "webui/chromeos/login/signin_fatal_error_screen_handler.cc",
      "webui/chromeos/login/signin_fatal_error_screen_handler.h",
      "webui/chromeos/login/signin_screen_handler.cc",
      "webui/chromeos/login/signin_screen_handler.h",
      "webui/chromeos/login/smart_privacy_protection_screen_handler.cc",
      "webui/chromeos/login/smart_privacy_protection_screen_handler.h",
      "webui/chromeos/login/ssh_configured_handler.cc",
      "webui/chromeos/login/ssh_configured_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/testapi/oobe_test_api_handler.cc",
      "webui/chromeos/login/testapi/oobe_test_api_handler.h",
      "webui/chromeos/login/theme_selection_screen_handler.cc",
      "webui/chromeos/login/theme_selection_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_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/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_logs_message_handler.cc",
      "webui/chromeos/network_logs_message_handler.h",
      "webui/chromeos/network_ui.cc",
      "webui/chromeos/network_ui.h",
      "webui/chromeos/notification_tester/notification_tester_ui.cc",
      "webui/chromeos/notification_tester/notification_tester_ui.h",
      "webui/chromeos/onc_import_message_handler.cc",
      "webui/chromeos/onc_import_message_handler.h",
      "webui/chromeos/parent_access/parent_access_dialog.cc",
      "webui/chromeos/parent_access/parent_access_dialog.h",
      "webui/chromeos/parent_access/parent_access_ui.cc",
      "webui/chromeos/parent_access/parent_access_ui.h",
      "webui/chromeos/parent_access/parent_access_ui_handler_impl.cc",
      "webui/chromeos/parent_access/parent_access_ui_handler_impl.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/shimless_rma_dialog.cc",
      "webui/chromeos/shimless_rma_dialog.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/chromeos/vm/vm_ui.cc",
      "webui/chromeos/vm/vm_ui.h",
      "webui/extensions/ash/kiosk_apps_handler.cc",
      "webui/extensions/ash/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/management_ui_handler_chromeos.cc",
      "webui/management/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_prefs_handler.cc",
      "webui/nearby_internals/nearby_internals_prefs_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_internals/quick_pair/quick_pair_handler.cc",
      "webui/nearby_internals/quick_pair/quick_pair_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/policy/status_provider/device_active_directory_policy_status_provider.cc",
      "webui/policy/status_provider/device_active_directory_policy_status_provider.h",
      "webui/policy/status_provider/device_cloud_policy_status_provider_chromeos.cc",
      "webui/policy/status_provider/device_cloud_policy_status_provider_chromeos.h",
      "webui/policy/status_provider/device_local_account_policy_status_provider.cc",
      "webui/policy/status_provider/device_local_account_policy_status_provider.h",
      "webui/policy/status_provider/user_active_directory_policy_status_provider.cc",
      "webui/policy/status_provider/user_active_directory_policy_status_provider.h",
      "webui/policy/status_provider/user_cloud_policy_status_provider_chromeos.cc",
      "webui/policy/status_provider/user_cloud_policy_status_provider_chromeos.h",
      "webui/settings/ash/app_management/app_management_uma.h",
      "webui/settings/ash/calculator/size_calculator.cc",
      "webui/settings/ash/calculator/size_calculator.h",
      "webui/settings/ash/os_apps_page/app_notification_handler.cc",
      "webui/settings/ash/os_apps_page/app_notification_handler.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/apps_section.cc",
      "webui/settings/chromeos/apps_section.h",
      "webui/settings/chromeos/bluetooth_handler.cc",
      "webui/settings/chromeos/bluetooth_handler.h",
      "webui/settings/chromeos/bluetooth_section.cc",
      "webui/settings/chromeos/bluetooth_section.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_name_handler.cc",
      "webui/settings/chromeos/device_name_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/guest_os_handler.cc",
      "webui/settings/chromeos/guest_os_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/kerberos_section.cc",
      "webui/settings/chromeos/kerberos_section.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/metrics_consent_handler.cc",
      "webui/settings/chromeos/metrics_consent_handler.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/peripheral_data_access_handler.cc",
      "webui/settings/chromeos/peripheral_data_access_handler.h",
      "webui/settings/chromeos/personalization_hub_handler.cc",
      "webui/settings/chromeos/personalization_hub_handler.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/switch_access_handler.cc",
      "webui/settings/chromeos/switch_access_handler.h",
      "webui/settings/chromeos/tts_handler.cc",
      "webui/settings/chromeos/tts_handler.h",
      "webui/settings/chromeos/wallpaper_handler.cc",
      "webui/settings/chromeos/wallpaper_handler.h",
      "webui/signin/inline_login_dialog_chromeos.cc",
      "webui/signin/inline_login_dialog_chromeos.h",
      "webui/signin/inline_login_dialog_chromeos_onboarding.cc",
      "webui/signin/inline_login_dialog_chromeos_onboarding.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/signin/signin_helper_chromeos.cc",
      "webui/signin/signin_helper_chromeos.h",
      "webui/signin/user_cloud_signin_restriction_policy_fetcher_chromeos.cc",
      "webui/signin/user_cloud_signin_restriction_policy_fetcher_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/components/account_manager",
      "//ash/components/arc",
      "//ash/components/arc/video_accelerator:protected_native_pixmap_query_client",
      "//ash/components/audio",
      "//ash/components/cryptohome",
      "//ash/components/disks",
      "//ash/components/drivefs",
      "//ash/components/drivefs/mojom:mojom",
      "//ash/components/login/auth",
      "//ash/components/login/session",
      "//ash/components/multidevice",
      "//ash/components/multidevice/logging",
      "//ash/components/peripheral_notification",
      "//ash/components/phonehub",
      "//ash/components/phonehub:debug",
      "//ash/components/proximity_auth",
      "//ash/components/settings",
      "//ash/components/tether",
      "//ash/components/tpm",
      "//ash/constants",
      "//ash/keyboard/ui",
      "//ash/public/cpp",
      "//ash/public/cpp/app_list/vector_icons",
      "//ash/public/cpp/resources:ash_public_unscaled_resources",
      "//ash/quick_pair/common",
      "//ash/quick_pair/keyed_service",
      "//ash/quick_pair/repository",
      "//ash/quick_pair/ui",
      "//ash/services/cellular_setup",
      "//ash/services/cellular_setup/public/mojom",
      "//ash/services/multidevice_setup",
      "//ash/services/multidevice_setup/public/cpp",
      "//ash/services/multidevice_setup/public/cpp:android_sms_app_helper_delegate",
      "//ash/services/multidevice_setup/public/cpp:prefs",
      "//ash/services/multidevice_setup/public/cpp:url_provider",
      "//ash/services/recording/public/mojom",
      "//ash/shortcut_viewer",
      "//ash/shortcut_viewer/strings:strings_grit",
      "//ash/webui/camera_app_ui",
      "//ash/webui/color_internals",
      "//ash/webui/connectivity_diagnostics",
      "//ash/webui/diagnostics_ui",
      "//ash/webui/eche_app_ui",
      "//ash/webui/file_manager:file_manager_ui",
      "//ash/webui/firmware_update_ui",
      "//ash/webui/guest_os_installer",
      "//ash/webui/help_app_ui",
      "//ash/webui/help_app_ui/search:mojo_bindings",
      "//ash/webui/media_app_ui",
      "//ash/webui/multidevice_debug",
      "//ash/webui/network_ui:network_diagnostics_resource_provider",
      "//ash/webui/network_ui:network_health_resource_provider",
      "//ash/webui/network_ui:traffic_counters_resource_provider",
      "//ash/webui/os_feedback_ui",
      "//ash/webui/os_feedback_ui/backend",
      "//ash/webui/personalization_app",
      "//ash/webui/personalization_app/mojom",
      "//ash/webui/personalization_app/proto",
      "//ash/webui/personalization_app/search:mojo_bindings",
      "//ash/webui/print_management",
      "//ash/webui/projector_app",
      "//ash/webui/scanning",
      "//ash/webui/shimless_rma",
      "//ash/webui/shortcut_customization_ui",
      "//ash/webui/system_extensions_internals_ui",
      "//ash/webui/web_applications",
      "//build:chromeos_buildflags",
      "//chrome/app:generated_resources",
      "//chrome/browser/ash",
      "//chrome/browser/ash/crosapi",
      "//chrome/browser/ash/crostini:crostini_installer_types_mojom",
      "//chrome/browser/chromeos",
      "//chrome/browser/chromeos/extensions/vpn_provider",
      "//chrome/browser/media/router/discovery/access_code:access_code_cast_feature",
      "//chrome/browser/media/router/discovery/access_code:discovery_resources_proto",
      "//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/policy:onc",
      "//chrome/browser/resources:bluetooth_pairing_dialog_resources",
      "//chrome/browser/resources:internet_config_dialog_resources",
      "//chrome/browser/resources:internet_detail_dialog_resources",
      "//chrome/browser/resources/chromeos:multidevice_setup_resources",
      "//chrome/browser/ui/app_list/search/cros_action_history:cros_action_proto",
      "//chrome/browser/ui/app_list/search/ranking: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:recurrence_ranker_proto",
      "//chrome/browser/ui/app_list/search/util:proto",
      "//chrome/browser/ui/quick_answers",
      "//chrome/browser/ui/webui/chromeos/add_supervision:mojo_bindings",
      "//chrome/browser/ui/webui/chromeos/audio:mojo_bindings",
      "//chrome/browser/ui/webui/chromeos/crostini_upgrader:mojo_bindings",
      "//chrome/browser/ui/webui/chromeos/launcher_internals:mojo_bindings",
      "//chrome/browser/ui/webui/chromeos/parent_access:mojo_bindings",
      "//chrome/browser/ui/webui/chromeos/parent_access:proto",
      "//chrome/browser/ui/webui/chromeos/vm:mojo_bindings",
      "//chrome/browser/ui/webui/nearby_share:mojom",
      "//chrome/browser/ui/webui/nearby_share/public/mojom",
      "//chrome/browser/ui/webui/settings/ash/os_apps_page/mojom",
      "//chrome/browser/ui/webui/settings/chromeos/search:mojo_bindings",
      "//chrome/browser/web_applications",
      "//chrome/services/file_util/public/cpp",
      "//chromeos/ash/components/assistant:buildflags",
      "//chromeos/ash/components/dbus/kerberos:kerberos_proto",
      "//chromeos/ash/components/dbus/os_install",
      "//chromeos/ash/components/dbus/pciguard:pciguard",
      "//chromeos/ash/components/dbus/spaced",
      "//chromeos/ash/components/dbus/system_clock",
      "//chromeos/ash/components/dbus/upstart",
      "//chromeos/ash/components/human_presence",
      "//chromeos/ash/components/network/portal_detector",
      "//chromeos/ash/components/oobe_quick_start",
      "//chromeos/ash/resources",
      "//chromeos/ash/services/assistant:lib",
      "//chromeos/components/local_search_service/public/cpp",
      "//chromeos/components/local_search_service/public/mojom",
      "//chromeos/components/onc",
      "//chromeos/components/quick_answers",
      "//chromeos/components/quick_answers/public/cpp:cpp",
      "//chromeos/components/quick_answers/public/cpp:prefs",
      "//chromeos/components/sharesheet:constants",
      "//chromeos/components/string_matching",
      "//chromeos/constants",
      "//chromeos/crosapi/cpp",
      "//chromeos/crosapi/cpp:crosapi_constants",
      "//chromeos/dbus",
      "//chromeos/dbus/audio",
      "//chromeos/dbus/cryptohome",
      "//chromeos/dbus/cryptohome:cryptohome_proto",
      "//chromeos/dbus/hermes",
      "//chromeos/dbus/human_presence",
      "//chromeos/dbus/power",
      "//chromeos/dbus/session_manager",
      "//chromeos/dbus/tpm_manager",
      "//chromeos/dbus/tpm_manager:tpm_manager_proto",
      "//chromeos/dbus/update_engine",
      "//chromeos/dbus/userdataauth",
      "//chromeos/dbus/userdataauth:userdataauth_proto",
      "//chromeos/dbus/util",
      "//chromeos/login/login_state",
      "//chromeos/network",
      "//chromeos/printing",
      "//chromeos/services/assistant/public/cpp",
      "//chromeos/services/assistant/public/mojom",
      "//chromeos/services/assistant/public/proto",
      "//chromeos/services/assistant/public/shared",
      "//chromeos/services/bluetooth_config",
      "//chromeos/services/bluetooth_config:in_process_bluetooth_config",
      "//chromeos/services/bluetooth_config/public/mojom",
      "//chromeos/services/network_config/public/mojom",
      "//chromeos/services/network_health/public/mojom",
      "//chromeos/system",
      "//chromeos/ui/base",
      "//chromeos/ui/frame",
      "//chromeos/ui/vector_icons",
      "//chromeos/ui/wm",
      "//components/app_constants",
      "//components/app_restore",
      "//components/arc",
      "//components/assist_ranker",
      "//components/assist_ranker/proto",
      "//components/captive_portal/core",
      "//components/consent_auditor:consent_auditor",
      "//components/desks_storage",
      "//components/digital_asset_links",
      "//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/services/app_service/public/mojom",
      "//components/session_manager/core",
      "//components/user_manager",
      "//content/public/common",
      "//extensions/browser/api/messaging",
      "//extensions/browser/api/virtual_keyboard_private",
      "//google_apis/calendar",
      "//google_apis/common",
      "//google_apis/drive",
      "//media/capture:capture_lib",
      "//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/ash",
      "//ui/chromeos",
      "//ui/chromeos/events",
      "//ui/chromeos/strings:strings_provider",
      "//ui/compositor_extra",
      "//ui/display/manager",
      "//ui/events/ozone/layout:layout",
      "//ui/file_manager:file_manager",
      "//ui/ozone",
      "//ui/webui/resources/cr_components/app_management:mojo_bindings",
    ]
    public_deps += [
      "//ash/services/multidevice_setup/public/mojom",
      "//chrome/browser/ui/webui/chromeos/crostini_installer:mojo_bindings",
      "//chrome/browser/ui/webui/chromeos/emoji:mojo_bindings",
    ]
    allow_circular_includes_from += [
      "//chrome/browser/ash",
      "//chrome/browser/ash/crosapi",
      "//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 += [
        "//ash/webui/demo_mode_app_ui",
        "//ash/webui/sample_system_web_app_ui",
      ]
    }
  }

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

  if (is_cfm) {
    sources += [
      "webui/chromeos/chromebox_for_meetings/network_settings_dialog.cc",
      "webui/chromeos/chromebox_for_meetings/network_settings_dialog.h",
    ]
  }

  if (is_chromeos) {
    sources += [
      "platform_keys_certificate_selector_chromeos.h",
      "tabs/existing_window_sub_menu_model_chromeos.cc",
      "tabs/existing_window_sub_menu_model_chromeos.h",
      "views/extensions/print_job_confirmation_dialog.cc",
      "views/frame/browser_frame_header_chromeos.cc",
      "views/frame/browser_frame_header_chromeos.h",
      "views/frame/browser_non_client_frame_view_chromeos.cc",
      "views/frame/browser_non_client_frame_view_chromeos.h",
      "views/frame/browser_non_client_frame_view_factory_chromeos.cc",
      "views/frame/tab_search_frame_caption_button.cc",
      "views/frame/tab_search_frame_caption_button.h",
      "views/frame/top_controls_slide_controller_chromeos.cc",
      "views/frame/top_controls_slide_controller_chromeos.h",
      "views/notifications/request_pin_view_chromeos.cc",
      "views/notifications/request_pin_view_chromeos.h",
      "views/platform_keys_certificate_selector_chromeos.cc",
      "views/platform_keys_certificate_selector_chromeos.h",
      "views/tabs/tab_scrubber_chromeos.cc",
      "views/tabs/tab_scrubber_chromeos.h",
      "webui/chromeos/chrome_url_disabled/chrome_url_disabled_ui.cc",
      "webui/chromeos/chrome_url_disabled/chrome_url_disabled_ui.h",
      "webui/version/version_handler_chromeos.cc",
      "webui/version/version_handler_chromeos.h",
    ]
    deps += [
      "//chrome/app:generated_resources",
      "//chromeos/components/security_token_pin",
      "//chromeos/strings",
      "//components/account_manager_core:account_manager_core",
      "//ui/chromeos/styles:cros_styles_views",
    ]
  }

  if (is_chromeos_lacros) {
    sources += [
      "startup/lacros_first_run_service.cc",
      "startup/lacros_first_run_service.h",
      "views/chrome_browser_main_extra_parts_views_lacros.cc",
      "views/chrome_browser_main_extra_parts_views_lacros.h",
      "views/frame/browser_frame_lacros.cc",
      "views/frame/browser_frame_lacros.h",
      "views/frame/desktop_browser_frame_lacros.cc",
      "views/frame/desktop_browser_frame_lacros.h",
      "views/frame/immersive_mode_controller_chromeos.cc",
      "views/frame/immersive_mode_controller_chromeos.h",
      "views/profiles/lacros_first_run_signed_in_flow_controller.cc",
      "views/profiles/lacros_first_run_signed_in_flow_controller.h",
      "webui/policy/status_provider/device_policy_status_provider_lacros.cc",
      "webui/policy/status_provider/device_policy_status_provider_lacros.h",
      "webui/policy/status_provider/user_policy_status_provider_lacros.cc",
      "webui/policy/status_provider/user_policy_status_provider_lacros.h",
      "webui/signin/profile_picker_lacros_sign_in_provider.cc",
      "webui/signin/profile_picker_lacros_sign_in_provider.h",
      "window_sizer/window_sizer_chromeos.cc",
      "window_sizer/window_sizer_chromeos.h",
    ]
    deps += [
      "//chrome/browser/policy:onc",
      "//chromeos/crosapi/mojom",
      "//chromeos/lacros",
      "//chromeos/startup",
      "//chromeos/ui/base",
      "//chromeos/ui/frame",
      "//chromeos/ui/wm",
      "//ui/chromeos",
    ]
  }

  if (is_chromeos) {
    deps += [ "//chrome/browser/ui/webui/settings/chromeos/constants:mojom" ]
  }

  if (is_win || is_mac || is_linux || is_chromeos || is_fuchsia) {
    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",
      "frame/window_frame_util.cc",
      "frame/window_frame_util.h",
      "incognito_clear_browsing_data_dialog_interface.h",
      "signin_modal_dialog.cc",
      "signin_modal_dialog.h",
      "signin_modal_dialog_impl.cc",
      "signin_modal_dialog_impl.h",
      "signin_view_controller.cc",
      "signin_view_controller.h",
      "signin_view_controller_delegate.cc",
      "signin_view_controller_delegate.h",
      "startup/web_app_startup_utils.cc",
      "startup/web_app_startup_utils.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_next_web_dialog.cc",
      "views/hats/hats_next_web_dialog.h",
      "views/privacy_sandbox/privacy_sandbox_dialog_view.cc",
      "views/privacy_sandbox/privacy_sandbox_dialog_view.h",
      "views/privacy_sandbox/privacy_sandbox_notice_bubble.cc",
      "views/privacy_sandbox/privacy_sandbox_notice_bubble.h",
      "views/profiles/incognito_menu_view.cc",
      "views/profiles/incognito_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/signin_url_utils.cc",
      "webui/signin/signin_url_utils.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 += [
      "//chrome/browser/ui/webui/discards:mojo_bindings",
      "//ui/webui",
    ]
  }

  if (is_win || is_mac || is_fuchsia || is_linux) {
    sources += [
      "views/web_apps/deprecated_apps_dialog_view.cc",
      "views/web_apps/deprecated_apps_dialog_view.h",
      "views/web_apps/force_installed_deprecated_apps_dialog_view.cc",
      "views/web_apps/force_installed_deprecated_apps_dialog_view.h",
      "webui/app_launcher_page_ui.cc",
      "webui/app_launcher_page_ui.h",
      "webui/app_settings/web_app_settings_navigation_throttle.cc",
      "webui/app_settings/web_app_settings_navigation_throttle.h",
      "webui/app_settings/web_app_settings_ui.cc",
      "webui/app_settings/web_app_settings_ui.h",
      "webui/browser_switch/browser_switch_ui.cc",
      "webui/browser_switch/browser_switch_ui.h",
      "webui/ntp/app_launcher_handler.cc",
      "webui/ntp/app_launcher_handler.h",
    ]
  }

  if (is_win || is_mac || is_fuchsia || is_linux || is_chromeos_lacros) {
    sources += [
      "profile_picker.cc",
      "profile_picker.h",
      "signin/profile_customization_bubble_sync_controller.h",
      "signin/profile_customization_synced_theme_waiter.cc",
      "signin/profile_customization_synced_theme_waiter.h",
      "startup/default_browser_infobar_delegate.cc",
      "startup/default_browser_infobar_delegate.h",
      "startup/default_browser_prompt.cc",
      "startup/default_browser_prompt.h",
      "views/profiles/badged_profile_photo.cc",
      "views/profiles/badged_profile_photo.h",
      "views/profiles/profile_creation_signed_in_flow_controller.cc",
      "views/profiles/profile_creation_signed_in_flow_controller.h",
      "views/profiles/profile_customization_bubble_sync_controller.cc",
      "views/profiles/profile_customization_bubble_sync_controller.h",
      "views/profiles/profile_customization_bubble_view.cc",
      "views/profiles/profile_customization_bubble_view.h",
      "views/profiles/profile_menu_view.cc",
      "views/profiles/profile_menu_view.h",
      "views/profiles/profile_picker_force_signin_dialog_delegate.cc",
      "views/profiles/profile_picker_force_signin_dialog_delegate.h",
      "views/profiles/profile_picker_force_signin_dialog_host.cc",
      "views/profiles/profile_picker_force_signin_dialog_host.h",
      "views/profiles/profile_picker_signed_in_flow_controller.cc",
      "views/profiles/profile_picker_signed_in_flow_controller.h",
      "views/profiles/profile_picker_turn_sync_on_delegate.cc",
      "views/profiles/profile_picker_turn_sync_on_delegate.h",
      "views/profiles/profile_picker_view.cc",
      "views/profiles/profile_picker_view.h",
      "views/profiles/profile_picker_web_contents_host.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/enterprise_profile_welcome_handler.cc",
      "webui/signin/enterprise_profile_welcome_handler.h",
      "webui/signin/enterprise_profile_welcome_ui.cc",
      "webui/signin/enterprise_profile_welcome_ui.h",
      "webui/signin/profile_creation_customize_themes_handler.cc",
      "webui/signin/profile_creation_customize_themes_handler.h",
      "webui/signin/profile_customization_handler.cc",
      "webui/signin/profile_customization_handler.h",
      "webui/signin/profile_customization_ui.cc",
      "webui/signin/profile_customization_ui.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_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_ui_error.cc",
      "webui/signin/signin_ui_error.h",
      "webui/signin/signin_utils_desktop.cc",
      "webui/signin/signin_utils_desktop.h",
      "webui/signin/turn_sync_on_helper.cc",
      "webui/signin/turn_sync_on_helper.h",
      "webui/signin/turn_sync_on_helper_delegate_impl.cc",
      "webui/signin/turn_sync_on_helper_delegate_impl.h",
      "webui/signin/turn_sync_on_helper_policy_fetch_tracker.cc",
      "webui/signin/turn_sync_on_helper_policy_fetch_tracker.h",
    ]

    deps += [
      "//chrome/browser/new_tab_page/chrome_colors:generate_colors_info",
      "//components/country_codes",
    ]

    if (enable_dice_support) {
      sources += [
        "passwords/account_storage_auth_helper.cc",
        "passwords/account_storage_auth_helper.h",
        "signin/dice_web_signin_interceptor_delegate.cc",
        "signin/dice_web_signin_interceptor_delegate.h",
        "signin_intercept_first_run_experience_dialog.cc",
        "signin_intercept_first_run_experience_dialog.h",
        "signin_reauth_view_controller.cc",
        "signin_reauth_view_controller.h",
        "views/profiles/dice_web_signin_interception_bubble_view.cc",
        "views/profiles/dice_web_signin_interception_bubble_view.h",
        "views/profiles/profile_picker_dice_sign_in_provider.cc",
        "views/profiles/profile_picker_dice_sign_in_provider.h",
        "views/profiles/profile_picker_dice_sign_in_toolbar.cc",
        "views/profiles/profile_picker_dice_sign_in_toolbar.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",
        "webui/signin/inline_login_handler_impl.cc",
        "webui/signin/inline_login_handler_impl.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/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",
      ]
    }
  }

  if (enable_dice_support || is_chromeos_ash || is_fuchsia) {
    sources += [
      "webui/signin/inline_login_ui.cc",
      "webui/signin/inline_login_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_cocoa.h",
      "cocoa/first_run_dialog_cocoa.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_observer.h",
      "cocoa/handoff_observer.mm",
      "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/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/scoped_menu_bar_lock.h",
      "cocoa/scoped_menu_bar_lock.mm",
      "cocoa/screentime/fake_webpage_controller.h",
      "cocoa/screentime/fake_webpage_controller.mm",
      "cocoa/screentime/history_bridge.h",
      "cocoa/screentime/history_bridge.mm",
      "cocoa/screentime/history_bridge_factory.h",
      "cocoa/screentime/history_bridge_factory.mm",
      "cocoa/screentime/history_deleter.h",
      "cocoa/screentime/history_deleter_impl.h",
      "cocoa/screentime/history_deleter_impl.mm",
      "cocoa/screentime/screentime_features.cc",
      "cocoa/screentime/screentime_features.h",
      "cocoa/screentime/screentime_policy.cc",
      "cocoa/screentime/screentime_policy.h",
      "cocoa/screentime/tab_helper.h",
      "cocoa/screentime/tab_helper.mm",
      "cocoa/screentime/webpage_controller.h",
      "cocoa/screentime/webpage_controller_impl.h",
      "cocoa/screentime/webpage_controller_impl.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/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",
      "color_chooser.h",
      "content_settings/media_authorization_wrapper_test.h",
      "content_settings/media_authorization_wrapper_test.mm",
      "find_bar/find_bar_platform_helper_mac.mm",
      "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/frame/window_controls_overlay_input_routing_mac.h",
      "views/frame/window_controls_overlay_input_routing_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/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",
      "//extensions/components/native_app_window",
      "//third_party/google_toolbox_for_mac",
      "//third_party/mozilla",
      "//ui/accelerated_widget_mac:accelerated_widget_mac",
    ]
    include_dirs = [ "$target_gen_dir" ]
    frameworks = [
      "Carbon.framework",
      "Quartz.framework",
    ]
    weak_frameworks = [ "ScreenTime.framework" ]

    if (enable_chromium_updater) {
      deps += [
        "//chrome/browser/updater:browser_updater_client",
        "//chrome/updater:browser_sources",
      ]
    }
  }

  if (is_win) {
    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/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_aura.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/frame/windows_10_tab_search_caption_button.cc",
      "views/frame/windows_10_tab_search_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/policy/status_provider/updater_status_provider.cc",
      "webui/policy/status_provider/updater_status_provider.h",
      "webui/sandbox/sandbox_handler.cc",
      "webui/sandbox/sandbox_handler.h",
      "webui/settings/chrome_cleanup_handler_win.cc",
      "webui/settings/chrome_cleanup_handler_win.h",
      "webui/settings/settings_utils_win.cc",
      "webui/version/version_handler_win.cc",
      "webui/version/version_handler_win.h",
      "webui/version/version_util_win.cc",
      "webui/version/version_util_win.h",
    ]
    public_deps += [
      "//build:branding_buildflags",
      "//ui/views",
      "//ui/views/controls/webview",
    ]
    deps += [
      "//chrome/browser:titlebar_config",
      "//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/chrome_cleaner/public/constants:constants",
      "//components/lens",
      "//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_castos) {
      public_deps += [
        "//ui/views",
        "//ui/views/controls/webview",
      ]
    }
  }

  if (is_linux || is_mac) {
    # The first run dialog shows only on Linux and macOS.
    sources += [
      "views/first_run_dialog.cc",
      "views/first_run_dialog.h",
    ]
  }

  if (is_linux) {
    sources += [
      "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",
      "views/window_sizer_linux.cc",
      "views/window_sizer_linux.h",
    ]
  }

  if (is_linux || is_chromeos_lacros || is_fuchsia) {
    sources += [ "views/apps/chrome_app_window_client_views_aura.cc" ]
  }

  if (is_linux || is_chromeos_lacros) {
    sources += [
      "views/frame/browser_desktop_window_tree_host.h",
      "webui/help/version_updater_basic.cc",
      "webui/help/version_updater_basic.h",
      "webui/settings/settings_utils_linux.cc",
    ]
    deps += [
      "//ui/base:wm_role_names",
      "//ui/base/ime",
      "//ui/events:dom_keycode_converter",
      "//ui/platform_window",
      "//ui/views/linux_ui:linux_ui_factory",
    ]

    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",
      ]
    }

    # TODO(1239521): ozone_platform_x11 should not be leaked outside ozone.
    if (use_dbus && 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 (is_linux) {
      sources += [
        "views/frame/browser_desktop_window_tree_host_linux.cc",
        "views/frame/browser_desktop_window_tree_host_linux.h",
      ]
    }
    if (is_chromeos_lacros) {
      sources += [
        "views/frame/browser_desktop_window_tree_host_lacros.cc",
        "views/frame/browser_desktop_window_tree_host_lacros.h",
      ]
    }
  }

  if (is_win || is_mac || is_linux) {
    sources += [
      "startup/web_app_info_recorder_utils.cc",
      "startup/web_app_info_recorder_utils.h",
    ]
  }

  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",
      "webui/webui_js_error/webui_js_error_ui.cc",
      "webui/webui_js_error/webui_js_error_ui.h",
    ]
    deps += [ "//third_party/boringssl" ]
    configs += [ "//build/config/linux/nss" ]
    if (use_aura) {
      deps += [ "//third_party/fontconfig" ]
    }
  }

  if (toolkit_views) {
    sources += [
      "autofill/address_editor_controller.cc",
      "autofill/address_editor_controller.h",
      "autofill/autofill_bubble_base.h",
      "autofill/autofill_bubble_controller_base.cc",
      "autofill/autofill_bubble_controller_base.h",
      "autofill/edit_address_profile_dialog_controller.h",
      "autofill/edit_address_profile_dialog_controller_impl.cc",
      "autofill/edit_address_profile_dialog_controller_impl.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/offer_notification_bubble_controller.h",
      "autofill/payments/offer_notification_bubble_controller_impl.cc",
      "autofill/payments/offer_notification_bubble_controller_impl.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_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",
      "autofill/payments/virtual_card_enroll_bubble_controller_impl.cc",
      "autofill/payments/virtual_card_enroll_bubble_controller_impl.h",
      "autofill/payments/virtual_card_manual_fallback_bubble_controller.h",
      "autofill/payments/virtual_card_manual_fallback_bubble_controller_impl.cc",
      "autofill/payments/virtual_card_manual_fallback_bubble_controller_impl.h",
      "autofill/save_update_address_profile_bubble_controller.h",
      "autofill/save_update_address_profile_bubble_controller_impl.cc",
      "autofill/save_update_address_profile_bubble_controller_impl.h",
      "autofill/save_update_address_profile_icon_controller.cc",
      "autofill/save_update_address_profile_icon_controller.h",
      "bubble_anchor_util.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",
      "send_tab_to_self/send_tab_to_self_toolbar_icon_controller.cc",
      "send_tab_to_self/send_tab_to_self_toolbar_icon_controller.h",
      "send_tab_to_self/send_tab_to_self_toolbar_icon_controller_delegate.h",
      "sharing_hub/screenshot/screenshot_captured_bubble_controller.cc",
      "sharing_hub/screenshot/screenshot_captured_bubble_controller.h",
      "sharing_hub/sharing_hub_bubble_controller.h",
      "sharing_hub/sharing_hub_bubble_view.h",

      # This test header is included because it contains forward declarations
      # needed for "friend" statements for use in tests.
      "side_search/side_search_config.cc",
      "side_search/side_search_config.h",
      "side_search/side_search_metrics.cc",
      "side_search/side_search_metrics.h",
      "side_search/side_search_prefs.cc",
      "side_search/side_search_prefs.h",
      "side_search/side_search_side_contents_helper.cc",
      "side_search/side_search_side_contents_helper.h",
      "side_search/side_search_tab_contents_helper.cc",
      "side_search/side_search_tab_contents_helper.h",
      "side_search/side_search_utils.cc",
      "side_search/side_search_utils.h",
      "sync/one_click_signin_links_delegate.h",
      "sync/one_click_signin_links_delegate_impl.cc",
      "sync/one_click_signin_links_delegate_impl.h",
      "translate/translate_bubble_test_utils.h",
      "views/accessibility/caption_bubble_context_views.cc",
      "views/accessibility/caption_bubble_context_views.h",
      "views/accessibility/caret_browsing_dialog_delegate.cc",
      "views/accessibility/caret_browsing_dialog_delegate.h",
      "views/accessibility/non_accessible_image_view.cc",
      "views/accessibility/non_accessible_image_view.h",
      "views/accessibility/theme_tracking_non_accessible_image_view.cc",
      "views/accessibility/theme_tracking_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/address_editor_view.cc",
      "views/autofill/address_editor_view.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/edit_address_profile_view.cc",
      "views/autofill/edit_address_profile_view.h",
      "views/autofill/payments/autofill_error_dialog_view_native_views.cc",
      "views/autofill/payments/autofill_error_dialog_view_native_views.h",
      "views/autofill/payments/autofill_progress_dialog_views.cc",
      "views/autofill/payments/autofill_progress_dialog_views.h",
      "views/autofill/payments/card_unmask_authentication_selection_dialog_views.cc",
      "views/autofill/payments/card_unmask_authentication_selection_dialog_views.h",
      "views/autofill/payments/card_unmask_otp_input_dialog_views.cc",
      "views/autofill/payments/card_unmask_otp_input_dialog_views.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/offer_notification_bubble_views.cc",
      "views/autofill/payments/offer_notification_bubble_views.h",
      "views/autofill/payments/offer_notification_icon_view.cc",
      "views/autofill/payments/offer_notification_icon_view.h",
      "views/autofill/payments/payments_view_util.cc",
      "views/autofill/payments/payments_view_util.h",
      "views/autofill/payments/promo_code_label_button.cc",
      "views/autofill/payments/promo_code_label_button.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_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/autofill/payments/virtual_card_enroll_bubble_views.cc",
      "views/autofill/payments/virtual_card_enroll_bubble_views.h",
      "views/autofill/payments/virtual_card_enroll_icon_view.cc",
      "views/autofill/payments/virtual_card_enroll_icon_view.h",
      "views/autofill/payments/virtual_card_manual_fallback_bubble_views.cc",
      "views/autofill/payments/virtual_card_manual_fallback_bubble_views.h",
      "views/autofill/payments/virtual_card_manual_fallback_icon_view.cc",
      "views/autofill/payments/virtual_card_manual_fallback_icon_view.h",
      "views/autofill/save_address_profile_view.cc",
      "views/autofill/save_address_profile_view.h",
      "views/autofill/save_update_address_profile_icon_view.cc",
      "views/autofill/save_update_address_profile_icon_view.h",
      "views/autofill/update_address_profile_view.cc",
      "views/autofill/update_address_profile_view.h",
      "views/autofill_assistant/password_change/assistant_onboarding_view.cc",
      "views/autofill_assistant/password_change/assistant_onboarding_view.h",
      "views/autofill_assistant/password_change/assistant_side_panel_coordinator_impl.cc",
      "views/autofill_assistant/password_change/assistant_side_panel_coordinator_impl.h",
      "views/autofill_assistant/password_change/password_change_run_display.cc",
      "views/autofill_assistant/password_change/password_change_run_view.cc",
      "views/autofill_assistant/password_change/password_change_run_view.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_button_util.cc",
      "views/bookmarks/bookmark_button_util.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_button_base.cc",
      "views/bookmarks/bookmark_menu_button_base.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/bookmarks/saved_tab_groups/saved_tab_group_bar.cc",
      "views/bookmarks/saved_tab_groups/saved_tab_group_bar.h",
      "views/bookmarks/saved_tab_groups/saved_tab_group_button.cc",
      "views/bookmarks/saved_tab_groups/saved_tab_group_button.h",
      "views/browser_commands_views.cc",
      "views/browser_dialogs_views.cc",
      "views/bubble/bubble_contents_wrapper.cc",
      "views/bubble/bubble_contents_wrapper.h",
      "views/bubble/bubble_contents_wrapper_service.cc",
      "views/bubble/bubble_contents_wrapper_service.h",
      "views/bubble/bubble_contents_wrapper_service_factory.cc",
      "views/bubble/bubble_contents_wrapper_service_factory.h",
      "views/bubble/webui_bubble_dialog_view.cc",
      "views/bubble/webui_bubble_dialog_view.h",
      "views/bubble/webui_bubble_manager.cc",
      "views/bubble/webui_bubble_manager.h",
      "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_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/commerce/ntp_discount_consent_dialog_view.cc",
      "views/commerce/ntp_discount_consent_dialog_view.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/bubble/download_bubble_row_list_view.cc",
      "views/download/bubble/download_bubble_row_list_view.h",
      "views/download/bubble/download_bubble_row_view.cc",
      "views/download/bubble/download_bubble_row_view.h",
      "views/download/bubble/download_bubble_security_view.cc",
      "views/download/bubble/download_bubble_security_view.h",
      "views/download/bubble/download_dialog_view.cc",
      "views/download/bubble/download_dialog_view.h",
      "views/download/bubble/download_toolbar_button_view.cc",
      "views/download/bubble/download_toolbar_button_view.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/blocked_action_dialog_view.cc",
      "views/extensions/blocked_action_dialog_view.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_install_friction_dialog_view.cc",
      "views/extensions/extension_install_friction_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_dialogs_utils.cc",
      "views/extensions/extensions_dialogs_utils.h",
      "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_request_access_button.cc",
      "views/extensions/extensions_request_access_button.h",
      "views/extensions/extensions_request_access_button_hover_card.cc",
      "views/extensions/extensions_request_access_button_hover_card.h",
      "views/extensions/extensions_request_access_dialog_view.cc",
      "views/extensions/extensions_request_access_dialog_view.h",
      "views/extensions/extensions_tabbed_menu_view.cc",
      "views/extensions/extensions_tabbed_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/extensions/extensions_toolbar_controls.cc",
      "views/extensions/extensions_toolbar_controls.h",
      "views/extensions/site_settings_expand_button.cc",
      "views/extensions/site_settings_expand_button.h",
      "views/file_system_access/file_system_access_icon_view.cc",
      "views/file_system_access/file_system_access_icon_view.h",
      "views/file_system_access/file_system_access_permission_view.cc",
      "views/file_system_access/file_system_access_permission_view.h",
      "views/file_system_access/file_system_access_restricted_directory_dialog_view.cc",
      "views/file_system_access/file_system_access_restricted_directory_dialog_view.h",
      "views/file_system_access/file_system_access_ui_helpers.cc",
      "views/file_system_access/file_system_access_ui_helpers.h",
      "views/file_system_access/file_system_access_usage_bubble_view.cc",
      "views/file_system_access/file_system_access_usage_bubble_view.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/caption_button_placeholder_container.cc",
      "views/frame/caption_button_placeholder_container.h",
      "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/fullscreen_control/fullscreen_control_host.cc",
      "views/fullscreen_control/fullscreen_control_host.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_item_ui_device_selector_observer.h",
      "views/global_media_controls/media_item_ui_device_selector_view.cc",
      "views/global_media_controls/media_item_ui_device_selector_view.h",
      "views/global_media_controls/media_item_ui_footer_view.cc",
      "views/global_media_controls/media_item_ui_footer_view.h",
      "views/global_media_controls/media_item_ui_legacy_cast_footer_view.cc",
      "views/global_media_controls/media_item_ui_legacy_cast_footer_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_toolbar_button_contextual_menu.cc",
      "views/global_media_controls/media_toolbar_button_contextual_menu.h",
      "views/global_media_controls/media_toolbar_button_view.cc",
      "views/global_media_controls/media_toolbar_button_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/incognito_clear_browsing_data_dialog.cc",
      "views/incognito_clear_browsing_data_dialog.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/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_chip_button.cc",
      "views/location_bar/intent_chip_button.h",
      "views/location_bar/intent_picker_view.cc",
      "views/location_bar/intent_picker_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/omnibox_chip_button.cc",
      "views/location_bar/omnibox_chip_button.h",
      "views/location_bar/omnibox_chip_theme.h",
      "views/location_bar/permission_chip.cc",
      "views/location_bar/permission_chip.h",
      "views/location_bar/permission_chip_delegate.h",
      "views/location_bar/permission_quiet_chip.cc",
      "views/location_bar/permission_quiet_chip.h",
      "views/location_bar/permission_request_chip.cc",
      "views/location_bar/permission_request_chip.h",
      "views/location_bar/selected_keyword_view.cc",
      "views/location_bar/selected_keyword_view.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_access_code_cast_button.cc",
      "views/media_router/cast_dialog_access_code_cast_button.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/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/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_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/overlay/back_to_tab_image_button.cc",
      "views/overlay/back_to_tab_image_button.h",
      "views/overlay/back_to_tab_label_button.cc",
      "views/overlay/back_to_tab_label_button.h",
      "views/overlay/close_image_button.cc",
      "views/overlay/close_image_button.h",
      "views/overlay/constants.h",
      "views/overlay/document_overlay_window_views.cc",
      "views/overlay/document_overlay_window_views.h",
      "views/overlay/hang_up_button.cc",
      "views/overlay/hang_up_button.h",
      "views/overlay/overlay_window_image_button.cc",
      "views/overlay/overlay_window_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/toggle_camera_button.cc",
      "views/overlay/toggle_camera_button.h",
      "views/overlay/toggle_microphone_button.cc",
      "views/overlay/toggle_microphone_button.h",
      "views/overlay/track_image_button.cc",
      "views/overlay/track_image_button.h",
      "views/overlay/video_overlay_window_views.cc",
      "views/overlay/video_overlay_window_views.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/accuracy_tip_bubble_view.cc",
      "views/page_info/accuracy_tip_bubble_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_about_this_site_content_view.cc",
      "views/page_info/page_info_about_this_site_content_view.h",
      "views/page_info/page_info_ad_personalization_content_view.cc",
      "views/page_info/page_info_ad_personalization_content_view.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_history_controller.cc",
      "views/page_info/page_info_history_controller.h",
      "views/page_info/page_info_hover_button.cc",
      "views/page_info/page_info_hover_button.h",
      "views/page_info/page_info_main_view.cc",
      "views/page_info/page_info_main_view.h",
      "views/page_info/page_info_navigation_handler.h",
      "views/page_info/page_info_permission_content_view.cc",
      "views/page_info/page_info_permission_content_view.h",
      "views/page_info/page_info_row_view.cc",
      "views/page_info/page_info_row_view.h",
      "views/page_info/page_info_security_content_view.cc",
      "views/page_info/page_info_security_content_view.h",
      "views/page_info/page_info_view_factory.cc",
      "views/page_info/page_info_view_factory.h",
      "views/page_info/page_switcher_view.cc",
      "views/page_info/page_switcher_view.h",
      "views/page_info/permission_icon.cc",
      "views/page_info/permission_icon.h",
      "views/page_info/permission_toggle_row_view.cc",
      "views/page_info/permission_toggle_row_view.h",
      "views/page_info/permission_toggle_row_view_observer.h",
      "views/page_info/safety_tip_page_info_bubble_view.cc",
      "views/page_info/safety_tip_page_info_bubble_view.h",
      "views/page_info/security_information_view.cc",
      "views/page_info/security_information_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/post_save_compromised_bubble_view.cc",
      "views/passwords/post_save_compromised_bubble_view.h",
      "views/passwords/views_utils.cc",
      "views/passwords/views_utils.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_no_creds_dialog_view.cc",
      "views/payments/secure_payment_confirmation_no_creds_dialog_view.h",
      "views/payments/secure_payment_confirmation_views_util.cc",
      "views/payments/secure_payment_confirmation_views_util.h",
      "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/permission_bubble/permission_prompt_style.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/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/safe_browsing/tailored_security_unconsented_modal.cc",
      "views/safe_browsing/tailored_security_unconsented_modal.h",
      "views/send_tab_to_self/manage_account_devices_link_view.cc",
      "views/send_tab_to_self/manage_account_devices_link_view.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_device_picker_bubble_view.cc",
      "views/send_tab_to_self/send_tab_to_self_device_picker_bubble_view.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/send_tab_to_self/send_tab_to_self_promo_bubble_view.cc",
      "views/send_tab_to_self/send_tab_to_self_promo_bubble_view.h",
      "views/send_tab_to_self/send_tab_to_self_toolbar_bubble_view.cc",
      "views/send_tab_to_self/send_tab_to_self_toolbar_bubble_view.h",
      "views/send_tab_to_self/send_tab_to_self_toolbar_icon_view.cc",
      "views/send_tab_to_self/send_tab_to_self_toolbar_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/sharing_hub/preview_view.cc",
      "views/sharing_hub/preview_view.h",
      "views/sharing_hub/screenshot/screenshot_captured_bubble.cc",
      "views/sharing_hub/screenshot/screenshot_captured_bubble.h",
      "views/sharing_hub/sharing_hub_bubble_action_button.cc",
      "views/sharing_hub/sharing_hub_bubble_action_button.h",
      "views/sharing_hub/sharing_hub_bubble_util.cc",
      "views/sharing_hub/sharing_hub_bubble_util.h",
      "views/sharing_hub/sharing_hub_bubble_view_impl.cc",
      "views/sharing_hub/sharing_hub_bubble_view_impl.h",
      "views/sharing_hub/sharing_hub_icon_view.cc",
      "views/sharing_hub/sharing_hub_icon_view.h",
      "views/shopping_bubble/shopping_prompt_impl.cc",
      "views/shopping_bubble/shopping_prompt_impl.h",
      "views/side_panel/bookmarks/bookmarks_side_panel_coordinator.cc",
      "views/side_panel/bookmarks/bookmarks_side_panel_coordinator.h",
      "views/side_panel/feed/feed_side_panel_coordinator.cc",
      "views/side_panel/feed/feed_side_panel_coordinator.h",
      "views/side_panel/history_clusters/history_clusters_side_panel_coordinator.cc",
      "views/side_panel/history_clusters/history_clusters_side_panel_coordinator.h",
      "views/side_panel/read_anything/read_anything_constants.h",
      "views/side_panel/read_anything/read_anything_container_view.cc",
      "views/side_panel/read_anything/read_anything_container_view.h",
      "views/side_panel/read_anything/read_anything_controller.cc",
      "views/side_panel/read_anything/read_anything_controller.h",
      "views/side_panel/read_anything/read_anything_coordinator.cc",
      "views/side_panel/read_anything/read_anything_coordinator.h",
      "views/side_panel/read_anything/read_anything_model.cc",
      "views/side_panel/read_anything/read_anything_model.h",
      "views/side_panel/read_anything/read_anything_toolbar_view.cc",
      "views/side_panel/read_anything/read_anything_toolbar_view.h",
      "views/side_panel/read_later_side_panel_web_view.cc",
      "views/side_panel/read_later_side_panel_web_view.h",
      "views/side_panel/reading_list/reading_list_side_panel_coordinator.cc",
      "views/side_panel/reading_list/reading_list_side_panel_coordinator.h",
      "views/side_panel/side_panel.cc",
      "views/side_panel/side_panel.h",
      "views/side_panel/side_panel_combobox_model.cc",
      "views/side_panel/side_panel_combobox_model.h",
      "views/side_panel/side_panel_content_proxy.cc",
      "views/side_panel/side_panel_content_proxy.h",
      "views/side_panel/side_panel_coordinator.cc",
      "views/side_panel/side_panel_coordinator.h",
      "views/side_panel/side_panel_entry.cc",
      "views/side_panel/side_panel_entry.h",
      "views/side_panel/side_panel_entry_observer.h",
      "views/side_panel/side_panel_registry.cc",
      "views/side_panel/side_panel_registry.h",
      "views/side_panel/side_panel_registry_observer.h",
      "views/side_panel/side_panel_util.cc",
      "views/side_panel/side_panel_util.h",
      "views/side_panel/side_panel_web_ui_view.cc",
      "views/side_panel/side_panel_web_ui_view.h",
      "views/side_panel/user_note/user_note_ui_coordinator.cc",
      "views/side_panel/user_note/user_note_ui_coordinator.h",
      "views/side_panel/user_note/user_note_view.cc",
      "views/side_panel/user_note/user_note_view.h",
      "views/side_search/default_search_icon_source.cc",
      "views/side_search/default_search_icon_source.h",
      "views/side_search/side_search_browser_controller.cc",
      "views/side_search/side_search_browser_controller.h",
      "views/side_search/side_search_icon_view.cc",
      "views/side_search/side_search_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/sync/one_click_signin_dialog_view.cc",
      "views/sync/one_click_signin_dialog_view.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_bubble_host.cc",
      "views/tab_search_bubble_host.h",
      "views/tab_sharing/tab_capture_contents_border_helper.cc",
      "views/tab_sharing/tab_capture_contents_border_helper.h",
      "views/tab_sharing/tab_sharing_ui_views.cc",
      "views/tab_sharing/tab_sharing_ui_views.h",
      "views/tabs/alert_indicator_button.cc",
      "views/tabs/alert_indicator_button.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/overflow_view.cc",
      "views/tabs/overflow_view.h",
      "views/tabs/tab.cc",
      "views/tabs/tab.h",
      "views/tabs/tab_close_button.cc",
      "views/tabs/tab_close_button.h",
      "views/tabs/tab_container.cc",
      "views/tabs/tab_container.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_hover_card_controller.cc",
      "views/tabs/tab_hover_card_controller.h",
      "views/tabs/tab_hover_card_metrics.cc",
      "views/tabs/tab_hover_card_metrics.h",
      "views/tabs/tab_hover_card_thumbnail_observer.cc",
      "views/tabs/tab_hover_card_thumbnail_observer.h",
      "views/tabs/tab_icon.cc",
      "views/tabs/tab_icon.h",
      "views/tabs/tab_layout_state.cc",
      "views/tabs/tab_layout_state.h",
      "views/tabs/tab_search_button.cc",
      "views/tabs/tab_search_button.h",
      "views/tabs/tab_slot_controller.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_strip_scroll_container.cc",
      "views/tabs/tab_strip_scroll_container.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/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_app_menu_button.cc",
      "views/toolbar/browser_app_menu_button.h",
      "views/toolbar/chrome_labs_bubble_view.cc",
      "views/toolbar/chrome_labs_bubble_view.h",
      "views/toolbar/chrome_labs_bubble_view_model.cc",
      "views/toolbar/chrome_labs_bubble_view_model.h",
      "views/toolbar/chrome_labs_button.cc",
      "views/toolbar/chrome_labs_button.h",
      "views/toolbar/chrome_labs_coordinator.cc",
      "views/toolbar/chrome_labs_coordinator.h",
      "views/toolbar/chrome_labs_item_view.cc",
      "views/toolbar/chrome_labs_item_view.h",
      "views/toolbar/chrome_labs_utils.cc",
      "views/toolbar/chrome_labs_utils.h",
      "views/toolbar/chrome_labs_view_controller.cc",
      "views/toolbar/chrome_labs_view_controller.h",
      "views/toolbar/home_button.cc",
      "views/toolbar/home_button.h",
      "views/toolbar/reload_button.cc",
      "views/toolbar/reload_button.h",
      "views/toolbar/side_panel_toolbar_button.cc",
      "views/toolbar/side_panel_toolbar_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/partial_translate_bubble_view.cc",
      "views/translate/partial_translate_bubble_view.h",
      "views/translate/translate_bubble_controller.cc",
      "views/translate/translate_bubble_controller.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/user_education/browser_feature_promo_controller.cc",
      "views/user_education/browser_feature_promo_controller.h",
      "views/user_education/browser_user_education_service.cc",
      "views/user_education/browser_user_education_service.h",
      "views/user_education/tip_marquee_view.cc",
      "views/user_education/tip_marquee_view.h",
      "views/web_apps/file_handler_launch_dialog_view.cc",
      "views/web_apps/file_handler_launch_dialog_view.h",
      "views/web_apps/frame_toolbar/system_app_accessible_name.cc",
      "views/web_apps/frame_toolbar/system_app_accessible_name.h",
      "views/web_apps/frame_toolbar/web_app_content_settings_container.cc",
      "views/web_apps/frame_toolbar/web_app_content_settings_container.h",
      "views/web_apps/frame_toolbar/web_app_frame_toolbar_utils.cc",
      "views/web_apps/frame_toolbar/web_app_frame_toolbar_utils.h",
      "views/web_apps/frame_toolbar/web_app_frame_toolbar_view.cc",
      "views/web_apps/frame_toolbar/web_app_frame_toolbar_view.h",
      "views/web_apps/frame_toolbar/web_app_menu_button.cc",
      "views/web_apps/frame_toolbar/web_app_menu_button.h",
      "views/web_apps/frame_toolbar/web_app_navigation_button_container.cc",
      "views/web_apps/frame_toolbar/web_app_navigation_button_container.h",
      "views/web_apps/frame_toolbar/web_app_origin_text.cc",
      "views/web_apps/frame_toolbar/web_app_origin_text.h",
      "views/web_apps/frame_toolbar/web_app_toolbar_button_container.cc",
      "views/web_apps/frame_toolbar/web_app_toolbar_button_container.h",
      "views/web_apps/frame_toolbar/window_controls_overlay_toggle_button.cc",
      "views/web_apps/frame_toolbar/window_controls_overlay_toggle_button.h",
      "views/web_apps/launch_app_user_choice_dialog_view.cc",
      "views/web_apps/launch_app_user_choice_dialog_view.h",
      "views/web_apps/protocol_handler_launch_dialog_view.cc",
      "views/web_apps/protocol_handler_launch_dialog_view.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_detailed_install_dialog.cc",
      "views/web_apps/web_app_detailed_install_dialog.h",
      "views/web_apps/web_app_identity_update_confirmation_view.cc",
      "views/web_apps/web_app_identity_update_confirmation_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_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_paask_sheet_view.cc",
      "views/webauthn/authenticator_paask_sheet_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/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/webid/account_selection_bubble_view.cc",
      "views/webid/account_selection_bubble_view.h",
      "views/webid/fedcm_account_selection_view_desktop.cc",
      "views/webid/fedcm_account_selection_view_desktop.h",
      "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_mechanisms_menu_model.cc",
      "webauthn/other_mechanisms_menu_model.h",
      "webauthn/sheet_models.cc",
      "webauthn/sheet_models.h",
      "webauthn/transport_hover_list_model.cc",
      "webauthn/transport_hover_list_model.h",
      "webauthn/webauthn_ui_helpers.cc",
      "webauthn/webauthn_ui_helpers.h",
      "window_name_prompt/window_name_prompt.cc",
    ]

    deps += [
      "side_search:side_search_tab_data_proto",
      "side_search:side_search_window_data_proto",
      "//base",
      "//chrome/browser/ui/views",
      "//components/commerce/core:public",
      "//components/constrained_window",
      "//components/content_settings/browser/ui",
      "//components/fullscreen_control",
      "//components/global_media_controls",
      "//components/live_caption:constants",
      "//components/media_message_center",
      "//components/page_info",
      "//components/page_info/core",
      "//components/page_info/core:proto",
      "//components/payments/content",
      "//components/payments/content:utils",
      "//components/payments/core",
      "//components/qr_code_generator",
      "//components/reading_list/features:flags",
      "//components/services/app_service/public/cpp:intents",
      "//components/soda",
      "//components/soda:constants",
      "//components/tab_count_metrics",
      "//components/ui_devtools/views",
      "//components/user_education/views",
      "//components/user_notes:features",
      "//components/user_notes/browser",
      "//components/user_notes/interfaces",
      "//device/vr/buildflags:buildflags",
      "//services/data_decoder/public/cpp",
      "//services/media_session/public/mojom",
      "//ui/base/dragdrop:types",
      "//ui/gfx/geometry",
      "//ui/views:buildflags",
    ]
    public_deps += [ "//ui/base/dragdrop/mojom:mojom_headers" ]

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

    if (is_linux || is_chromeos_lacros) {
      sources += [
        "views/chrome_views_delegate_linux.cc",
        "views/frame/browser_frame_view_layout_linux.cc",
        "views/frame/browser_frame_view_layout_linux.h",
        "views/frame/browser_frame_view_layout_linux_native.cc",
        "views/frame/browser_frame_view_layout_linux_native.h",
        "views/frame/browser_frame_view_linux.cc",
        "views/frame/browser_frame_view_linux.h",
        "views/frame/browser_frame_view_linux_native.cc",
        "views/frame/browser_frame_view_linux_native.h",
      ]
    }

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

    if (is_linux) {
      sources += [
        "views/status_icons/status_tray_linux.cc",
        "views/status_icons/status_tray_linux.h",
      ]
    }
    if (is_chromeos) {
      sources += [
        "sharing_hub/sharing_hub_bubble_controller_chromeos_impl.cc",
        "sharing_hub/sharing_hub_bubble_controller_chromeos_impl.h",
        "views/status_icons/status_tray_chromeos.cc",
      ]
      deps += [ "//components/arc/common:arc_intent_helper_constants" ]
    }
    if (is_fuchsia) {
      sources += [
        "views/certificate_viewer_fuchsia.cc",
        "views/chrome_views_delegate_fuchsia.cc",
        "views/frame/browser_desktop_window_tree_host.h",
        "views/frame/browser_desktop_window_tree_host_fuchsia.cc",
        "views/frame/native_browser_frame_factory_aura.cc",
        "views/status_icons/status_tray_fuchsia.cc",
        "webui/help/version_updater_basic.cc",
        "webui/help/version_updater_basic.h",
        "webui/settings/settings_utils_fuchsia.cc",
      ]
    }

    if (is_win || is_linux) {
      sources += [
        "views/bluetooth_device_credentials_view.cc",
        "views/bluetooth_device_credentials_view.h",
        "views/bluetooth_device_pair_confirm_view.cc",
        "views/bluetooth_device_pair_confirm_view.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/policy/enterprise_startup_dialog_mac_util.h",
        "views/policy/enterprise_startup_dialog_mac_util.mm",
      ]
    } else {
      sources += [
        "views/create_application_shortcut_view.cc",
        "views/create_application_shortcut_view.h",
      ]
    }

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

    if (is_win || is_fuchsia || is_linux || is_chromeos_lacros) {
      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_linux || is_chromeos_lacros) {
        sources += [
          "views/chrome_browser_main_extra_parts_views_linux.cc",
          "views/chrome_browser_main_extra_parts_views_linux.h",
        ]
        deps += [
          "//ui/base/cursor",
          "//ui/ozone",
        ]
      }
    }

    if (!is_chromeos_ash) {
      sources += [
        "bookmarks/bookmark_bubble_sign_in_delegate.cc",
        "bookmarks/bookmark_bubble_sign_in_delegate.h",
        "dialogs/outdated_upgrade_bubble.cc",
        "dialogs/outdated_upgrade_bubble.h",
        "views/accessibility/accessibility_focus_highlight.cc",
        "views/accessibility/accessibility_focus_highlight.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/bubble_sync_promo_signin_button_view.cc",
        "views/sync/bubble_sync_promo_signin_button_view.h",
        "views/sync/bubble_sync_promo_view.cc",
        "views/sync/bubble_sync_promo_view.h",
      ]
    }

    if (!is_chromeos) {
      sources += [
        "sharing_hub/sharing_hub_bubble_controller_desktop_impl.cc",
        "sharing_hub/sharing_hub_bubble_controller_desktop_impl.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",
      ]
      deps += [ "//ui/views/window/vector_icons" ]
    }

    if (is_chromeos_ash) {
      deps += [
        "//components/metrics/structured:neutrino_logging",
        "//components/metrics/structured:neutrino_logging_util",
      ]
    }

    if (is_chrome_branded) {
      sources += [
        "lens/lens_side_panel_helper.h",
        "views/lens/lens_region_search_instructions_view.cc",
        "views/lens/lens_region_search_instructions_view.h",
        "views/lens/lens_side_panel_controller.cc",
        "views/lens/lens_side_panel_controller.h",
        "views/lens/lens_side_panel_helper.cc",
        "views/lens/lens_side_panel_view.cc",
        "views/lens/lens_side_panel_view.h",
      ]
      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" ]
    }

    if (!is_chromeos_ash) {
      sources += [
        "views/frame/desktop_browser_frame_aura.cc",
        "views/frame/desktop_browser_frame_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/ash/system_web_apps/types:types",
      "//chrome/browser/extensions",
      "//chrome/browser/web_share_target",
      "//chrome/common/extensions/api",
      "//components/drive",
      "//components/guest_view/browser",
      "//extensions/browser",
      "//extensions/browser/api/management",
      "//extensions/common:mojom",
      "//extensions/components/native_app_window",
      "//extensions/strings",
      "//ui/base/cursor",
      "//ui/color:color",
    ]
    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/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_popup_types.h",
      "extensions/extension_removal_watcher.cc",
      "extensions/extension_removal_watcher.h",
      "extensions/extension_settings_overridden_dialog.cc",
      "extensions/extension_settings_overridden_dialog.h",
      "extensions/extension_site_access_combobox_model.cc",
      "extensions/extension_site_access_combobox_model.h",
      "extensions/extensions_container.h",
      "extensions/extensions_dialogs.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/chrome_javascript_app_modal_view_factory_views.cc",
      "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",
      "views/javascript_app_modal_event_blocker.h",
      "web_applications/app_browser_controller.cc",
      "web_applications/app_browser_controller.h",
      "web_applications/draggable_region_host_impl.cc",
      "web_applications/draggable_region_host_impl.h",
      "web_applications/share_target_utils.cc",
      "web_applications/share_target_utils.h",
      "web_applications/sub_apps_service_impl.cc",
      "web_applications/sub_apps_service_impl.h",
      "web_applications/system_web_app_delegate_ui_impl.cc",
      "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_process.cc",
      "web_applications/web_app_launch_process.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_metrics_tab_helper.cc",
      "web_applications/web_app_metrics_tab_helper.h",
      "web_applications/web_app_ui_manager_impl.cc",
      "web_applications/web_app_ui_manager_impl.h",
      "web_applications/web_app_ui_utils.cc",
      "web_applications/web_app_ui_utils.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) {
      sources += [ "views/javascript_app_modal_event_blocker_mac.h" ]
    } else {
      deps += [ "//apps/ui/views" ]
    }

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

      deps += [ "//ui/wm/public" ]
    }
  }

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

  if (enable_pdf) {
    deps += [ "//components/pdf/browser" ]
  }

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

  if (enable_basic_printing) {
    deps += [
      "//components/printing/browser",
      "//printing",
    ]
  }
  if (enable_print_preview) {
    sources += [
      "webui/print_preview/data_request_filter.cc",
      "webui/print_preview/data_request_filter.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_ui_untrusted.cc",
      "webui/print_preview/print_preview_ui_untrusted.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 += [
      "//chrome/common/printing",
      "//chrome/services/printing/public/mojom",
      "//components/printing/common:mojo_interfaces",
      "//components/services/print_compositor/public/mojom",
      "//printing/backend",
      "//printing/buildflags",
      "//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",
        "webui/print_preview/print_preview_handler_chromeos.cc",
        "webui/print_preview/print_preview_handler_chromeos.h",
      ]
      deps += [ "//chromeos/printing" ]
    } else {
      sources += [
        "webui/print_preview/local_printer_handler_default.cc",
        "webui/print_preview/local_printer_handler_default.h",
      ]
    }
  }

  if (safe_browsing_mode > 0) {
    deps += [
      "//components/safe_browsing/content/browser:safe_browsing_blocking_page",
    ]
  }

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

    deps += [
      "//chrome/browser/ui/webui/reset_password:mojo_bindings",
      "//chrome/common/safe_browsing:proto",
      "//components/safe_browsing/core/browser/password_protection:password_protection_metrics_util",
      "//components/safe_browsing/core/common/proto: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_page_handler.cc",
      "webui/tab_strip/tab_strip_page_handler.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_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",
    "toolbar/test_toolbar_actions_bar_bubble_delegate.cc",
    "toolbar/test_toolbar_actions_bar_bubble_delegate.h",
  ]
  public_deps = [ ":ui" ]
  deps = [
    "//build:chromeos_buildflags",
    "//chrome/app/theme:theme_resources",
    "//chrome/browser",
    "//chrome/browser/devtools",
    "//chrome/browser/profiles:profile",
    "//components/omnibox/browser",
    "//components/password_manager/core/browser",
    "//components/payments/content",
    "//components/permissions",
    "//components/sessions",
    "//components/translate/content/browser",
    "//components/url_formatter",
    "//components/zoom",
    "//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/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 += [
      "autofill_assistant/password_change/mock_assistant_display_delegate.cc",
      "autofill_assistant/password_change/mock_assistant_display_delegate.h",
      "autofill_assistant/password_change/mock_assistant_onboarding_controller.cc",
      "autofill_assistant/password_change/mock_assistant_onboarding_controller.h",
      "autofill_assistant/password_change/mock_assistant_onboarding_prompt.cc",
      "autofill_assistant/password_change/mock_assistant_onboarding_prompt.h",
      "autofill_assistant/password_change/mock_password_change_run_controller.cc",
      "autofill_assistant/password_change/mock_password_change_run_controller.h",
      "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",
      "global_media_controls/test_helper.cc",
      "global_media_controls/test_helper.h",
      "hats/mock_hats_service.cc",
      "hats/mock_hats_service.h",
      "hats/mock_trust_safety_sentiment_service.cc",
      "hats/mock_trust_safety_sentiment_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 += [
      "//chrome/test:test_support_ui",
      "//components/media_message_center:media_message_center",
      "//components/media_router/browser:browser",
      "//components/signin/core/browser",
      "//components/signin/public/identity_manager",
      "//components/ukm:test_support",
      "//services/metrics/public/mojom",
    ]
  }

  if (is_chromeos_ash) {
    sources += [
      "ash/ash_test_util.cc",
      "ash/ash_test_util.h",
      "ash/shelf/chrome_shelf_controller_test_util.cc",
      "ash/shelf/chrome_shelf_controller_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",
      "//chromeos/ui/base",
    ]
  }

  if (enable_extensions) {
    deps += [ "//extensions/browser" ]
  }
}

if (is_chromeos_ash) {
  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" ]
  }
  java_cpp_enum("duplicate_download_enums_java") {
    sources = [ "android/infobars/duplicate_download_infobar.h" ]
  }
}