summaryrefslogtreecommitdiffstats
path: root/chromium/ash/BUILD.gn
blob: d0680b6c34700bd2178f888e75c23fd8adada70a (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
# 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("//ash/ambient/resources/resources.gni")
import("//build/config/chromeos/ui_mode.gni")
import("//build/config/features.gni")
import("//build/config/ui.gni")
import("//chromeos/ash/components/assistant/ambient.gni")
import("//chromeos/components/sensors/buildflags.gni")
import("//mojo/public/tools/bindings/mojom.gni")
import("//testing/test.gni")
import("//tools/grit/repack.gni")
import("//ui/base/ui_features.gni")

# Historical note: Ash shipped on Windows for a couple years to support
# Windows 8 Metro mode. Windows support was removed in 2016.
assert(is_chromeos_ash)
assert(use_aura)
assert(enable_hidpi)

# Chromebooks use ozone/DRM. linux-chromeos uses ozone/X11.
assert(use_ozone)

# NOTE: Ash uses DEPS files to restrict access to its internals, rather than a
# GN "public" section. See README.md for notes on dependencies.
component("ash") {
  sources = [
    "accelerators/accelerator_commands.cc",
    "accelerators/accelerator_commands.h",
    "accelerators/accelerator_controller_impl.cc",
    "accelerators/accelerator_controller_impl.h",
    "accelerators/accelerator_history_impl.cc",
    "accelerators/accelerator_history_impl.h",
    "accelerators/accelerator_ids.h",
    "accelerators/accelerator_notifications.cc",
    "accelerators/accelerator_notifications.h",
    "accelerators/accelerator_table.cc",
    "accelerators/accelerator_table.h",
    "accelerators/ash_focus_manager_factory.cc",
    "accelerators/ash_focus_manager_factory.h",
    "accelerators/debug_commands.cc",
    "accelerators/debug_commands.h",
    "accelerators/exit_warning_handler.cc",
    "accelerators/exit_warning_handler.h",
    "accelerators/key_hold_detector.cc",
    "accelerators/key_hold_detector.h",
    "accelerators/magnifier_key_scroller.cc",
    "accelerators/magnifier_key_scroller.h",
    "accelerators/pre_target_accelerator_handler.cc",
    "accelerators/pre_target_accelerator_handler.h",
    "accelerators/spoken_feedback_toggler.cc",
    "accelerators/spoken_feedback_toggler.h",
    "accelerometer/accelerometer_constants.h",
    "accelerometer/accelerometer_file_reader.cc",
    "accelerometer/accelerometer_file_reader.h",
    "accelerometer/accelerometer_provider_mojo.cc",
    "accelerometer/accelerometer_provider_mojo.h",
    "accelerometer/accelerometer_reader.cc",
    "accelerometer/accelerometer_reader.h",
    "accelerometer/accelerometer_samples_observer.cc",
    "accelerometer/accelerometer_samples_observer.h",
    "accelerometer/accelerometer_types.cc",
    "accelerometer/accelerometer_types.h",
    "accessibility/accessibility_controller_impl.cc",
    "accessibility/accessibility_controller_impl.h",
    "accessibility/accessibility_delegate.h",
    "accessibility/accessibility_observer.h",
    "accessibility/autoclick/autoclick_controller.cc",
    "accessibility/autoclick/autoclick_controller.h",
    "accessibility/autoclick/autoclick_drag_event_rewriter.cc",
    "accessibility/autoclick/autoclick_drag_event_rewriter.h",
    "accessibility/autoclick/autoclick_ring_handler.cc",
    "accessibility/autoclick/autoclick_ring_handler.h",
    "accessibility/autoclick/autoclick_scroll_position_handler.cc",
    "accessibility/autoclick/autoclick_scroll_position_handler.h",
    "accessibility/caption_bubble_context_ash.cc",
    "accessibility/caption_bubble_context_ash.h",
    "accessibility/chromevox/key_accessibility_enabler.cc",
    "accessibility/chromevox/key_accessibility_enabler.h",
    "accessibility/chromevox/spoken_feedback_enabler.cc",
    "accessibility/chromevox/spoken_feedback_enabler.h",
    "accessibility/chromevox/touch_accessibility_enabler.cc",
    "accessibility/chromevox/touch_accessibility_enabler.h",
    "accessibility/chromevox/touch_exploration_controller.cc",
    "accessibility/chromevox/touch_exploration_controller.h",
    "accessibility/chromevox/touch_exploration_manager.cc",
    "accessibility/chromevox/touch_exploration_manager.h",
    "accessibility/default_accessibility_delegate.cc",
    "accessibility/default_accessibility_delegate.h",
    "accessibility/dictation_nudge.cc",
    "accessibility/dictation_nudge.h",
    "accessibility/dictation_nudge_controller.cc",
    "accessibility/dictation_nudge_controller.h",
    "accessibility/magnifier/docked_magnifier_controller.cc",
    "accessibility/magnifier/docked_magnifier_controller.h",
    "accessibility/magnifier/docked_magnifier_controller.h",
    "accessibility/magnifier/fullscreen_magnifier_controller.cc",
    "accessibility/magnifier/fullscreen_magnifier_controller.h",
    "accessibility/magnifier/fullscreen_magnifier_controller.h",
    "accessibility/magnifier/magnifier_glass.cc",
    "accessibility/magnifier/magnifier_glass.h",
    "accessibility/magnifier/magnifier_utils.cc",
    "accessibility/magnifier/magnifier_utils.h",
    "accessibility/magnifier/partial_magnifier_controller.cc",
    "accessibility/magnifier/partial_magnifier_controller.h",
    "accessibility/scoped_a11y_override_window_setter.cc",
    "accessibility/scoped_a11y_override_window_setter.h",
    "accessibility/sticky_keys/sticky_keys_controller.cc",
    "accessibility/sticky_keys/sticky_keys_controller.h",
    "accessibility/sticky_keys/sticky_keys_overlay.cc",
    "accessibility/sticky_keys/sticky_keys_overlay.h",
    "accessibility/sticky_keys/sticky_keys_state.h",
    "accessibility/switch_access/point_scan_controller.cc",
    "accessibility/switch_access/point_scan_controller.h",
    "accessibility/switch_access/point_scan_layer.cc",
    "accessibility/switch_access/point_scan_layer.h",
    "accessibility/switch_access/point_scan_layer_animation_info.cc",
    "accessibility/switch_access/point_scan_layer_animation_info.h",
    "accessibility/ui/accessibility_animation_one_shot.cc",
    "accessibility/ui/accessibility_animation_one_shot.h",
    "accessibility/ui/accessibility_confirmation_dialog.cc",
    "accessibility/ui/accessibility_confirmation_dialog.h",
    "accessibility/ui/accessibility_cursor_ring_layer.cc",
    "accessibility/ui/accessibility_cursor_ring_layer.h",
    "accessibility/ui/accessibility_focus_ring.cc",
    "accessibility/ui/accessibility_focus_ring.h",
    "accessibility/ui/accessibility_focus_ring_controller_impl.cc",
    "accessibility/ui/accessibility_focus_ring_controller_impl.h",
    "accessibility/ui/accessibility_focus_ring_group.cc",
    "accessibility/ui/accessibility_focus_ring_group.h",
    "accessibility/ui/accessibility_focus_ring_layer.cc",
    "accessibility/ui/accessibility_focus_ring_layer.h",
    "accessibility/ui/accessibility_highlight_controller.cc",
    "accessibility/ui/accessibility_highlight_controller.h",
    "accessibility/ui/accessibility_highlight_layer.cc",
    "accessibility/ui/accessibility_highlight_layer.h",
    "accessibility/ui/accessibility_layer.cc",
    "accessibility/ui/accessibility_layer.h",
    "accessibility/ui/accessibility_panel_layout_manager.cc",
    "accessibility/ui/accessibility_panel_layout_manager.h",
    "accessibility/ui/focus_ring_controller.cc",
    "accessibility/ui/focus_ring_controller.h",
    "accessibility/ui/focus_ring_layer.cc",
    "accessibility/ui/focus_ring_layer.h",
    "accessibility/ui/layer_animation_info.cc",
    "accessibility/ui/layer_animation_info.h",
    "ambient/ambient_access_token_controller.cc",
    "ambient/ambient_access_token_controller.h",
    "ambient/ambient_constants.h",
    "ambient/ambient_controller.cc",
    "ambient/ambient_controller.h",
    "ambient/ambient_photo_cache.cc",
    "ambient/ambient_photo_cache.h",
    "ambient/ambient_photo_controller.cc",
    "ambient/ambient_photo_controller.h",
    "ambient/ambient_view_delegate_impl.cc",
    "ambient/ambient_view_delegate_impl.h",
    "ambient/ambient_weather_controller.cc",
    "ambient/ambient_weather_controller.h",
    "ambient/autotest_ambient_api.cc",
    "ambient/model/ambient_animation_attribution_provider.cc",
    "ambient/model/ambient_animation_attribution_provider.h",
    "ambient/model/ambient_animation_photo_config.cc",
    "ambient/model/ambient_animation_photo_config.h",
    "ambient/model/ambient_animation_photo_provider.cc",
    "ambient/model/ambient_animation_photo_provider.h",
    "ambient/model/ambient_backend_model.cc",
    "ambient/model/ambient_backend_model.h",
    "ambient/model/ambient_backend_model_observer.h",
    "ambient/model/ambient_photo_config.cc",
    "ambient/model/ambient_photo_config.h",
    "ambient/model/ambient_slideshow_photo_config.cc",
    "ambient/model/ambient_slideshow_photo_config.h",
    "ambient/model/ambient_topic_queue.cc",
    "ambient/model/ambient_topic_queue.h",
    "ambient/model/ambient_topic_queue_animation_delegate.cc",
    "ambient/model/ambient_topic_queue_animation_delegate.h",
    "ambient/model/ambient_topic_queue_slideshow_delegate.cc",
    "ambient/model/ambient_topic_queue_slideshow_delegate.h",
    "ambient/model/ambient_weather_model.cc",
    "ambient/model/ambient_weather_model.h",
    "ambient/model/ambient_weather_model_observer.h",
    "ambient/resources/ambient_animation_resource_constants.h",
    "ambient/resources/ambient_animation_static_resources.h",
    "ambient/ui/ambient_animation_attribution_transformer.cc",
    "ambient/ui/ambient_animation_attribution_transformer.h",
    "ambient/ui/ambient_animation_background_color.cc",
    "ambient/ui/ambient_animation_background_color.h",
    "ambient/ui/ambient_animation_player.cc",
    "ambient/ui/ambient_animation_player.h",
    "ambient/ui/ambient_animation_resizer.cc",
    "ambient/ui/ambient_animation_resizer.h",
    "ambient/ui/ambient_animation_shield_controller.cc",
    "ambient/ui/ambient_animation_shield_controller.h",
    "ambient/ui/ambient_animation_view.cc",
    "ambient/ui/ambient_animation_view.h",
    "ambient/ui/ambient_background_image_view.cc",
    "ambient/ui/ambient_background_image_view.h",
    "ambient/ui/ambient_container_view.cc",
    "ambient/ui/ambient_container_view.h",
    "ambient/ui/ambient_info_view.cc",
    "ambient/ui/ambient_info_view.h",
    "ambient/ui/ambient_shield_view.cc",
    "ambient/ui/ambient_shield_view.h",
    "ambient/ui/ambient_view_delegate.h",
    "ambient/ui/ambient_view_ids.h",
    "ambient/ui/glanceable_info_view.cc",
    "ambient/ui/glanceable_info_view.h",
    "ambient/ui/jitter_calculator.cc",
    "ambient/ui/jitter_calculator.h",
    "ambient/ui/media_string_view.cc",
    "ambient/ui/media_string_view.h",
    "ambient/ui/photo_view.cc",
    "ambient/ui/photo_view.h",
    "ambient/util/ambient_util.cc",
    "ambient/util/ambient_util.h",
    "animation/animation_change_type.h",
    "ash_export.h",
    "ash_interfaces.cc",
    "ash_prefs.cc",
    "assistant/assistant_alarm_timer_controller_impl.cc",
    "assistant/assistant_alarm_timer_controller_impl.h",
    "assistant/assistant_controller_impl.cc",
    "assistant/assistant_controller_impl.h",
    "assistant/assistant_interaction_controller_impl.cc",
    "assistant/assistant_interaction_controller_impl.h",
    "assistant/assistant_notification_controller_impl.cc",
    "assistant/assistant_notification_controller_impl.h",
    "assistant/assistant_notification_expiry_monitor.cc",
    "assistant/assistant_notification_expiry_monitor.h",
    "assistant/assistant_screen_context_controller_impl.cc",
    "assistant/assistant_screen_context_controller_impl.h",
    "assistant/assistant_setup_controller.cc",
    "assistant/assistant_setup_controller.h",
    "assistant/assistant_state_controller.cc",
    "assistant/assistant_state_controller.h",
    "assistant/assistant_suggestions_controller_impl.cc",
    "assistant/assistant_suggestions_controller_impl.h",
    "assistant/assistant_ui_controller_impl.cc",
    "assistant/assistant_ui_controller_impl.h",
    "assistant/assistant_view_delegate_impl.cc",
    "assistant/assistant_view_delegate_impl.h",
    "assistant/assistant_web_ui_controller.cc",
    "assistant/assistant_web_ui_controller.h",
    "assistant/assistant_web_view_delegate_impl.cc",
    "assistant/assistant_web_view_delegate_impl.h",
    "autotest_private_api_utils.cc",
    "bluetooth_devices_observer.cc",
    "bluetooth_devices_observer.h",
    "bubble/bubble_constants.h",
    "bubble/bubble_utils.cc",
    "bubble/bubble_utils.h",
    "bubble/simple_grid_layout.cc",
    "bubble/simple_grid_layout.h",
    "calendar/calendar_client.h",
    "calendar/calendar_controller.cc",
    "calendar/calendar_controller.h",
    "cancel_mode.cc",
    "cancel_mode.h",
    "capture_mode/camera_video_frame_handler.cc",
    "capture_mode/camera_video_frame_handler.h",
    "capture_mode/camera_video_frame_renderer.cc",
    "capture_mode/camera_video_frame_renderer.h",
    "capture_mode/capture_label_view.cc",
    "capture_mode/capture_label_view.h",
    "capture_mode/capture_mode_api.cc",
    "capture_mode/capture_mode_ash_notification_view.cc",
    "capture_mode/capture_mode_ash_notification_view.h",
    "capture_mode/capture_mode_bar_view.cc",
    "capture_mode/capture_mode_bar_view.h",
    "capture_mode/capture_mode_button.cc",
    "capture_mode/capture_mode_button.h",
    "capture_mode/capture_mode_camera_controller.cc",
    "capture_mode/capture_mode_camera_controller.h",
    "capture_mode/capture_mode_camera_preview_view.cc",
    "capture_mode/capture_mode_camera_preview_view.h",
    "capture_mode/capture_mode_constants.h",
    "capture_mode/capture_mode_controller.cc",
    "capture_mode/capture_mode_controller.h",
    "capture_mode/capture_mode_feature_pod_controller.cc",
    "capture_mode/capture_mode_feature_pod_controller.h",
    "capture_mode/capture_mode_menu_group.cc",
    "capture_mode/capture_mode_menu_group.h",
    "capture_mode/capture_mode_metrics.cc",
    "capture_mode/capture_mode_metrics.h",
    "capture_mode/capture_mode_notification_view.cc",
    "capture_mode/capture_mode_notification_view.h",
    "capture_mode/capture_mode_session.cc",
    "capture_mode/capture_mode_session.h",
    "capture_mode/capture_mode_session_focus_cycler.cc",
    "capture_mode/capture_mode_session_focus_cycler.h",
    "capture_mode/capture_mode_settings_view.cc",
    "capture_mode/capture_mode_settings_view.h",
    "capture_mode/capture_mode_source_view.cc",
    "capture_mode/capture_mode_source_view.h",
    "capture_mode/capture_mode_test_api.cc",
    "capture_mode/capture_mode_toast_controller.cc",
    "capture_mode/capture_mode_toast_controller.h",
    "capture_mode/capture_mode_toggle_button.cc",
    "capture_mode/capture_mode_toggle_button.h",
    "capture_mode/capture_mode_type_view.cc",
    "capture_mode/capture_mode_type_view.h",
    "capture_mode/capture_mode_types.h",
    "capture_mode/capture_mode_util.cc",
    "capture_mode/capture_mode_util.h",
    "capture_mode/capture_window_observer.cc",
    "capture_mode/capture_window_observer.h",
    "capture_mode/folder_selection_dialog_controller.cc",
    "capture_mode/folder_selection_dialog_controller.h",
    "capture_mode/recording_overlay_controller.cc",
    "capture_mode/recording_overlay_controller.h",
    "capture_mode/stop_recording_button_tray.cc",
    "capture_mode/stop_recording_button_tray.h",
    "capture_mode/user_nudge_controller.cc",
    "capture_mode/user_nudge_controller.h",
    "capture_mode/video_recording_watcher.cc",
    "capture_mode/video_recording_watcher.h",
    "child_accounts/parent_access_controller_impl.cc",
    "child_accounts/parent_access_controller_impl.h",
    "clipboard/clipboard_history.cc",
    "clipboard/clipboard_history.h",
    "clipboard/clipboard_history_controller_impl.cc",
    "clipboard/clipboard_history_controller_impl.h",
    "clipboard/clipboard_history_item.cc",
    "clipboard/clipboard_history_item.h",
    "clipboard/clipboard_history_menu_model_adapter.cc",
    "clipboard/clipboard_history_menu_model_adapter.h",
    "clipboard/clipboard_history_resource_manager.cc",
    "clipboard/clipboard_history_resource_manager.h",
    "clipboard/clipboard_history_util.cc",
    "clipboard/clipboard_history_util.h",
    "clipboard/clipboard_nudge.cc",
    "clipboard/clipboard_nudge.h",
    "clipboard/clipboard_nudge_constants.h",
    "clipboard/clipboard_nudge_controller.cc",
    "clipboard/clipboard_nudge_controller.h",
    "clipboard/control_v_histogram_recorder.cc",
    "clipboard/control_v_histogram_recorder.h",
    "clipboard/scoped_clipboard_history_pause_impl.cc",
    "clipboard/scoped_clipboard_history_pause_impl.h",
    "clipboard/views/clipboard_history_bitmap_item_view.cc",
    "clipboard/views/clipboard_history_bitmap_item_view.h",
    "clipboard/views/clipboard_history_delete_button.cc",
    "clipboard/views/clipboard_history_delete_button.h",
    "clipboard/views/clipboard_history_file_item_view.cc",
    "clipboard/views/clipboard_history_file_item_view.h",
    "clipboard/views/clipboard_history_item_view.cc",
    "clipboard/views/clipboard_history_item_view.h",
    "clipboard/views/clipboard_history_label.cc",
    "clipboard/views/clipboard_history_label.h",
    "clipboard/views/clipboard_history_main_button.cc",
    "clipboard/views/clipboard_history_main_button.h",
    "clipboard/views/clipboard_history_text_item_view.cc",
    "clipboard/views/clipboard_history_text_item_view.h",
    "clipboard/views/clipboard_history_view_constants.h",
    "controls/contextual_nudge.cc",
    "controls/contextual_nudge.h",
    "controls/contextual_tooltip.cc",
    "controls/contextual_tooltip.h",
    "controls/gradient_layer_delegate.cc",
    "controls/gradient_layer_delegate.h",
    "controls/rounded_scroll_bar.cc",
    "controls/rounded_scroll_bar.h",
    "controls/scroll_view_gradient_helper.cc",
    "controls/scroll_view_gradient_helper.h",
    "dbus/ash_dbus_services.cc",
    "dbus/ash_dbus_services.h",
    "dbus/display_service_provider.cc",
    "dbus/display_service_provider.h",
    "dbus/gesture_properties_service_provider.cc",
    "dbus/gesture_properties_service_provider.h",
    "dbus/liveness_service_provider.cc",
    "dbus/liveness_service_provider.h",
    "dbus/privacy_screen_service_provider.cc",
    "dbus/privacy_screen_service_provider.h",
    "dbus/url_handler_service_provider.cc",
    "dbus/url_handler_service_provider.h",
    "dbus/user_authentication_service_provider.cc",
    "dbus/user_authentication_service_provider.h",
    "debug.cc",
    "debug.h",
    "detachable_base/detachable_base_handler.cc",
    "detachable_base/detachable_base_handler.h",
    "detachable_base/detachable_base_notification_controller.cc",
    "detachable_base/detachable_base_notification_controller.h",
    "detachable_base/detachable_base_observer.h",
    "detachable_base/detachable_base_pairing_status.h",
    "display/cros_display_config.cc",
    "display/cros_display_config.h",
    "display/cursor_window_controller.cc",
    "display/cursor_window_controller.h",
    "display/display_alignment_controller.cc",
    "display/display_alignment_controller.h",
    "display/display_alignment_indicator.cc",
    "display/display_alignment_indicator.h",
    "display/display_animator.cc",
    "display/display_animator.h",
    "display/display_change_dialog.cc",
    "display/display_change_dialog.h",
    "display/display_color_manager.cc",
    "display/display_color_manager.h",
    "display/display_configuration_controller.cc",
    "display/display_configuration_controller.h",
    "display/display_configuration_observer.cc",
    "display/display_configuration_observer.h",
    "display/display_error_observer.cc",
    "display/display_error_observer.h",
    "display/display_highlight_controller.cc",
    "display/display_highlight_controller.h",
    "display/display_move_window_util.cc",
    "display/display_move_window_util.h",
    "display/display_prefs.cc",
    "display/display_prefs.h",
    "display/display_shutdown_observer.cc",
    "display/display_shutdown_observer.h",
    "display/display_util.cc",
    "display/display_util.h",
    "display/event_transformation_handler.cc",
    "display/event_transformation_handler.h",
    "display/extended_mouse_warp_controller.cc",
    "display/extended_mouse_warp_controller.h",
    "display/mirror_window_controller.cc",
    "display/mirror_window_controller.h",
    "display/mouse_cursor_event_filter.cc",
    "display/mouse_cursor_event_filter.h",
    "display/mouse_warp_controller.h",
    "display/null_mouse_warp_controller.cc",
    "display/null_mouse_warp_controller.h",
    "display/output_protection_delegate.cc",
    "display/output_protection_delegate.h",
    "display/overscan_calibrator.cc",
    "display/overscan_calibrator.h",
    "display/persistent_window_controller.cc",
    "display/persistent_window_controller.h",
    "display/persistent_window_info.cc",
    "display/persistent_window_info.h",
    "display/privacy_screen_controller.cc",
    "display/privacy_screen_controller.h",
    "display/projecting_observer.cc",
    "display/projecting_observer.h",
    "display/resolution_notification_controller.cc",
    "display/resolution_notification_controller.h",
    "display/root_window_transformers.cc",
    "display/root_window_transformers.h",
    "display/screen_ash.cc",
    "display/screen_ash.h",
    "display/screen_orientation_controller.cc",
    "display/screen_orientation_controller.h",
    "display/screen_orientation_controller.h",
    "display/screen_position_controller.cc",
    "display/screen_position_controller.h",
    "display/shared_display_edge_indicator.cc",
    "display/shared_display_edge_indicator.h",
    "display/touch_calibrator_controller.cc",
    "display/touch_calibrator_controller.h",
    "display/touch_calibrator_view.cc",
    "display/touch_calibrator_view.h",
    "display/unified_mouse_warp_controller.cc",
    "display/unified_mouse_warp_controller.h",
    "display/window_tree_host_manager.cc",
    "display/window_tree_host_manager.h",
    "drag_drop/drag_drop_capture_delegate.cc",
    "drag_drop/drag_drop_capture_delegate.h",
    "drag_drop/drag_drop_controller.cc",
    "drag_drop/drag_drop_controller.h",
    "drag_drop/drag_drop_tracker.cc",
    "drag_drop/drag_drop_tracker.h",
    "drag_drop/drag_image_view.cc",
    "drag_drop/drag_image_view.h",
    "drag_drop/scoped_drag_drop_observer.cc",
    "drag_drop/scoped_drag_drop_observer.h",
    "drag_drop/tab_drag_drop_delegate.cc",
    "drag_drop/tab_drag_drop_delegate.h",
    "drag_drop/toplevel_window_drag_delegate.h",
    "events/accessibility_event_rewriter.cc",
    "events/accessibility_event_rewriter.h",
    "events/event_rewriter_controller_impl.cc",
    "events/event_rewriter_controller_impl.h",
    "events/keyboard_driven_event_rewriter.cc",
    "events/keyboard_driven_event_rewriter.h",
    "events/select_to_speak_event_handler.cc",
    "events/select_to_speak_event_handler.h",
    "fast_ink/cursor/cursor_view.cc",
    "fast_ink/cursor/cursor_view.h",
    "fast_ink/fast_ink_host.cc",
    "fast_ink/fast_ink_host.h",
    "fast_ink/fast_ink_pointer_controller.cc",
    "fast_ink/fast_ink_pointer_controller.h",
    "fast_ink/fast_ink_points.cc",
    "fast_ink/fast_ink_points.h",
    "fast_ink/fast_ink_view.cc",
    "fast_ink/fast_ink_view.h",
    "fast_ink/laser/laser_pointer_controller.cc",
    "fast_ink/laser/laser_pointer_controller.h",
    "fast_ink/laser/laser_pointer_view.cc",
    "fast_ink/laser/laser_pointer_view.h",
    "fast_ink/laser/laser_segment_utils.cc",
    "fast_ink/laser/laser_segment_utils.h",
    "fast_ink/view_tree_host_root_view.cc",
    "fast_ink/view_tree_host_root_view.h",
    "fast_ink/view_tree_host_widget.cc",
    "fast_ink/view_tree_host_widget.h",
    "focus_cycler.cc",
    "focus_cycler.h",
    "frame/frame_context_menu_controller.cc",
    "frame/frame_context_menu_controller.h",
    "frame/header_view.cc",
    "frame/header_view.h",
    "frame/non_client_frame_view_ash.cc",
    "frame/non_client_frame_view_ash.h",
    "frame/snap_controller_impl.cc",
    "frame/snap_controller_impl.h",
    "frame/wide_frame_view.cc",
    "frame/wide_frame_view.h",
    "frame_throttler/frame_throttling_controller.cc",
    "frame_throttler/frame_throttling_controller.h",
    "frame_throttler/frame_throttling_observer.h",
    "high_contrast/high_contrast_controller.cc",
    "high_contrast/high_contrast_controller.h",
    "highlighter/highlighter_controller.cc",
    "highlighter/highlighter_controller.h",
    "highlighter/highlighter_gesture_util.cc",
    "highlighter/highlighter_gesture_util.h",
    "highlighter/highlighter_result_view.cc",
    "highlighter/highlighter_result_view.h",
    "highlighter/highlighter_view.cc",
    "highlighter/highlighter_view.h",
    "host/ash_window_tree_host.cc",
    "host/ash_window_tree_host.h",
    "host/ash_window_tree_host_delegate.h",
    "host/ash_window_tree_host_init_params.h",
    "host/ash_window_tree_host_mirroring_unified.cc",
    "host/ash_window_tree_host_mirroring_unified.h",
    "host/ash_window_tree_host_platform.cc",
    "host/ash_window_tree_host_platform.h",
    "host/ash_window_tree_host_unified.cc",
    "host/ash_window_tree_host_unified.h",
    "host/root_window_transformer.h",
    "host/transformer_helper.cc",
    "host/transformer_helper.h",
    "hud_display/ash_tracing_handler.cc",
    "hud_display/ash_tracing_handler.h",
    "hud_display/ash_tracing_manager.cc",
    "hud_display/ash_tracing_manager.h",
    "hud_display/ash_tracing_request.cc",
    "hud_display/ash_tracing_request.h",
    "hud_display/cpu_graph_page_view.cc",
    "hud_display/cpu_graph_page_view.h",
    "hud_display/cpu_stats.cc",
    "hud_display/cpu_stats.h",
    "hud_display/data_source.cc",
    "hud_display/data_source.h",
    "hud_display/fps_graph_page_view.cc",
    "hud_display/fps_graph_page_view.h",
    "hud_display/graph.cc",
    "hud_display/graph.h",
    "hud_display/graph_page_view_base.cc",
    "hud_display/graph_page_view_base.h",
    "hud_display/graphs_container_view.cc",
    "hud_display/graphs_container_view.h",
    "hud_display/hud_constants.h",
    "hud_display/hud_display.cc",
    "hud_display/hud_display.h",
    "hud_display/hud_header_view.cc",
    "hud_display/hud_header_view.h",
    "hud_display/hud_properties.cc",
    "hud_display/hud_properties.h",
    "hud_display/hud_settings_view.cc",
    "hud_display/hud_settings_view.h",
    "hud_display/legend.cc",
    "hud_display/legend.h",
    "hud_display/memory_graph_page_view.cc",
    "hud_display/memory_graph_page_view.h",
    "hud_display/memory_status.cc",
    "hud_display/memory_status.h",
    "hud_display/reference_lines.cc",
    "hud_display/reference_lines.h",
    "hud_display/solid_source_background.cc",
    "hud_display/solid_source_background.h",
    "hud_display/tab_strip.cc",
    "hud_display/tab_strip.h",
    "ime/ime_controller_impl.cc",
    "ime/ime_controller_impl.h",
    "ime/ime_mode_indicator_view.cc",
    "ime/ime_mode_indicator_view.h",
    "ime/ime_switch_type.h",
    "ime/mode_indicator_observer.cc",
    "ime/mode_indicator_observer.h",
    "keyboard/arc/arc_virtual_keyboard_container_layout_manager.cc",
    "keyboard/arc/arc_virtual_keyboard_container_layout_manager.h",
    "keyboard/keyboard_controller_impl.cc",
    "keyboard/keyboard_controller_impl.h",
    "keyboard/keyboard_util.cc",
    "keyboard/keyboard_util.h",
    "keyboard/virtual_keyboard_container_layout_manager.cc",
    "keyboard/virtual_keyboard_container_layout_manager.h",
    "keyboard/virtual_keyboard_controller.cc",
    "keyboard/virtual_keyboard_controller.h",
    "lock_screen_action/lock_screen_action_background_controller.cc",
    "lock_screen_action/lock_screen_action_background_controller.h",
    "lock_screen_action/lock_screen_action_background_controller_impl.cc",
    "lock_screen_action/lock_screen_action_background_controller_impl.h",
    "lock_screen_action/lock_screen_action_background_controller_stub.cc",
    "lock_screen_action/lock_screen_action_background_controller_stub.h",
    "lock_screen_action/lock_screen_action_background_observer.h",
    "lock_screen_action/lock_screen_action_background_state.h",
    "lock_screen_action/lock_screen_action_background_view.cc",
    "lock_screen_action/lock_screen_action_background_view.h",
    "lock_screen_action/lock_screen_note_display_state_handler.cc",
    "lock_screen_action/lock_screen_note_display_state_handler.h",
    "lock_screen_action/lock_screen_note_launcher.cc",
    "lock_screen_action/lock_screen_note_launcher.h",
    "login/login_screen_controller.cc",
    "login/login_screen_controller.h",
    "login/security_token_request_controller.cc",
    "login/security_token_request_controller.h",
    "login/ui/access_code_input.cc",
    "login/ui/access_code_input.h",
    "login/ui/animated_auth_factors_label_wrapper.cc",
    "login/ui/animated_auth_factors_label_wrapper.h",
    "login/ui/animated_rounded_image_view.cc",
    "login/ui/animated_rounded_image_view.h",
    "login/ui/animation_frame.h",
    "login/ui/arrow_button_view.cc",
    "login/ui/arrow_button_view.h",
    "login/ui/auth_factor_model.cc",
    "login/ui/auth_factor_model.h",
    "login/ui/auth_icon_view.cc",
    "login/ui/auth_icon_view.h",
    "login/ui/bottom_status_indicator.cc",
    "login/ui/bottom_status_indicator.h",
    "login/ui/fingerprint_auth_factor_model.cc",
    "login/ui/fingerprint_auth_factor_model.h",
    "login/ui/horizontal_image_sequence_animation_decoder.cc",
    "login/ui/horizontal_image_sequence_animation_decoder.h",
    "login/ui/hover_notifier.cc",
    "login/ui/hover_notifier.h",
    "login/ui/image_parser.cc",
    "login/ui/image_parser.h",
    "login/ui/kiosk_app_default_message.cc",
    "login/ui/kiosk_app_default_message.h",
    "login/ui/lock_contents_view.cc",
    "login/ui/lock_contents_view.h",
    "login/ui/lock_debug_view.cc",
    "login/ui/lock_debug_view.h",
    "login/ui/lock_screen.cc",
    "login/ui/lock_screen.h",
    "login/ui/lock_screen_media_controls_view.cc",
    "login/ui/lock_screen_media_controls_view.h",
    "login/ui/login_auth_factors_view.cc",
    "login/ui/login_auth_factors_view.h",
    "login/ui/login_auth_user_view.cc",
    "login/ui/login_auth_user_view.h",
    "login/ui/login_base_bubble_view.cc",
    "login/ui/login_base_bubble_view.h",
    "login/ui/login_big_user_view.cc",
    "login/ui/login_big_user_view.h",
    "login/ui/login_button.cc",
    "login/ui/login_button.h",
    "login/ui/login_camera_timeout_view.cc",
    "login/ui/login_camera_timeout_view.h",
    "login/ui/login_constants.h",
    "login/ui/login_data_dispatcher.cc",
    "login/ui/login_data_dispatcher.h",
    "login/ui/login_detachable_base_model.cc",
    "login/ui/login_detachable_base_model.h",
    "login/ui/login_error_bubble.cc",
    "login/ui/login_error_bubble.h",
    "login/ui/login_expanded_public_account_view.cc",
    "login/ui/login_expanded_public_account_view.h",
    "login/ui/login_palette.cc",
    "login/ui/login_palette.h",
    "login/ui/login_password_view.cc",
    "login/ui/login_password_view.h",
    "login/ui/login_pin_input_view.cc",
    "login/ui/login_pin_input_view.h",
    "login/ui/login_pin_view.cc",
    "login/ui/login_pin_view.h",
    "login/ui/login_public_account_user_view.cc",
    "login/ui/login_public_account_user_view.h",
    "login/ui/login_remove_account_dialog.cc",
    "login/ui/login_remove_account_dialog.h",
    "login/ui/login_tooltip_view.cc",
    "login/ui/login_tooltip_view.h",
    "login/ui/login_user_view.cc",
    "login/ui/login_user_view.h",
    "login/ui/media_controls_header_view.cc",
    "login/ui/media_controls_header_view.h",
    "login/ui/non_accessible_view.cc",
    "login/ui/non_accessible_view.h",
    "login/ui/note_action_launch_button.cc",
    "login/ui/note_action_launch_button.h",
    "login/ui/pin_keyboard_animation.cc",
    "login/ui/pin_keyboard_animation.h",
    "login/ui/pin_request_view.cc",
    "login/ui/pin_request_view.h",
    "login/ui/pin_request_widget.cc",
    "login/ui/pin_request_widget.h",
    "login/ui/public_account_menu_view.cc",
    "login/ui/public_account_menu_view.h",
    "login/ui/public_account_monitoring_info_dialog.cc",
    "login/ui/public_account_monitoring_info_dialog.h",
    "login/ui/scrollable_users_list_view.cc",
    "login/ui/scrollable_users_list_view.h",
    "login/ui/smart_lock_auth_factor_model.cc",
    "login/ui/smart_lock_auth_factor_model.h",
    "login/ui/system_label_button.cc",
    "login/ui/system_label_button.h",
    "login/ui/user_switch_flip_animation.cc",
    "login/ui/user_switch_flip_animation.h",
    "login/ui/views_utils.cc",
    "login/ui/views_utils.h",
    "login_status.h",
    "media/media_controller_impl.cc",
    "media/media_controller_impl.h",
    "metrics/demo_session_metrics_recorder.cc",
    "metrics/demo_session_metrics_recorder.h",
    "metrics/desktop_task_switch_metric_recorder.cc",
    "metrics/desktop_task_switch_metric_recorder.h",
    "metrics/feature_discovery_duration_reporter_impl.cc",
    "metrics/feature_discovery_duration_reporter_impl.h",
    "metrics/histogram_macros.cc",
    "metrics/histogram_macros.h",
    "metrics/login_metrics_recorder.cc",
    "metrics/login_metrics_recorder.h",
    "metrics/login_unlock_throughput_recorder.cc",
    "metrics/login_unlock_throughput_recorder.h",
    "metrics/pip_uma.h",
    "metrics/pointer_metrics_recorder.cc",
    "metrics/pointer_metrics_recorder.h",
    "metrics/stylus_metrics_recorder.cc",
    "metrics/stylus_metrics_recorder.h",
    "metrics/task_switch_metrics_recorder.cc",
    "metrics/task_switch_metrics_recorder.h",
    "metrics/task_switch_source.h",
    "metrics/task_switch_time_tracker.cc",
    "metrics/task_switch_time_tracker.h",
    "metrics/ui_throughput_recorder.cc",
    "metrics/ui_throughput_recorder.h",
    "metrics/user_metrics_recorder.cc",
    "metrics/user_metrics_recorder.h",
    "multi_device_setup/multi_device_notification_presenter.cc",
    "multi_device_setup/multi_device_notification_presenter.h",
    "multi_profile_uma.cc",
    "multi_profile_uma.h",
    "multi_user/multi_user_window_manager_impl.cc",
    "multi_user/multi_user_window_manager_impl.h",
    "multi_user/user_switch_animator.cc",
    "multi_user/user_switch_animator.h",
    "policy/policy_recommendation_restorer.cc",
    "policy/policy_recommendation_restorer.h",
    "power/hid_battery_util.cc",
    "power/hid_battery_util.h",
    "projector/model/projector_session_impl.cc",
    "projector/model/projector_session_impl.h",
    "projector/projector_annotation_tray.cc",
    "projector/projector_annotation_tray.h",
    "projector/projector_controller_impl.cc",
    "projector/projector_controller_impl.h",
    "projector/projector_metadata_controller.cc",
    "projector/projector_metadata_controller.h",
    "projector/projector_metadata_model.cc",
    "projector/projector_metadata_model.h",
    "projector/projector_metrics.cc",
    "projector/projector_metrics.h",
    "projector/projector_ui_controller.cc",
    "projector/projector_ui_controller.h",
    "projector/ui/projector_button.cc",
    "projector/ui/projector_button.h",
    "projector/ui/projector_color_button.cc",
    "projector/ui/projector_color_button.h",

    # These headers declare functions that are implemented inside of //ash, so
    # they cannot live in //ash/public/cpp/BUILD.gn. The "test api" files are
    # not in the test_support target because they are used in production by the
    # autotest extension API.
    "public/ash_interfaces.h",
    "public/cpp/ash_prefs.h",
    "public/cpp/autotest_ambient_api.h",
    "public/cpp/autotest_desks_api.h",
    "public/cpp/autotest_private_api_utils.h",
    "public/cpp/capture_mode/capture_mode_api.h",
    "public/cpp/capture_mode/capture_mode_test_api.h",
    "public/cpp/debug_utils.h",
    "public/cpp/event_rewriter_controller.h",
    "public/cpp/multi_user_window_manager.h",
    "public/cpp/multi_user_window_manager_delegate.h",
    "public/cpp/multi_user_window_manager_observer.h",
    "public/cpp/overview_test_api.h",
    "public/cpp/shelf_config.h",
    "public/cpp/shelf_test_api.h",
    "public/cpp/split_view_test_api.h",
    "public/cpp/style/scoped_light_mode_as_default.h",
    "public/cpp/window_finder.h",
    "public/cpp/window_tree_host_lookup.h",
    "rgb_keyboard/rgb_keyboard_manager.cc",
    "rgb_keyboard/rgb_keyboard_manager.h",
    "rgb_keyboard/rgb_keyboard_util.cc",
    "rgb_keyboard/rgb_keyboard_util.h",
    "root_window_controller.cc",
    "root_window_controller.h",
    "root_window_settings.cc",
    "root_window_settings.h",
    "rotator/screen_rotation_animation.cc",
    "rotator/screen_rotation_animation.h",
    "rotator/screen_rotation_animator.cc",
    "rotator/screen_rotation_animator.h",
    "rotator/screen_rotation_animator.h",
    "rotator/screen_rotation_animator_observer.h",
    "rotator/screen_rotation_animator_observer.h",
    "rotator/window_rotation.cc",
    "rotator/window_rotation.h",
    "scoped_animation_disabler.cc",
    "scoped_animation_disabler.h",
    "screen_util.cc",
    "screen_util.h",
    "session/fullscreen_controller.cc",
    "session/fullscreen_controller.h",
    "session/fullscreen_notification_bubble.cc",
    "session/fullscreen_notification_bubble.h",
    "session/multiprofiles_intro_dialog.cc",
    "session/multiprofiles_intro_dialog.h",
    "session/session_aborted_dialog.cc",
    "session/session_aborted_dialog.h",
    "session/session_activation_observer_holder.cc",
    "session/session_activation_observer_holder.h",
    "session/session_controller_impl.cc",
    "session/session_controller_impl.h",
    "session/session_controller_impl.h",
    "session/teleport_warning_dialog.cc",
    "session/teleport_warning_dialog.h",
    "shelf/assistant_overlay.cc",
    "shelf/assistant_overlay.h",
    "shelf/back_button.cc",
    "shelf/back_button.h",
    "shelf/drag_handle.cc",
    "shelf/drag_handle.h",
    "shelf/drag_window_from_shelf_controller.cc",
    "shelf/drag_window_from_shelf_controller.h",
    "shelf/home_button.cc",
    "shelf/home_button.h",
    "shelf/home_button_controller.cc",
    "shelf/home_button_controller.h",
    "shelf/home_to_overview_nudge_controller.cc",
    "shelf/home_to_overview_nudge_controller.h",
    "shelf/hotseat_transition_animator.cc",
    "shelf/hotseat_transition_animator.h",
    "shelf/hotseat_widget.cc",
    "shelf/hotseat_widget.h",
    "shelf/in_app_to_home_nudge_controller.cc",
    "shelf/in_app_to_home_nudge_controller.h",
    "shelf/kiosk_app_instruction_bubble.cc",
    "shelf/kiosk_app_instruction_bubble.h",
    "shelf/launcher_nudge_controller.cc",
    "shelf/launcher_nudge_controller.h",
    "shelf/login_shelf_gesture_controller.cc",
    "shelf/login_shelf_gesture_controller.h",
    "shelf/login_shelf_view.cc",
    "shelf/login_shelf_view.h",
    "shelf/scroll_arrow_view.cc",
    "shelf/scroll_arrow_view.h",
    "shelf/scrollable_shelf_constants.cc",
    "shelf/scrollable_shelf_constants.h",
    "shelf/scrollable_shelf_view.cc",
    "shelf/scrollable_shelf_view.h",
    "shelf/shelf.cc",
    "shelf/shelf.h",
    "shelf/shelf_app_button.cc",
    "shelf/shelf_app_button.h",
    "shelf/shelf_application_menu_model.cc",
    "shelf/shelf_application_menu_model.h",
    "shelf/shelf_background_animator.cc",
    "shelf/shelf_background_animator.h",
    "shelf/shelf_background_animator_observer.h",
    "shelf/shelf_bubble.cc",
    "shelf/shelf_bubble.h",
    "shelf/shelf_button.cc",
    "shelf/shelf_button.h",
    "shelf/shelf_button_delegate.cc",
    "shelf/shelf_button_delegate.h",
    "shelf/shelf_button_pressed_metric_tracker.cc",
    "shelf/shelf_button_pressed_metric_tracker.h",
    "shelf/shelf_component.h",
    "shelf/shelf_config.cc",
    "shelf/shelf_container_view.cc",
    "shelf/shelf_container_view.h",
    "shelf/shelf_context_menu_model.cc",
    "shelf/shelf_context_menu_model.h",
    "shelf/shelf_control_button.cc",
    "shelf/shelf_control_button.h",
    "shelf/shelf_controller.cc",
    "shelf/shelf_controller.h",
    "shelf/shelf_focus_cycler.cc",
    "shelf/shelf_focus_cycler.h",
    "shelf/shelf_layout_manager.cc",
    "shelf/shelf_layout_manager.h",
    "shelf/shelf_layout_manager_observer.h",
    "shelf/shelf_locking_manager.cc",
    "shelf/shelf_locking_manager.h",
    "shelf/shelf_menu_model_adapter.cc",
    "shelf/shelf_menu_model_adapter.h",
    "shelf/shelf_metrics.h",
    "shelf/shelf_navigation_widget.cc",
    "shelf/shelf_navigation_widget.h",
    "shelf/shelf_observer.h",
    "shelf/shelf_party_feature_pod_controller.cc",
    "shelf/shelf_party_feature_pod_controller.h",
    "shelf/shelf_shutdown_confirmation_bubble.cc",
    "shelf/shelf_shutdown_confirmation_bubble.h",
    "shelf/shelf_test_api.cc",
    "shelf/shelf_tooltip_bubble.cc",
    "shelf/shelf_tooltip_bubble.h",
    "shelf/shelf_tooltip_delegate.h",
    "shelf/shelf_tooltip_manager.cc",
    "shelf/shelf_tooltip_manager.h",
    "shelf/shelf_tooltip_preview_bubble.cc",
    "shelf/shelf_tooltip_preview_bubble.h",
    "shelf/shelf_view.cc",
    "shelf/shelf_view.h",
    "shelf/shelf_widget.cc",
    "shelf/shelf_widget.h",
    "shelf/shelf_window_targeter.cc",
    "shelf/shelf_window_targeter.h",
    "shelf/shelf_window_watcher.cc",
    "shelf/shelf_window_watcher.h",
    "shelf/shelf_window_watcher_item_delegate.cc",
    "shelf/shelf_window_watcher_item_delegate.h",
    "shelf/swipe_home_to_overview_controller.cc",
    "shelf/swipe_home_to_overview_controller.h",
    "shelf/window_preview.cc",
    "shelf/window_preview.h",
    "shelf/window_scale_animation.cc",
    "shelf/window_scale_animation.h",
    "shell.cc",
    "shell.h",
    "shell_delegate.cc",
    "shell_delegate.h",
    "shell_init_params.cc",
    "shell_init_params.h",
    "shell_observer.h",
    "shell_tab_handler.cc",
    "shell_tab_handler.h",
    "shutdown_controller_impl.cc",
    "shutdown_controller_impl.h",
    "shutdown_reason.cc",
    "shutdown_reason.h",
    "style/ash_color_mixer.cc",
    "style/ash_color_mixer.h",
    "style/ash_color_provider.cc",
    "style/ash_color_provider.h",
    "style/close_button.cc",
    "style/close_button.h",
    "style/dark_light_mode_nudge.cc",
    "style/dark_light_mode_nudge.h",
    "style/dark_light_mode_nudge_controller.cc",
    "style/dark_light_mode_nudge_controller.h",
    "style/dark_mode_controller.cc",
    "style/dark_mode_controller.h",
    "style/default_color_constants.h",
    "style/default_colors.cc",
    "style/default_colors.h",
    "style/icon_button.cc",
    "style/icon_button.h",
    "style/pill_button.cc",
    "style/pill_button.h",
    "style/scoped_light_mode_as_default.cc",
    "style/style_util.cc",
    "style/style_util.h",
    "style/system_shadow.cc",
    "style/system_shadow.h",
    "style/system_toast_style.cc",
    "style/system_toast_style.h",
    "system/accessibility/accessibility_feature_disable_dialog.cc",
    "system/accessibility/accessibility_feature_disable_dialog.h",
    "system/accessibility/accessibility_feature_pod_controller.cc",
    "system/accessibility/accessibility_feature_pod_controller.h",
    "system/accessibility/autoclick_menu_bubble_controller.cc",
    "system/accessibility/autoclick_menu_bubble_controller.h",
    "system/accessibility/autoclick_menu_view.cc",
    "system/accessibility/autoclick_menu_view.h",
    "system/accessibility/autoclick_scroll_bubble_controller.cc",
    "system/accessibility/autoclick_scroll_bubble_controller.h",
    "system/accessibility/autoclick_scroll_view.cc",
    "system/accessibility/autoclick_scroll_view.h",
    "system/accessibility/dictation_bubble_controller.cc",
    "system/accessibility/dictation_bubble_controller.h",
    "system/accessibility/dictation_bubble_view.cc",
    "system/accessibility/dictation_bubble_view.h",
    "system/accessibility/dictation_button_tray.cc",
    "system/accessibility/dictation_button_tray.h",
    "system/accessibility/floating_accessibility_controller.cc",
    "system/accessibility/floating_accessibility_controller.h",
    "system/accessibility/floating_accessibility_detailed_controller.cc",
    "system/accessibility/floating_accessibility_detailed_controller.h",
    "system/accessibility/floating_accessibility_view.cc",
    "system/accessibility/floating_accessibility_view.h",
    "system/accessibility/floating_menu_button.cc",
    "system/accessibility/floating_menu_button.h",
    "system/accessibility/floating_menu_utils.cc",
    "system/accessibility/floating_menu_utils.h",
    "system/accessibility/select_to_speak/select_to_speak_constants.h",
    "system/accessibility/select_to_speak/select_to_speak_menu_bubble_controller.cc",
    "system/accessibility/select_to_speak/select_to_speak_menu_bubble_controller.h",
    "system/accessibility/select_to_speak/select_to_speak_menu_view.cc",
    "system/accessibility/select_to_speak/select_to_speak_menu_view.h",
    "system/accessibility/select_to_speak/select_to_speak_metrics_utils.h",
    "system/accessibility/select_to_speak/select_to_speak_speed_bubble_controller.cc",
    "system/accessibility/select_to_speak/select_to_speak_speed_bubble_controller.h",
    "system/accessibility/select_to_speak/select_to_speak_speed_view.cc",
    "system/accessibility/select_to_speak/select_to_speak_speed_view.h",
    "system/accessibility/select_to_speak/select_to_speak_tray.cc",
    "system/accessibility/select_to_speak/select_to_speak_tray.h",
    "system/accessibility/switch_access/switch_access_back_button_bubble_controller.cc",
    "system/accessibility/switch_access/switch_access_back_button_bubble_controller.h",
    "system/accessibility/switch_access/switch_access_back_button_view.cc",
    "system/accessibility/switch_access/switch_access_back_button_view.h",
    "system/accessibility/switch_access/switch_access_menu_bubble_controller.cc",
    "system/accessibility/switch_access/switch_access_menu_bubble_controller.h",
    "system/accessibility/switch_access/switch_access_menu_button.cc",
    "system/accessibility/switch_access/switch_access_menu_button.h",
    "system/accessibility/switch_access/switch_access_menu_view.cc",
    "system/accessibility/switch_access/switch_access_menu_view.h",
    "system/accessibility/tray_accessibility.cc",
    "system/accessibility/tray_accessibility.h",
    "system/accessibility/unified_accessibility_detailed_view_controller.cc",
    "system/accessibility/unified_accessibility_detailed_view_controller.h",
    "system/audio/audio_detailed_view.cc",
    "system/audio/audio_detailed_view.h",
    "system/audio/display_speaker_controller.cc",
    "system/audio/display_speaker_controller.h",
    "system/audio/mic_gain_slider_controller.cc",
    "system/audio/mic_gain_slider_controller.h",
    "system/audio/mic_gain_slider_view.cc",
    "system/audio/mic_gain_slider_view.h",
    "system/audio/unified_audio_detailed_view_controller.cc",
    "system/audio/unified_audio_detailed_view_controller.h",
    "system/audio/unified_volume_slider_controller.cc",
    "system/audio/unified_volume_slider_controller.h",
    "system/audio/unified_volume_view.cc",
    "system/audio/unified_volume_view.h",
    "system/bluetooth/bluetooth_detailed_view.cc",
    "system/bluetooth/bluetooth_detailed_view.h",
    "system/bluetooth/bluetooth_detailed_view_controller.cc",
    "system/bluetooth/bluetooth_detailed_view_controller.h",
    "system/bluetooth/bluetooth_detailed_view_impl.cc",
    "system/bluetooth/bluetooth_detailed_view_impl.h",
    "system/bluetooth/bluetooth_detailed_view_legacy.cc",
    "system/bluetooth/bluetooth_detailed_view_legacy.h",
    "system/bluetooth/bluetooth_device_list_controller.cc",
    "system/bluetooth/bluetooth_device_list_controller.h",
    "system/bluetooth/bluetooth_device_list_controller_impl.cc",
    "system/bluetooth/bluetooth_device_list_controller_impl.h",
    "system/bluetooth/bluetooth_device_list_item_battery_view.cc",
    "system/bluetooth/bluetooth_device_list_item_battery_view.h",
    "system/bluetooth/bluetooth_device_list_item_multiple_battery_view.cc",
    "system/bluetooth/bluetooth_device_list_item_multiple_battery_view.h",
    "system/bluetooth/bluetooth_device_list_item_view.cc",
    "system/bluetooth/bluetooth_device_list_item_view.h",
    "system/bluetooth/bluetooth_device_status_ui_handler.cc",
    "system/bluetooth/bluetooth_device_status_ui_handler.h",
    "system/bluetooth/bluetooth_disabled_detailed_view.cc",
    "system/bluetooth/bluetooth_disabled_detailed_view.h",
    "system/bluetooth/bluetooth_feature_pod_controller.cc",
    "system/bluetooth/bluetooth_feature_pod_controller.h",
    "system/bluetooth/bluetooth_feature_pod_controller_legacy.cc",
    "system/bluetooth/bluetooth_feature_pod_controller_legacy.h",
    "system/bluetooth/bluetooth_notification_controller.cc",
    "system/bluetooth/bluetooth_notification_controller.h",
    "system/bluetooth/bluetooth_power_controller.cc",
    "system/bluetooth/bluetooth_power_controller.h",
    "system/bluetooth/tray_bluetooth_helper.cc",
    "system/bluetooth/tray_bluetooth_helper.h",
    "system/bluetooth/tray_bluetooth_helper_experimental.cc",
    "system/bluetooth/tray_bluetooth_helper_experimental.h",
    "system/bluetooth/tray_bluetooth_helper_legacy.cc",
    "system/bluetooth/tray_bluetooth_helper_legacy.h",
    "system/bluetooth/unified_bluetooth_detailed_view_controller.cc",
    "system/bluetooth/unified_bluetooth_detailed_view_controller.h",
    "system/brightness/brightness_controller_chromeos.cc",
    "system/brightness/brightness_controller_chromeos.h",
    "system/brightness/unified_brightness_slider_controller.cc",
    "system/brightness/unified_brightness_slider_controller.h",
    "system/brightness/unified_brightness_view.cc",
    "system/brightness/unified_brightness_view.h",
    "system/brightness_control_delegate.h",
    "system/caps_lock_notification_controller.cc",
    "system/caps_lock_notification_controller.h",
    "system/cast/cast_feature_pod_controller.cc",
    "system/cast/cast_feature_pod_controller.h",
    "system/cast/cast_notification_controller.cc",
    "system/cast/cast_notification_controller.h",
    "system/cast/tray_cast.cc",
    "system/cast/tray_cast.h",
    "system/cast/unified_cast_detailed_view_controller.cc",
    "system/cast/unified_cast_detailed_view_controller.h",
    "system/dark_mode/dark_mode_feature_pod_controller.cc",
    "system/dark_mode/dark_mode_feature_pod_controller.h",
    "system/diagnostics/async_log.cc",
    "system/diagnostics/async_log.h",
    "system/diagnostics/diagnostics_browser_delegate.cc",
    "system/diagnostics/diagnostics_browser_delegate.h",
    "system/diagnostics/diagnostics_log_controller.cc",
    "system/diagnostics/diagnostics_log_controller.h",
    "system/diagnostics/networking_log.cc",
    "system/diagnostics/networking_log.h",
    "system/diagnostics/routine_log.cc",
    "system/diagnostics/routine_log.h",
    "system/diagnostics/telemetry_log.cc",
    "system/diagnostics/telemetry_log.h",
    "system/eche/eche_icon_loading_indicator_view.cc",
    "system/eche/eche_icon_loading_indicator_view.h",
    "system/eche/eche_tray.cc",
    "system/eche/eche_tray.h",
    "system/enterprise/enterprise_domain_observer.h",
    "system/firmware_update/firmware_update_notification_controller.cc",
    "system/firmware_update/firmware_update_notification_controller.h",
    "system/geolocation/geolocation_controller.cc",
    "system/geolocation/geolocation_controller.h",
    "system/gesture_education/gesture_education_notification_controller.cc",
    "system/gesture_education/gesture_education_notification_controller.h",
    "system/holding_space/downloads_section.cc",
    "system/holding_space/downloads_section.h",
    "system/holding_space/holding_space_animation_registry.cc",
    "system/holding_space/holding_space_animation_registry.h",
    "system/holding_space/holding_space_drag_util.cc",
    "system/holding_space/holding_space_drag_util.h",
    "system/holding_space/holding_space_item_chip_view.cc",
    "system/holding_space/holding_space_item_chip_view.h",
    "system/holding_space/holding_space_item_screen_capture_view.cc",
    "system/holding_space/holding_space_item_screen_capture_view.h",
    "system/holding_space/holding_space_item_view.cc",
    "system/holding_space/holding_space_item_view.h",
    "system/holding_space/holding_space_item_views_section.cc",
    "system/holding_space/holding_space_item_views_section.h",
    "system/holding_space/holding_space_progress_indicator_util.cc",
    "system/holding_space/holding_space_progress_indicator_util.h",
    "system/holding_space/holding_space_tray.cc",
    "system/holding_space/holding_space_tray.h",
    "system/holding_space/holding_space_tray_bubble.cc",
    "system/holding_space/holding_space_tray_bubble.h",
    "system/holding_space/holding_space_tray_child_bubble.cc",
    "system/holding_space/holding_space_tray_child_bubble.h",
    "system/holding_space/holding_space_tray_icon.cc",
    "system/holding_space/holding_space_tray_icon.h",
    "system/holding_space/holding_space_tray_icon_preview.cc",
    "system/holding_space/holding_space_tray_icon_preview.h",
    "system/holding_space/holding_space_util.cc",
    "system/holding_space/holding_space_util.h",
    "system/holding_space/holding_space_view_delegate.cc",
    "system/holding_space/holding_space_view_delegate.h",
    "system/holding_space/pinned_files_bubble.cc",
    "system/holding_space/pinned_files_bubble.h",
    "system/holding_space/pinned_files_section.cc",
    "system/holding_space/pinned_files_section.h",
    "system/holding_space/recent_files_bubble.cc",
    "system/holding_space/recent_files_bubble.h",
    "system/holding_space/screen_captures_section.cc",
    "system/holding_space/screen_captures_section.h",
    "system/human_presence/human_presence_orientation_controller.cc",
    "system/human_presence/human_presence_orientation_controller.h",
    "system/human_presence/lock_on_leave_controller.cc",
    "system/human_presence/lock_on_leave_controller.h",
    "system/human_presence/snooping_protection_controller.cc",
    "system/human_presence/snooping_protection_controller.h",
    "system/human_presence/snooping_protection_notification_blocker.cc",
    "system/human_presence/snooping_protection_notification_blocker.h",
    "system/human_presence/snooping_protection_notification_blocker_internal.h",
    "system/human_presence/snooping_protection_view.cc",
    "system/human_presence/snooping_protection_view.h",
    "system/ime/ime_feature_pod_controller.cc",
    "system/ime/ime_feature_pod_controller.h",
    "system/ime/ime_observer.h",
    "system/ime/tray_ime_chromeos.cc",
    "system/ime/tray_ime_chromeos.h",
    "system/ime/unified_ime_detailed_view_controller.cc",
    "system/ime/unified_ime_detailed_view_controller.h",
    "system/ime_menu/ime_list_view.cc",
    "system/ime_menu/ime_list_view.h",
    "system/ime_menu/ime_menu_tray.cc",
    "system/ime_menu/ime_menu_tray.h",
    "system/keyboard_brightness/keyboard_backlight_color_controller.cc",
    "system/keyboard_brightness/keyboard_backlight_color_controller.h",
    "system/keyboard_brightness/keyboard_backlight_color_nudge_controller.cc",
    "system/keyboard_brightness/keyboard_backlight_color_nudge_controller.h",
    "system/keyboard_brightness/keyboard_backlight_toggle_controller.cc",
    "system/keyboard_brightness/keyboard_backlight_toggle_controller.h",
    "system/keyboard_brightness/keyboard_brightness_controller.cc",
    "system/keyboard_brightness/keyboard_brightness_controller.h",
    "system/keyboard_brightness/unified_keyboard_brightness_slider_controller.cc",
    "system/keyboard_brightness/unified_keyboard_brightness_slider_controller.h",
    "system/keyboard_brightness_control_delegate.h",
    "system/locale/locale_detailed_view.cc",
    "system/locale/locale_detailed_view.h",
    "system/locale/locale_feature_pod_controller.cc",
    "system/locale/locale_feature_pod_controller.h",
    "system/locale/locale_update_controller_impl.cc",
    "system/locale/locale_update_controller_impl.h",
    "system/locale/unified_locale_detailed_view_controller.cc",
    "system/locale/unified_locale_detailed_view_controller.h",
    "system/machine_learning/user_settings_event_logger.cc",
    "system/machine_learning/user_settings_event_logger.h",
    "system/media/media_notification_provider.cc",
    "system/media/media_notification_provider.h",
    "system/media/media_notification_provider_impl.cc",
    "system/media/media_notification_provider_impl.h",
    "system/media/media_notification_provider_observer.h",
    "system/media/media_tray.cc",
    "system/media/media_tray.h",
    "system/media/unified_media_controls_container.cc",
    "system/media/unified_media_controls_container.h",
    "system/media/unified_media_controls_controller.cc",
    "system/media/unified_media_controls_controller.h",
    "system/media/unified_media_controls_detailed_view.cc",
    "system/media/unified_media_controls_detailed_view.h",
    "system/media/unified_media_controls_detailed_view_controller.cc",
    "system/media/unified_media_controls_detailed_view_controller.h",
    "system/media/unified_media_controls_view.cc",
    "system/media/unified_media_controls_view.h",
    "system/message_center/arc_notification_manager_delegate_impl.cc",
    "system/message_center/arc_notification_manager_delegate_impl.h",
    "system/message_center/ash_message_center_lock_screen_controller.cc",
    "system/message_center/ash_message_center_lock_screen_controller.h",
    "system/message_center/ash_message_popup_collection.cc",
    "system/message_center/ash_message_popup_collection.h",
    "system/message_center/ash_notification_expand_button.cc",
    "system/message_center/ash_notification_expand_button.h",
    "system/message_center/ash_notification_input_container.cc",
    "system/message_center/ash_notification_input_container.h",
    "system/message_center/ash_notification_view.cc",
    "system/message_center/ash_notification_view.h",
    "system/message_center/fullscreen_notification_blocker.cc",
    "system/message_center/fullscreen_notification_blocker.h",
    "system/message_center/inactive_user_notification_blocker.cc",
    "system/message_center/inactive_user_notification_blocker.h",
    "system/message_center/message_center_ash_impl.cc",
    "system/message_center/message_center_ash_impl.h",
    "system/message_center/message_center_constants.h",
    "system/message_center/message_center_controller.cc",
    "system/message_center/message_center_controller.h",
    "system/message_center/message_center_scroll_bar.cc",
    "system/message_center/message_center_scroll_bar.h",
    "system/message_center/message_center_style.h",
    "system/message_center/message_center_ui_controller.cc",
    "system/message_center/message_center_ui_controller.h",
    "system/message_center/message_center_ui_delegate.h",
    "system/message_center/message_center_utils.cc",
    "system/message_center/message_center_utils.h",
    "system/message_center/message_view_factory.cc",
    "system/message_center/message_view_factory.h",
    "system/message_center/metrics_utils.cc",
    "system/message_center/metrics_utils.h",
    "system/message_center/notification_grouping_controller.cc",
    "system/message_center/notification_grouping_controller.h",
    "system/message_center/notification_swipe_control_view.cc",
    "system/message_center/notification_swipe_control_view.h",
    "system/message_center/notifier_settings_view.cc",
    "system/message_center/notifier_settings_view.h",
    "system/message_center/session_state_notification_blocker.cc",
    "system/message_center/session_state_notification_blocker.h",
    "system/message_center/stacked_notification_bar.cc",
    "system/message_center/stacked_notification_bar.h",
    "system/message_center/unified_message_center_bubble.cc",
    "system/message_center/unified_message_center_bubble.h",
    "system/message_center/unified_message_center_view.cc",
    "system/message_center/unified_message_center_view.h",
    "system/message_center/unified_message_list_view.cc",
    "system/message_center/unified_message_list_view.h",
    "system/microphone_mute/microphone_mute_notification_controller.cc",
    "system/microphone_mute/microphone_mute_notification_controller.h",
    "system/model/clock_model.cc",
    "system/model/clock_model.h",
    "system/model/clock_observer.h",
    "system/model/enterprise_domain_model.cc",
    "system/model/enterprise_domain_model.h",
    "system/model/locale_model.cc",
    "system/model/locale_model.h",
    "system/model/session_length_limit_model.cc",
    "system/model/session_length_limit_model.h",
    "system/model/system_tray_model.cc",
    "system/model/system_tray_model.h",
    "system/model/tracing_model.cc",
    "system/model/tracing_model.h",
    "system/model/update_model.cc",
    "system/model/update_model.h",
    "system/model/virtual_keyboard_model.cc",
    "system/model/virtual_keyboard_model.h",
    "system/nearby_share/nearby_share_controller_impl.cc",
    "system/nearby_share/nearby_share_controller_impl.h",
    "system/nearby_share/nearby_share_feature_pod_controller.cc",
    "system/nearby_share/nearby_share_feature_pod_controller.h",
    "system/network/active_network_icon.cc",
    "system/network/active_network_icon.h",
    "system/network/auto_connect_notifier.cc",
    "system/network/auto_connect_notifier.h",
    "system/network/cellular_setup_notifier.cc",
    "system/network/cellular_setup_notifier.h",
    "system/network/fake_network_detailed_network_view.cc",
    "system/network/fake_network_detailed_network_view.h",
    "system/network/fake_network_detailed_view_delegate.cc",
    "system/network/fake_network_detailed_view_delegate.h",
    "system/network/fake_network_list_mobile_header_view.cc",
    "system/network/fake_network_list_mobile_header_view.h",
    "system/network/fake_network_list_network_header_view_delegate.cc",
    "system/network/fake_network_list_network_header_view_delegate.h",
    "system/network/fake_network_list_wifi_header_view.cc",
    "system/network/fake_network_list_wifi_header_view.h",
    "system/network/managed_sim_lock_notifier.cc",
    "system/network/managed_sim_lock_notifier.h",
    "system/network/network_detailed_network_view.cc",
    "system/network/network_detailed_network_view.h",
    "system/network/network_detailed_network_view_impl.cc",
    "system/network/network_detailed_network_view_impl.h",
    "system/network/network_detailed_view.cc",
    "system/network/network_detailed_view.h",
    "system/network/network_detailed_view_controller.cc",
    "system/network/network_detailed_view_controller.h",
    "system/network/network_feature_pod_button.cc",
    "system/network/network_feature_pod_button.h",
    "system/network/network_feature_pod_button_legacy.cc",
    "system/network/network_feature_pod_button_legacy.h",
    "system/network/network_feature_pod_controller.cc",
    "system/network/network_feature_pod_controller.h",
    "system/network/network_feature_pod_controller_legacy.cc",
    "system/network/network_feature_pod_controller_legacy.h",
    "system/network/network_icon.cc",
    "system/network/network_icon.h",
    "system/network/network_icon_animation.cc",
    "system/network/network_icon_animation.h",
    "system/network/network_icon_animation_observer.h",
    "system/network/network_info.cc",
    "system/network/network_info.h",
    "system/network/network_info_bubble.cc",
    "system/network/network_info_bubble.h",
    "system/network/network_list_header_view.cc",
    "system/network/network_list_header_view.h",
    "system/network/network_list_item_view.cc",
    "system/network/network_list_item_view.h",
    "system/network/network_list_mobile_header_view.cc",
    "system/network/network_list_mobile_header_view.h",
    "system/network/network_list_mobile_header_view_impl.cc",
    "system/network/network_list_mobile_header_view_impl.h",
    "system/network/network_list_network_header_view.cc",
    "system/network/network_list_network_header_view.h",
    "system/network/network_list_network_item_view.cc",
    "system/network/network_list_network_item_view.h",
    "system/network/network_list_view.cc",
    "system/network/network_list_view.h",
    "system/network/network_list_view_controller.cc",
    "system/network/network_list_view_controller.h",
    "system/network/network_list_view_controller_impl.cc",
    "system/network/network_list_view_controller_impl.h",
    "system/network/network_list_wifi_header_view.cc",
    "system/network/network_list_wifi_header_view.h",
    "system/network/network_list_wifi_header_view_impl.cc",
    "system/network/network_list_wifi_header_view_impl.h",
    "system/network/network_observer.h",
    "system/network/network_row_title_view.cc",
    "system/network/network_row_title_view.h",
    "system/network/network_section_header_view.cc",
    "system/network/network_section_header_view.h",
    "system/network/network_state_list_detailed_view.cc",
    "system/network/network_state_list_detailed_view.h",
    "system/network/network_tray_view.cc",
    "system/network/network_tray_view.h",
    "system/network/sms_observer.cc",
    "system/network/sms_observer.h",
    "system/network/tray_network_state_model.cc",
    "system/network/tray_network_state_model.h",
    "system/network/tray_network_state_observer.h",
    "system/network/unified_network_detailed_view_controller.cc",
    "system/network/unified_network_detailed_view_controller.h",
    "system/network/unified_vpn_detailed_view_controller.cc",
    "system/network/unified_vpn_detailed_view_controller.h",
    "system/network/vpn_feature_pod_controller.cc",
    "system/network/vpn_feature_pod_controller.h",
    "system/network/vpn_list.cc",
    "system/network/vpn_list.h",
    "system/network/vpn_list_view.cc",
    "system/network/vpn_list_view.h",
    "system/network/wifi_toggle_notification_controller.cc",
    "system/network/wifi_toggle_notification_controller.h",
    "system/night_light/night_light_controller_impl.cc",
    "system/night_light/night_light_controller_impl.h",
    "system/night_light/night_light_feature_pod_controller.cc",
    "system/night_light/night_light_feature_pod_controller.h",
    "system/overview/overview_button_tray.cc",
    "system/overview/overview_button_tray.h",
    "system/palette/common_palette_tool.cc",
    "system/palette/common_palette_tool.h",
    "system/palette/palette_ids.cc",
    "system/palette/palette_ids.h",
    "system/palette/palette_tool.cc",
    "system/palette/palette_tool.h",
    "system/palette/palette_tool_manager.cc",
    "system/palette/palette_tool_manager.h",
    "system/palette/palette_tray.cc",
    "system/palette/palette_tray.h",
    "system/palette/palette_utils.cc",
    "system/palette/palette_utils.h",
    "system/palette/palette_welcome_bubble.cc",
    "system/palette/palette_welcome_bubble.h",
    "system/palette/stylus_battery_delegate.cc",
    "system/palette/stylus_battery_delegate.h",
    "system/palette/tools/create_note_action.cc",
    "system/palette/tools/create_note_action.h",
    "system/palette/tools/enter_capture_mode.cc",
    "system/palette/tools/enter_capture_mode.h",
    "system/palette/tools/laser_pointer_mode.cc",
    "system/palette/tools/laser_pointer_mode.h",
    "system/palette/tools/magnifier_mode.cc",
    "system/palette/tools/magnifier_mode.h",
    "system/palette/tools/metalayer_mode.cc",
    "system/palette/tools/metalayer_mode.h",
    "system/pcie_peripheral/pcie_peripheral_notification_controller.cc",
    "system/pcie_peripheral/pcie_peripheral_notification_controller.h",
    "system/phonehub/bluetooth_disabled_view.cc",
    "system/phonehub/bluetooth_disabled_view.h",
    "system/phonehub/camera_roll_menu_model.cc",
    "system/phonehub/camera_roll_menu_model.h",
    "system/phonehub/camera_roll_thumbnail.cc",
    "system/phonehub/camera_roll_thumbnail.h",
    "system/phonehub/camera_roll_view.cc",
    "system/phonehub/camera_roll_view.h",
    "system/phonehub/continue_browsing_chip.cc",
    "system/phonehub/continue_browsing_chip.h",
    "system/phonehub/enable_hotspot_quick_action_controller.cc",
    "system/phonehub/enable_hotspot_quick_action_controller.h",
    "system/phonehub/locate_phone_quick_action_controller.cc",
    "system/phonehub/locate_phone_quick_action_controller.h",
    "system/phonehub/multidevice_feature_opt_in_view.cc",
    "system/phonehub/multidevice_feature_opt_in_view.h",
    "system/phonehub/onboarding_view.cc",
    "system/phonehub/onboarding_view.h",
    "system/phonehub/phone_connected_view.cc",
    "system/phonehub/phone_connected_view.h",
    "system/phonehub/phone_connecting_view.cc",
    "system/phonehub/phone_connecting_view.h",
    "system/phonehub/phone_disconnected_view.cc",
    "system/phonehub/phone_disconnected_view.h",
    "system/phonehub/phone_hub_content_view.cc",
    "system/phonehub/phone_hub_content_view.h",
    "system/phonehub/phone_hub_interstitial_view.cc",
    "system/phonehub/phone_hub_interstitial_view.h",
    "system/phonehub/phone_hub_metrics.cc",
    "system/phonehub/phone_hub_metrics.h",
    "system/phonehub/phone_hub_notification_controller.cc",
    "system/phonehub/phone_hub_notification_controller.h",
    "system/phonehub/phone_hub_recent_app_button.cc",
    "system/phonehub/phone_hub_recent_app_button.h",
    "system/phonehub/phone_hub_recent_apps_view.cc",
    "system/phonehub/phone_hub_recent_apps_view.h",
    "system/phonehub/phone_hub_tray.cc",
    "system/phonehub/phone_hub_tray.h",
    "system/phonehub/phone_hub_ui_controller.cc",
    "system/phonehub/phone_hub_ui_controller.h",
    "system/phonehub/phone_hub_view_ids.h",
    "system/phonehub/phone_status_view.cc",
    "system/phonehub/phone_status_view.h",
    "system/phonehub/quick_action_controller_base.h",
    "system/phonehub/quick_action_item.cc",
    "system/phonehub/quick_action_item.h",
    "system/phonehub/quick_actions_view.cc",
    "system/phonehub/quick_actions_view.h",
    "system/phonehub/silence_phone_quick_action_controller.cc",
    "system/phonehub/silence_phone_quick_action_controller.h",
    "system/phonehub/sub_feature_opt_in_view.cc",
    "system/phonehub/sub_feature_opt_in_view.h",
    "system/phonehub/task_continuation_view.cc",
    "system/phonehub/task_continuation_view.h",
    "system/phonehub/tether_connection_pending_view.cc",
    "system/phonehub/tether_connection_pending_view.h",
    "system/phonehub/ui_constants.h",
    "system/power/adaptive_charging_controller.cc",
    "system/power/adaptive_charging_controller.h",
    "system/power/adaptive_charging_notification_controller.cc",
    "system/power/adaptive_charging_notification_controller.h",
    "system/power/adaptive_charging_nudge.cc",
    "system/power/adaptive_charging_nudge.h",
    "system/power/adaptive_charging_nudge_controller.cc",
    "system/power/adaptive_charging_nudge_controller.h",
    "system/power/backlights_forced_off_setter.cc",
    "system/power/backlights_forced_off_setter.h",
    "system/power/battery_image_source.cc",
    "system/power/battery_image_source.h",
    "system/power/battery_notification.cc",
    "system/power/battery_notification.h",
    "system/power/dual_role_notification.cc",
    "system/power/dual_role_notification.h",
    "system/power/peripheral_battery_listener.cc",
    "system/power/peripheral_battery_listener.h",
    "system/power/peripheral_battery_notifier.cc",
    "system/power/peripheral_battery_notifier.h",
    "system/power/power_button_controller.cc",
    "system/power/power_button_controller.h",
    "system/power/power_button_display_controller.cc",
    "system/power/power_button_display_controller.h",
    "system/power/power_button_menu_item_view.cc",
    "system/power/power_button_menu_item_view.h",
    "system/power/power_button_menu_metrics_type.cc",
    "system/power/power_button_menu_metrics_type.h",
    "system/power/power_button_menu_screen_view.cc",
    "system/power/power_button_menu_screen_view.h",
    "system/power/power_button_menu_view.cc",
    "system/power/power_button_menu_view.h",
    "system/power/power_button_screenshot_controller.cc",
    "system/power/power_button_screenshot_controller.h",
    "system/power/power_event_observer.cc",
    "system/power/power_event_observer.h",
    "system/power/power_notification_controller.cc",
    "system/power/power_notification_controller.h",
    "system/power/power_prefs.cc",
    "system/power/power_prefs.h",
    "system/power/power_status.cc",
    "system/power/power_status.h",
    "system/power/scoped_backlights_forced_off.cc",
    "system/power/scoped_backlights_forced_off.h",
    "system/power/tray_power.cc",
    "system/power/tray_power.h",
    "system/power/video_activity_notifier.cc",
    "system/power/video_activity_notifier.h",
    "system/privacy_screen/privacy_screen_feature_pod_controller.cc",
    "system/privacy_screen/privacy_screen_feature_pod_controller.h",
    "system/privacy_screen/privacy_screen_toast_controller.cc",
    "system/privacy_screen/privacy_screen_toast_controller.h",
    "system/privacy_screen/privacy_screen_toast_view.cc",
    "system/privacy_screen/privacy_screen_toast_view.h",
    "system/progress_indicator/progress_icon_animation.cc",
    "system/progress_indicator/progress_icon_animation.h",
    "system/progress_indicator/progress_indicator.cc",
    "system/progress_indicator/progress_indicator.h",
    "system/progress_indicator/progress_indicator_animation.cc",
    "system/progress_indicator/progress_indicator_animation.h",
    "system/progress_indicator/progress_indicator_animation_registry.cc",
    "system/progress_indicator/progress_indicator_animation_registry.h",
    "system/progress_indicator/progress_ring_animation.cc",
    "system/progress_indicator/progress_ring_animation.h",
    "system/progress_indicator/progress_ring_indeterminate_animation.cc",
    "system/progress_indicator/progress_ring_indeterminate_animation.h",
    "system/progress_indicator/progress_ring_pulse_animation.cc",
    "system/progress_indicator/progress_ring_pulse_animation.h",
    "system/rotation/rotation_lock_feature_pod_controller.cc",
    "system/rotation/rotation_lock_feature_pod_controller.h",
    "system/scheduled_feature/scheduled_feature.cc",
    "system/scheduled_feature/scheduled_feature.h",
    "system/screen_layout_observer.cc",
    "system/screen_layout_observer.h",
    "system/screen_security/screen_capture_observer.h",
    "system/screen_security/screen_security_notification_controller.cc",
    "system/screen_security/screen_security_notification_controller.h",
    "system/screen_security/screen_share_observer.h",
    "system/screen_security/screen_switch_check_controller.cc",
    "system/screen_security/screen_switch_check_controller.h",
    "system/session/logout_button_tray.cc",
    "system/session/logout_button_tray.h",
    "system/session/logout_confirmation_controller.cc",
    "system/session/logout_confirmation_controller.h",
    "system/session/logout_confirmation_dialog.cc",
    "system/session/logout_confirmation_dialog.h",
    "system/session/session_limit_notification_controller.cc",
    "system/session/session_limit_notification_controller.h",
    "system/session/shutdown_confirmation_dialog.cc",
    "system/session/shutdown_confirmation_dialog.h",
    "system/status_area_widget.cc",
    "system/status_area_widget.h",
    "system/status_area_widget_delegate.cc",
    "system/status_area_widget_delegate.h",
    "system/supervised/supervised_icon_string.cc",
    "system/supervised/supervised_icon_string.h",
    "system/system_notification_controller.cc",
    "system/system_notification_controller.h",
    "system/time/calendar_event_fetch.cc",
    "system/time/calendar_event_fetch.h",
    "system/time/calendar_event_fetch_types.h",
    "system/time/calendar_event_list_item_view.cc",
    "system/time/calendar_event_list_item_view.h",
    "system/time/calendar_event_list_view.cc",
    "system/time/calendar_event_list_view.h",
    "system/time/calendar_metrics.cc",
    "system/time/calendar_metrics.h",
    "system/time/calendar_model.cc",
    "system/time/calendar_model.h",
    "system/time/calendar_month_view.cc",
    "system/time/calendar_month_view.h",
    "system/time/calendar_utils.cc",
    "system/time/calendar_utils.h",
    "system/time/calendar_view.cc",
    "system/time/calendar_view.h",
    "system/time/calendar_view_controller.cc",
    "system/time/calendar_view_controller.h",
    "system/time/date_helper.cc",
    "system/time/date_helper.h",
    "system/time/time_of_day.cc",
    "system/time/time_of_day.h",
    "system/time/time_tray_item_view.cc",
    "system/time/time_tray_item_view.h",
    "system/time/time_view.cc",
    "system/time/time_view.h",
    "system/time/unified_calendar_view_controller.cc",
    "system/time/unified_calendar_view_controller.h",
    "system/toast/toast_manager_impl.cc",
    "system/toast/toast_manager_impl.h",
    "system/toast/toast_overlay.cc",
    "system/toast/toast_overlay.h",
    "system/tracing_notification_controller.cc",
    "system/tracing_notification_controller.h",
    "system/tray/actionable_view.cc",
    "system/tray/actionable_view.h",
    "system/tray/detailed_view_delegate.cc",
    "system/tray/detailed_view_delegate.h",
    "system/tray/fake_detailed_view_delegate.cc",
    "system/tray/fake_detailed_view_delegate.h",
    "system/tray/hover_highlight_view.cc",
    "system/tray/hover_highlight_view.h",
    "system/tray/interacted_by_tap_recorder.cc",
    "system/tray/interacted_by_tap_recorder.h",
    "system/tray/size_range_layout.cc",
    "system/tray/size_range_layout.h",
    "system/tray/status_area_overflow_button_tray.cc",
    "system/tray/status_area_overflow_button_tray.h",
    "system/tray/system_menu_button.cc",
    "system/tray/system_menu_button.h",
    "system/tray/system_nudge.cc",
    "system/tray/system_nudge.h",
    "system/tray/system_nudge_controller.cc",
    "system/tray/system_nudge_controller.h",
    "system/tray/system_nudge_label.cc",
    "system/tray/system_nudge_label.h",
    "system/tray/system_tray_item_uma_type.h",
    "system/tray/system_tray_notifier.cc",
    "system/tray/system_tray_notifier.h",
    "system/tray/time_to_click_recorder.cc",
    "system/tray/time_to_click_recorder.h",
    "system/tray/tray_background_view.cc",
    "system/tray/tray_background_view.h",
    "system/tray/tray_bubble_base.h",
    "system/tray/tray_bubble_view.cc",
    "system/tray/tray_bubble_view.h",
    "system/tray/tray_bubble_wrapper.cc",
    "system/tray/tray_bubble_wrapper.h",
    "system/tray/tray_constants.cc",
    "system/tray/tray_constants.h",
    "system/tray/tray_container.cc",
    "system/tray/tray_container.h",
    "system/tray/tray_detailed_view.cc",
    "system/tray/tray_detailed_view.h",
    "system/tray/tray_event_filter.cc",
    "system/tray/tray_event_filter.h",
    "system/tray/tray_info_label.cc",
    "system/tray/tray_info_label.h",
    "system/tray/tray_item_view.cc",
    "system/tray/tray_item_view.h",
    "system/tray/tray_popup_ink_drop_style.h",
    "system/tray/tray_popup_utils.cc",
    "system/tray/tray_popup_utils.h",
    "system/tray/tray_toggle_button.cc",
    "system/tray/tray_toggle_button.h",
    "system/tray/tray_utils.cc",
    "system/tray/tray_utils.h",
    "system/tray/tri_view.cc",
    "system/tray/tri_view.h",
    "system/tray/unfocusable_label.cc",
    "system/tray/unfocusable_label.h",
    "system/tray/view_click_listener.h",
    "system/unified/camera_mic_tray_item_view.cc",
    "system/unified/camera_mic_tray_item_view.h",
    "system/unified/collapse_button.cc",
    "system/unified/collapse_button.h",
    "system/unified/current_locale_view.cc",
    "system/unified/current_locale_view.h",
    "system/unified/custom_shape_button.cc",
    "system/unified/custom_shape_button.h",
    "system/unified/date_tray.cc",
    "system/unified/date_tray.h",
    "system/unified/detailed_view_controller.h",
    "system/unified/feature_pod_button.cc",
    "system/unified/feature_pod_button.h",
    "system/unified/feature_pod_controller_base.cc",
    "system/unified/feature_pod_controller_base.h",
    "system/unified/feature_pods_container_view.cc",
    "system/unified/feature_pods_container_view.h",
    "system/unified/ime_mode_view.cc",
    "system/unified/ime_mode_view.h",
    "system/unified/managed_device_tray_item_view.cc",
    "system/unified/managed_device_tray_item_view.h",
    "system/unified/notification_counter_view.cc",
    "system/unified/notification_counter_view.h",
    "system/unified/notification_hidden_view.cc",
    "system/unified/notification_hidden_view.h",
    "system/unified/notification_icons_controller.cc",
    "system/unified/notification_icons_controller.h",
    "system/unified/page_indicator_view.cc",
    "system/unified/page_indicator_view.h",
    "system/unified/quiet_mode_feature_pod_controller.cc",
    "system/unified/quiet_mode_feature_pod_controller.h",
    "system/unified/top_shortcuts_view.cc",
    "system/unified/top_shortcuts_view.h",
    "system/unified/unified_notifier_settings_controller.cc",
    "system/unified/unified_notifier_settings_controller.h",
    "system/unified/unified_slider_bubble_controller.cc",
    "system/unified/unified_slider_bubble_controller.h",
    "system/unified/unified_slider_view.cc",
    "system/unified/unified_slider_view.h",
    "system/unified/unified_system_info_view.cc",
    "system/unified/unified_system_info_view.h",
    "system/unified/unified_system_tray.cc",
    "system/unified/unified_system_tray.h",
    "system/unified/unified_system_tray_bubble.cc",
    "system/unified/unified_system_tray_bubble.h",
    "system/unified/unified_system_tray_controller.cc",
    "system/unified/unified_system_tray_controller.h",
    "system/unified/unified_system_tray_model.cc",
    "system/unified/unified_system_tray_model.h",
    "system/unified/unified_system_tray_view.cc",
    "system/unified/unified_system_tray_view.h",
    "system/unified/user_chooser_detailed_view_controller.cc",
    "system/unified/user_chooser_detailed_view_controller.h",
    "system/unified/user_chooser_view.cc",
    "system/unified/user_chooser_view.h",
    "system/update/update_notification_controller.cc",
    "system/update/update_notification_controller.h",
    "system/usb_peripheral/usb_peripheral_notification_controller.cc",
    "system/usb_peripheral/usb_peripheral_notification_controller.h",
    "system/user/login_status.cc",
    "system/user/login_status.h",
    "system/virtual_keyboard/virtual_keyboard_observer.h",
    "system/virtual_keyboard/virtual_keyboard_tray.cc",
    "system/virtual_keyboard/virtual_keyboard_tray.h",
    "touch/ash_touch_transform_controller.cc",
    "touch/ash_touch_transform_controller.h",
    "touch/touch_devices_controller.cc",
    "touch/touch_devices_controller.h",
    "touch/touch_hud_debug.cc",
    "touch/touch_hud_debug.h",
    "touch/touch_hud_projection.cc",
    "touch/touch_hud_projection.h",
    "touch/touch_hud_renderer.cc",
    "touch/touch_hud_renderer.h",
    "touch/touch_observer_hud.cc",
    "touch/touch_observer_hud.h",
    "tray_action/tray_action.cc",
    "tray_action/tray_action.h",
    "tray_action/tray_action_observer.h",
    "utility/cropping_util.cc",
    "utility/cropping_util.h",
    "utility/haptics_util.cc",
    "utility/haptics_util.h",
    "utility/layer_copy_animator.cc",
    "utility/layer_copy_animator.h",
    "utility/layer_util.cc",
    "utility/layer_util.h",
    "utility/lottie_util.cc",
    "utility/lottie_util.h",
    "utility/occlusion_tracker_pauser.cc",
    "utility/occlusion_tracker_pauser.h",
    "utility/rounded_window_targeter.cc",
    "utility/rounded_window_targeter.h",
    "utility/transformer_util.cc",
    "utility/transformer_util.h",
    "wallpaper/online_wallpaper_variant_info_fetcher.cc",
    "wallpaper/online_wallpaper_variant_info_fetcher.h",
    "wallpaper/wallpaper_base_view.cc",
    "wallpaper/wallpaper_base_view.h",
    "wallpaper/wallpaper_constants.h",
    "wallpaper/wallpaper_controller_impl.cc",
    "wallpaper/wallpaper_controller_impl.h",
    "wallpaper/wallpaper_pref_manager.cc",
    "wallpaper/wallpaper_pref_manager.h",
    "wallpaper/wallpaper_utils/wallpaper_color_calculator.cc",
    "wallpaper/wallpaper_utils/wallpaper_color_calculator.h",
    "wallpaper/wallpaper_utils/wallpaper_color_calculator_observer.h",
    "wallpaper/wallpaper_utils/wallpaper_color_extraction_result.h",
    "wallpaper/wallpaper_utils/wallpaper_resizer.cc",
    "wallpaper/wallpaper_utils/wallpaper_resizer.h",
    "wallpaper/wallpaper_utils/wallpaper_resizer_observer.h",
    "wallpaper/wallpaper_view.cc",
    "wallpaper/wallpaper_view.h",
    "wallpaper/wallpaper_widget_controller.cc",
    "wallpaper/wallpaper_widget_controller.h",
    "wallpaper/wallpaper_window_state_manager.cc",
    "wallpaper/wallpaper_window_state_manager.h",
    "window_tree_host_lookup.cc",
    "window_user_data.h",
    "wm/always_on_top_controller.cc",
    "wm/always_on_top_controller.h",
    "wm/ash_focus_rules.cc",
    "wm/ash_focus_rules.h",
    "wm/base_state.cc",
    "wm/base_state.h",
    "wm/client_controlled_state.cc",
    "wm/client_controlled_state.h",
    "wm/collision_detection/collision_detection_utils.cc",
    "wm/collision_detection/collision_detection_utils.h",
    "wm/container_finder.cc",
    "wm/container_finder.h",
    "wm/cursor_manager_chromeos.cc",
    "wm/cursor_manager_chromeos.h",
    "wm/default_state.cc",
    "wm/default_state.h",
    "wm/default_window_resizer.cc",
    "wm/default_window_resizer.h",
    "wm/desks/autotest_desks_api.cc",
    "wm/desks/desk.cc",
    "wm/desks/desk.h",
    "wm/desks/desk_action_context_menu.cc",
    "wm/desks/desk_action_context_menu.h",
    "wm/desks/desk_action_view.cc",
    "wm/desks/desk_action_view.h",
    "wm/desks/desk_animation_base.cc",
    "wm/desks/desk_animation_base.h",
    "wm/desks/desk_animation_impl.cc",
    "wm/desks/desk_animation_impl.h",
    "wm/desks/desk_drag_proxy.cc",
    "wm/desks/desk_drag_proxy.h",
    "wm/desks/desk_mini_view.cc",
    "wm/desks/desk_mini_view.h",
    "wm/desks/desk_mini_view_animations.cc",
    "wm/desks/desk_mini_view_animations.h",
    "wm/desks/desk_name_view.cc",
    "wm/desks/desk_name_view.h",
    "wm/desks/desk_preview_view.cc",
    "wm/desks/desk_preview_view.h",
    "wm/desks/desks_animations.cc",
    "wm/desks/desks_animations.h",
    "wm/desks/desks_bar_view.cc",
    "wm/desks/desks_bar_view.h",
    "wm/desks/desks_constants.h",
    "wm/desks/desks_controller.cc",
    "wm/desks/desks_controller.h",
    "wm/desks/desks_histogram_enums.h",
    "wm/desks/desks_restore_util.cc",
    "wm/desks/desks_restore_util.h",
    "wm/desks/desks_textfield.cc",
    "wm/desks/desks_textfield.h",
    "wm/desks/desks_util.cc",
    "wm/desks/desks_util.h",
    "wm/desks/expanded_desks_bar_button.cc",
    "wm/desks/expanded_desks_bar_button.h",
    "wm/desks/persistent_desks_bar_button.cc",
    "wm/desks/persistent_desks_bar_button.h",
    "wm/desks/persistent_desks_bar_context_menu.cc",
    "wm/desks/persistent_desks_bar_context_menu.h",
    "wm/desks/persistent_desks_bar_controller.cc",
    "wm/desks/persistent_desks_bar_controller.h",
    "wm/desks/persistent_desks_bar_view.cc",
    "wm/desks/persistent_desks_bar_view.h",
    "wm/desks/root_window_desk_switch_animator.cc",
    "wm/desks/root_window_desk_switch_animator.h",
    "wm/desks/scroll_arrow_button.cc",
    "wm/desks/scroll_arrow_button.h",
    "wm/desks/templates/restore_data_collector.cc",
    "wm/desks/templates/restore_data_collector.h",
    "wm/desks/templates/save_desk_template_button.cc",
    "wm/desks/templates/save_desk_template_button.h",
    "wm/desks/templates/save_desk_template_button_container.cc",
    "wm/desks/templates/save_desk_template_button_container.h",
    "wm/desks/templates/saved_desk_animations.cc",
    "wm/desks/templates/saved_desk_animations.h",
    "wm/desks/templates/saved_desk_dialog_controller.cc",
    "wm/desks/templates/saved_desk_dialog_controller.h",
    "wm/desks/templates/saved_desk_grid_view.cc",
    "wm/desks/templates/saved_desk_grid_view.h",
    "wm/desks/templates/saved_desk_icon_container.cc",
    "wm/desks/templates/saved_desk_icon_container.h",
    "wm/desks/templates/saved_desk_icon_view.cc",
    "wm/desks/templates/saved_desk_icon_view.h",
    "wm/desks/templates/saved_desk_item_view.cc",
    "wm/desks/templates/saved_desk_item_view.h",
    "wm/desks/templates/saved_desk_library_view.cc",
    "wm/desks/templates/saved_desk_library_view.h",
    "wm/desks/templates/saved_desk_metrics_util.cc",
    "wm/desks/templates/saved_desk_metrics_util.h",
    "wm/desks/templates/saved_desk_name_view.cc",
    "wm/desks/templates/saved_desk_name_view.h",
    "wm/desks/templates/saved_desk_presenter.cc",
    "wm/desks/templates/saved_desk_presenter.h",
    "wm/desks/templates/saved_desk_util.cc",
    "wm/desks/templates/saved_desk_util.h",
    "wm/desks/zero_state_button.cc",
    "wm/desks/zero_state_button.h",
    "wm/drag_details.cc",
    "wm/drag_details.h",
    "wm/drag_window_controller.cc",
    "wm/drag_window_controller.h",
    "wm/drag_window_resizer.cc",
    "wm/drag_window_resizer.h",
    "wm/event_client_impl.cc",
    "wm/event_client_impl.h",
    "wm/float/float_controller.cc",
    "wm/float/float_controller.h",
    "wm/fullscreen_window_finder.cc",
    "wm/fullscreen_window_finder.h",
    "wm/gestures/back_gesture/back_gesture_affordance.cc",
    "wm/gestures/back_gesture/back_gesture_affordance.h",
    "wm/gestures/back_gesture/back_gesture_contextual_nudge.cc",
    "wm/gestures/back_gesture/back_gesture_contextual_nudge.h",
    "wm/gestures/back_gesture/back_gesture_contextual_nudge_controller_impl.cc",
    "wm/gestures/back_gesture/back_gesture_contextual_nudge_controller_impl.h",
    "wm/gestures/back_gesture/back_gesture_event_handler.cc",
    "wm/gestures/back_gesture/back_gesture_event_handler.h",
    "wm/gestures/back_gesture/back_gesture_metrics.cc",
    "wm/gestures/back_gesture/back_gesture_metrics.h",
    "wm/gestures/back_gesture/back_gesture_util.cc",
    "wm/gestures/back_gesture/back_gesture_util.h",
    "wm/gestures/wm_fling_handler.cc",
    "wm/gestures/wm_fling_handler.h",
    "wm/gestures/wm_gesture_handler.cc",
    "wm/gestures/wm_gesture_handler.h",
    "wm/immersive_context_ash.cc",
    "wm/immersive_context_ash.h",
    "wm/lock_action_handler_layout_manager.cc",
    "wm/lock_action_handler_layout_manager.h",
    "wm/lock_layout_manager.cc",
    "wm/lock_layout_manager.h",
    "wm/lock_state_controller.cc",
    "wm/lock_state_controller.h",
    "wm/lock_state_observer.h",
    "wm/lock_window_state.cc",
    "wm/lock_window_state.h",
    "wm/mru_window_tracker.cc",
    "wm/mru_window_tracker.h",
    "wm/multitask_menu_nudge_controller.cc",
    "wm/multitask_menu_nudge_controller.h",
    "wm/native_cursor_manager_ash.cc",
    "wm/native_cursor_manager_ash.h",
    "wm/overlay_event_filter.cc",
    "wm/overlay_event_filter.h",
    "wm/overlay_layout_manager.cc",
    "wm/overlay_layout_manager.h",
    "wm/overview/cleanup_animation_observer.cc",
    "wm/overview/cleanup_animation_observer.h",
    "wm/overview/delayed_animation_observer.h",
    "wm/overview/delayed_animation_observer_impl.cc",
    "wm/overview/delayed_animation_observer_impl.h",
    "wm/overview/drop_target_view.cc",
    "wm/overview/drop_target_view.h",
    "wm/overview/overview_animation_state_waiter.cc",
    "wm/overview/overview_animation_state_waiter.h",
    "wm/overview/overview_constants.h",
    "wm/overview/overview_controller.cc",
    "wm/overview/overview_controller.h",
    "wm/overview/overview_controller.h",
    "wm/overview/overview_delegate.h",
    "wm/overview/overview_grid.cc",
    "wm/overview/overview_grid.h",
    "wm/overview/overview_grid_event_handler.cc",
    "wm/overview/overview_grid_event_handler.h",
    "wm/overview/overview_highlight_controller.cc",
    "wm/overview/overview_highlight_controller.h",
    "wm/overview/overview_highlightable_view.cc",
    "wm/overview/overview_highlightable_view.h",
    "wm/overview/overview_item.cc",
    "wm/overview/overview_item.h",
    "wm/overview/overview_item_view.cc",
    "wm/overview/overview_item_view.h",
    "wm/overview/overview_metrics.cc",
    "wm/overview/overview_metrics.h",
    "wm/overview/overview_observer.h",
    "wm/overview/overview_session.cc",
    "wm/overview/overview_session.h",
    "wm/overview/overview_test_api.cc",
    "wm/overview/overview_types.h",
    "wm/overview/overview_utils.cc",
    "wm/overview/overview_utils.h",
    "wm/overview/overview_wallpaper_controller.cc",
    "wm/overview/overview_wallpaper_controller.h",
    "wm/overview/overview_window_drag_controller.cc",
    "wm/overview/overview_window_drag_controller.h",
    "wm/overview/rounded_label.cc",
    "wm/overview/rounded_label.h",
    "wm/overview/rounded_label_widget.cc",
    "wm/overview/rounded_label_widget.h",
    "wm/overview/scoped_overview_animation_settings.cc",
    "wm/overview/scoped_overview_animation_settings.h",
    "wm/overview/scoped_overview_hide_windows.cc",
    "wm/overview/scoped_overview_hide_windows.h",
    "wm/overview/scoped_overview_transform_window.cc",
    "wm/overview/scoped_overview_transform_window.h",
    "wm/pip/pip_positioner.cc",
    "wm/pip/pip_positioner.h",
    "wm/pip/pip_window_resizer.cc",
    "wm/pip/pip_window_resizer.h",
    "wm/resize_shadow.cc",
    "wm/resize_shadow.h",
    "wm/resize_shadow_controller.cc",
    "wm/resize_shadow_controller.h",
    "wm/root_window_layout_manager.cc",
    "wm/root_window_layout_manager.h",
    "wm/screen_dimmer.cc",
    "wm/screen_dimmer.h",
    "wm/screen_pinning_controller.cc",
    "wm/screen_pinning_controller.h",
    "wm/session_state_animator.cc",
    "wm/session_state_animator.h",
    "wm/session_state_animator_impl.cc",
    "wm/session_state_animator_impl.h",
    "wm/splitview/split_view_constants.h",
    "wm/splitview/split_view_controller.cc",
    "wm/splitview/split_view_controller.h",
    "wm/splitview/split_view_controller.h",
    "wm/splitview/split_view_divider.cc",
    "wm/splitview/split_view_divider.h",
    "wm/splitview/split_view_divider_handler_view.cc",
    "wm/splitview/split_view_divider_handler_view.h",
    "wm/splitview/split_view_drag_indicators.cc",
    "wm/splitview/split_view_drag_indicators.h",
    "wm/splitview/split_view_highlight_view.cc",
    "wm/splitview/split_view_highlight_view.h",
    "wm/splitview/split_view_metrics_controller.cc",
    "wm/splitview/split_view_metrics_controller.h",
    "wm/splitview/split_view_observer.h",
    "wm/splitview/split_view_test_api.cc",
    "wm/splitview/split_view_utils.cc",
    "wm/splitview/split_view_utils.h",
    "wm/stacking_controller.cc",
    "wm/stacking_controller.h",
    "wm/switchable_windows.cc",
    "wm/switchable_windows.h",
    "wm/system_gesture_event_filter.cc",
    "wm/system_gesture_event_filter.h",
    "wm/system_modal_container_event_filter.cc",
    "wm/system_modal_container_event_filter.h",
    "wm/system_modal_container_event_filter_delegate.h",
    "wm/system_modal_container_layout_manager.cc",
    "wm/system_modal_container_layout_manager.h",
    "wm/system_wallpaper_controller.cc",
    "wm/system_wallpaper_controller.h",
    "wm/tablet_mode/internal_input_devices_event_blocker.cc",
    "wm/tablet_mode/internal_input_devices_event_blocker.h",
    "wm/tablet_mode/scoped_skip_user_session_blocked_check.cc",
    "wm/tablet_mode/scoped_skip_user_session_blocked_check.h",
    "wm/tablet_mode/tablet_mode_browser_window_drag_delegate.cc",
    "wm/tablet_mode/tablet_mode_browser_window_drag_delegate.h",
    "wm/tablet_mode/tablet_mode_browser_window_drag_session_windows_hider.cc",
    "wm/tablet_mode/tablet_mode_browser_window_drag_session_windows_hider.h",
    "wm/tablet_mode/tablet_mode_controller.cc",
    "wm/tablet_mode/tablet_mode_controller.h",
    "wm/tablet_mode/tablet_mode_toggle_fullscreen_event_handler.cc",
    "wm/tablet_mode/tablet_mode_toggle_fullscreen_event_handler.h",
    "wm/tablet_mode/tablet_mode_window_drag_delegate.cc",
    "wm/tablet_mode/tablet_mode_window_drag_delegate.h",
    "wm/tablet_mode/tablet_mode_window_drag_metrics.cc",
    "wm/tablet_mode/tablet_mode_window_drag_metrics.h",
    "wm/tablet_mode/tablet_mode_window_manager.cc",
    "wm/tablet_mode/tablet_mode_window_manager.h",
    "wm/tablet_mode/tablet_mode_window_resizer.cc",
    "wm/tablet_mode/tablet_mode_window_resizer.h",
    "wm/tablet_mode/tablet_mode_window_state.cc",
    "wm/tablet_mode/tablet_mode_window_state.h",
    "wm/toplevel_window_event_handler.cc",
    "wm/toplevel_window_event_handler.h",
    "wm/video_detector.cc",
    "wm/video_detector.h",
    "wm/window_animations.cc",
    "wm/window_animations.h",
    "wm/window_cycle/window_cycle_controller.cc",
    "wm/window_cycle/window_cycle_controller.h",
    "wm/window_cycle/window_cycle_event_filter.cc",
    "wm/window_cycle/window_cycle_event_filter.h",
    "wm/window_cycle/window_cycle_item_view.cc",
    "wm/window_cycle/window_cycle_item_view.h",
    "wm/window_cycle/window_cycle_list.cc",
    "wm/window_cycle/window_cycle_list.h",
    "wm/window_cycle/window_cycle_tab_slider.cc",
    "wm/window_cycle/window_cycle_tab_slider.h",
    "wm/window_cycle/window_cycle_tab_slider_button.cc",
    "wm/window_cycle/window_cycle_tab_slider_button.h",
    "wm/window_cycle/window_cycle_view.cc",
    "wm/window_cycle/window_cycle_view.h",
    "wm/window_dimmer.cc",
    "wm/window_dimmer.h",
    "wm/window_finder.cc",
    "wm/window_mini_view.cc",
    "wm/window_mini_view.h",
    "wm/window_mirror_view.cc",
    "wm/window_mirror_view.h",
    "wm/window_mirror_view_pip.cc",
    "wm/window_mirror_view_pip.h",
    "wm/window_positioner.cc",
    "wm/window_positioner.h",
    "wm/window_positioning_utils.cc",
    "wm/window_positioning_utils.h",
    "wm/window_preview_view.cc",
    "wm/window_preview_view.h",
    "wm/window_properties.cc",
    "wm/window_properties.h",
    "wm/window_resizer.cc",
    "wm/window_resizer.h",
    "wm/window_restore/window_restore_controller.cc",
    "wm/window_restore/window_restore_controller.h",
    "wm/window_restore/window_restore_util.cc",
    "wm/window_restore/window_restore_util.h",
    "wm/window_state.cc",
    "wm/window_state.h",
    "wm/window_state_delegate.cc",
    "wm/window_state_delegate.h",
    "wm/window_state_observer.h",
    "wm/window_state_util.cc",
    "wm/window_state_util.h",
    "wm/window_transient_descendant_iterator.cc",
    "wm/window_transient_descendant_iterator.h",
    "wm/window_util.cc",
    "wm/window_util.h",
    "wm/wm_default_layout_manager.cc",
    "wm/wm_default_layout_manager.h",
    "wm/wm_event.cc",
    "wm/wm_event.h",
    "wm/wm_highlight_item_border.cc",
    "wm/wm_highlight_item_border.h",
    "wm/wm_metrics.h",
    "wm/wm_shadow_controller_delegate.cc",
    "wm/wm_shadow_controller_delegate.h",
    "wm/work_area_insets.cc",
    "wm/work_area_insets.h",
    "wm/workspace/backdrop_controller.cc",
    "wm/workspace/backdrop_controller.h",
    "wm/workspace/magnetism_matcher.cc",
    "wm/workspace/magnetism_matcher.h",
    "wm/workspace/multi_window_resize_controller.cc",
    "wm/workspace/multi_window_resize_controller.h",
    "wm/workspace/phantom_window_controller.cc",
    "wm/workspace/phantom_window_controller.h",
    "wm/workspace/workspace_event_handler.cc",
    "wm/workspace/workspace_event_handler.h",
    "wm/workspace/workspace_layout_manager.cc",
    "wm/workspace/workspace_layout_manager.h",
    "wm/workspace/workspace_types.h",
    "wm/workspace/workspace_window_resizer.cc",
    "wm/workspace/workspace_window_resizer.h",
    "wm/workspace_controller.cc",
    "wm/workspace_controller.h",
  ]

  configs += [ "//build/config:precompiled_headers" ]
  defines = [ "ASH_IMPLEMENTATION" ]

  public_deps = [
    "//ash/public/cpp",
    "//ash/public/cpp/app_list/vector_icons:vector_icons",
    "//ash/public/cpp/resources:ash_public_unscaled_resources",
    "//ash/resources/vector_icons",
    "//ash/services/multidevice_setup/public/mojom",
    "//ash/strings",
    "//chromeos/crosapi/mojom",
    "//chromeos/services/machine_learning/public/mojom",
    "//chromeos/ui/vector_icons",
    "//components/discardable_memory/public/mojom",
    "//google_apis/calendar",
    "//google_apis/common",
    "//mojo/public/cpp/bindings",
    "//mojo/public/cpp/system",
    "//services/data_decoder/public/mojom",
    "//services/device/public/cpp/bluetooth",
    "//services/device/public/mojom",
    "//services/media_session/public/cpp",
    "//services/media_session/public/mojom",
    "//skia",
    "//ui/aura",
    "//ui/aura/cursor",
    "//ui/base/cursor",
    "//ui/base/cursor/mojom:cursor_type",
    "//ui/base/dragdrop:types",
    "//ui/base/dragdrop/mojom:mojom_shared",
    "//ui/events",
    "//ui/gfx",
    "//ui/gfx/geometry",
    "//ui/gfx/geometry/mojom",
    "//ui/lottie",
    "//ui/resources",
    "//ui/strings",
    "//ui/views",
    "//ui/wm",
  ]
  deps = [
    "//ash/app_list",
    "//ash/app_menu",
    "//ash/assistant/model",
    "//ash/assistant/ui",
    "//ash/assistant/ui:constants",
    "//ash/assistant/util",
    "//ash/components/audio",
    "//ash/components/fwupd",
    "//ash/components/geolocation",
    "//ash/components/hid_detection",
    "//ash/components/multidevice/logging",
    "//ash/components/peripheral_notification",
    "//ash/components/phonehub",
    "//ash/components/settings",
    "//ash/constants",
    "//ash/dbus:privacy_screen_proto",
    "//ash/in_session_auth",
    "//ash/keyboard/ui",
    "//ash/login/resources:resources_grit",
    "//ash/public/cpp/ambient/proto",
    "//ash/quick_pair",
    "//ash/quick_pair/feature_status_tracker",
    "//ash/quick_pair/keyed_service",
    "//ash/quick_pair/pairing",
    "//ash/quick_pair/repository",
    "//ash/quick_pair/scanning",
    "//ash/quick_pair/ui",
    "//ash/services/multidevice_setup/public/mojom",
    "//ash/services/nearby/public/cpp",
    "//ash/services/quick_pair",
    "//ash/services/quick_pair/public/cpp",
    "//ash/services/quick_pair/public/mojom",
    "//ash/services/recording",
    "//ash/services/recording/public/mojom",
    "//ash/system/machine_learning:user_settings_event_proto",
    "//ash/webui/diagnostics_ui/mojom:mojom",
    "//ash/webui/eche_app_ui/mojom:mojom",
    "//ash/webui/personalization_app/mojom",
    "//ash/webui/personalization_app/proto",
    "//base",
    "//base:i18n",
    "//base/third_party/dynamic_annotations",
    "//build:branding_buildflags",
    "//cc",
    "//cc/debug",
    "//cc/paint:paint",
    "//chromeos/ash/components/assistant:buildflags",
    "//chromeos/ash/components/dbus/hammerd",
    "//chromeos/ash/components/dbus/rgbkbd",
    "//chromeos/ash/components/dbus/rmad",
    "//chromeos/ash/components/dbus/rmad:rmad_proto",
    "//chromeos/ash/components/dbus/services",
    "//chromeos/ash/components/dbus/system_clock",
    "//chromeos/ash/components/dbus/usb",
    "//chromeos/ash/components/human_presence",
    "//chromeos/components/feature_usage",
    "//chromeos/components/quick_answers/public/cpp:prefs",
    "//chromeos/components/sensors:buildflags",
    "//chromeos/components/sensors:sensors",
    "//chromeos/components/sensors/mojom",
    "//chromeos/components/webauthn",
    "//chromeos/crosapi/cpp",
    "//chromeos/dbus",
    "//chromeos/dbus/audio",
    "//chromeos/dbus/constants",
    "//chromeos/dbus/hermes",
    "//chromeos/dbus/human_presence",
    "//chromeos/dbus/human_presence:hps_proto",
    "//chromeos/dbus/init",
    "//chromeos/dbus/power",
    "//chromeos/dbus/power:power_manager_proto",
    "//chromeos/dbus/shill",
    "//chromeos/login/login_state",
    "//chromeos/metrics",
    "//chromeos/network",
    "//chromeos/services/assistant/public/cpp",
    "//chromeos/services/assistant/public/mojom",
    "//chromeos/services/bluetooth_config/public/cpp",
    "//chromeos/services/bluetooth_config/public/mojom",
    "//chromeos/services/libassistant/public/cpp:structs",
    "//chromeos/services/libassistant/public/mojom",
    "//chromeos/services/network_config/public/cpp",
    "//chromeos/services/network_config/public/mojom",
    "//chromeos/strings",
    "//chromeos/system",
    "//chromeos/ui/base",
    "//chromeos/ui/frame",
    "//chromeos/ui/wm",
    "//components/access_code_cast/common",
    "//components/account_id",
    "//components/app_constants",
    "//components/app_restore",
    "//components/country_codes",
    "//components/desks_storage",
    "//components/device_event_log",
    "//components/discardable_memory/service",
    "//components/favicon_base:favicon_base",
    "//components/fullscreen_control",
    "//components/global_media_controls",
    "//components/language/core/browser:browser",
    "//components/live_caption",
    "//components/live_caption:constants",
    "//components/live_caption:utils",
    "//components/media_message_center",
    "//components/onc",
    "//components/password_manager/core/browser:hash_password_manager",
    "//components/pref_registry",
    "//components/prefs",
    "//components/quirks",
    "//components/services/app_service/public/cpp:app_update",
    "//components/session_manager:base",
    "//components/session_manager/core",
    "//components/soda",
    "//components/soda:constants",
    "//components/strings",
    "//components/sync",
    "//components/url_matcher",
    "//components/user_manager",
    "//components/vector_icons",
    "//components/viz/client",
    "//components/viz/host",
    "//dbus",
    "//device/bluetooth",
    "//extensions/common:common_constants",
    "//gpu/command_buffer/client",
    "//gpu/command_buffer/client:gles2_interface",
    "//media",
    "//net",
    "//services/data_decoder/public/cpp",
    "//services/metrics/public/cpp:ukm_builders",
    "//services/network/public/cpp:cpp",
    "//services/preferences/public/cpp",
    "//services/video_capture/public/mojom",
    "//services/viz/public/mojom",
    "//ui/shell_dialogs",

    # TODO(msw): Remove this; ash should not depend on blink/webkit.
    "//third_party/blink/public:blink_headers",
    "//third_party/icu",
    "//third_party/perfetto:libperfetto",
    "//third_party/qcms",
    "//third_party/re2",
    "//ui/accessibility",
    "//ui/accessibility:ax_enums_mojo",
    "//ui/accessibility/mojom",
    "//ui/base",
    "//ui/base:ui_data_pack",
    "//ui/base/ime/ash",
    "//ui/base/ime/init",
    "//ui/chromeos",
    "//ui/chromeos/events",
    "//ui/chromeos/resources",
    "//ui/chromeos/styles:cros_styles_views",
    "//ui/color",
    "//ui/color:mixers",
    "//ui/compositor",
    "//ui/compositor_extra",
    "//ui/display",
    "//ui/display/manager",
    "//ui/display/types",
    "//ui/display/util",
    "//ui/events:dom_keycode_converter",
    "//ui/events:events_base",
    "//ui/events:gesture_detection",
    "//ui/events/devices",
    "//ui/events/ozone",
    "//ui/lottie",
    "//ui/message_center",
    "//ui/native_theme",
    "//ui/ozone",
    "//ui/ozone/public/mojom:gesture_properties_service",
    "//ui/platform_window",
    "//ui/platform_window/stub",
    "//ui/snapshot",
    "//ui/views/window/vector_icons",
    "//ui/wm/public",
    "//url",
  ]

  data_deps = [ ":dbus_service_files" ]

  assert_no_deps = [
    "//ash/components/arc",

    # Ash should not depend upon content at all.
    "//content/public/browser",
    "//content/public/common",

    # //ui/base/idle depends on SessionManagerClient so disallow it.
    "//ui/base/idle",
  ]

  allow_circular_includes_from = [
    "//ash/app_list",
    "//ash/assistant/ui",
    "//ash/in_session_auth",
    "//ash/quick_pair/feature_status_tracker",
    "//ash/quick_pair/keyed_service:keyed_service",
    "//ash/quick_pair/pairing",
    "//ash/quick_pair/repository",
    "//ash/quick_pair/ui",
    "//ash/quick_pair/scanning",
  ]

  if (enable_cros_ambient_mode_backend) {
    sources += [
      "ambient/backdrop/ambient_backend_controller_impl.cc",
      "ambient/backdrop/ambient_backend_controller_impl.h",
    ]

    deps += [ "//chromeos/assistant/internal/ambient" ]
  }

  if (include_ash_ambient_animation_resources) {
    sources +=
        [ "ambient/resources/ambient_animation_static_resources_impl.cc" ]
    deps += [ "//ash/ambient/resources:lottie_resources" ]
  } else {
    sources +=
        [ "ambient/resources/ambient_animation_static_resources_stub.cc" ]
  }
}

action("dbus_service_files") {
  sources = [
    "dbus/org.chromium.DisplayService.conf",
    "dbus/org.chromium.GesturePropertiesService.conf",
    "dbus/org.chromium.LivenessService.conf",
    "dbus/org.chromium.PrivacyScreenService.conf",
    "dbus/org.chromium.UrlHandlerService.conf",
    "dbus/org.chromium.UserAuthenticationService.conf",
  ]
  output_conf_file = "$root_out_dir/dbus/ash_dbus_services.conf"
  outputs = [ output_conf_file ]

  script = "//chromeos/tools/concat_dbus_conf_files.py"
  args = [ rebase_path(output_conf_file, root_build_dir) ]
  args += rebase_path(sources, root_build_dir)
}

static_library("run_ash_unittests") {
  testonly = true
  sources = [ "test/ash_unittests.cc" ]
  deps = [
    ":test_support",
    "//base/test:test_support",
    "//components/viz/test:test_support",
    "//mojo/core/embedder:embedder",
  ]
}

test("ash_unittests") {
  use_xvfb = use_xvfb_in_this_config

  sources = [
    "accelerators/accelerator_commands_unittest.cc",
    "accelerators/accelerator_controller_unittest.cc",
    "accelerators/accelerator_filter_unittest.cc",
    "accelerators/accelerator_history_unittest.cc",
    "accelerators/accelerator_table_unittest.cc",
    "accelerators/accelerator_unittest.cc",
    "accelerators/magnifier_key_scroller_unittest.cc",
    "accelerators/spoken_feedback_toggler_unittest.cc",
    "accelerometer/accelerometer_provider_mojo_unittest.cc",
    "accelerometer/accelerometer_samples_observer_unittest.cc",
    "accessibility/accessibility_controller_unittest.cc",
    "accessibility/autoclick/autoclick_drag_event_rewriter_unittest.cc",
    "accessibility/autoclick/autoclick_unittest.cc",
    "accessibility/chromevox/key_accessibility_enabler_unittest.cc",
    "accessibility/chromevox/mock_touch_exploration_controller_delegate.cc",
    "accessibility/chromevox/mock_touch_exploration_controller_delegate.h",
    "accessibility/chromevox/touch_accessibility_enabler_unittest.cc",
    "accessibility/chromevox/touch_exploration_controller_unittest.cc",
    "accessibility/chromevox/touch_exploration_manager_unittest.cc",
    "accessibility/dictation_nudge_controller_unittest.cc",
    "accessibility/magnifier/docked_magnifier_controller_unittest.cc",
    "accessibility/magnifier/fullscreen_magnifier_controller_unittest.cc",
    "accessibility/magnifier/magnifier_test_utils.cc",
    "accessibility/magnifier/magnifier_test_utils.h",
    "accessibility/magnifier/magnifier_utils_unittest.cc",
    "accessibility/magnifier/partial_magnifier_controller_unittest.cc",
    "accessibility/sticky_keys/sticky_keys_overlay_unittest.cc",
    "accessibility/sticky_keys/sticky_keys_unittest.cc",
    "accessibility/switch_access/point_scan_controller_unittest.cc",
    "accessibility/ui/accessibility_focus_ring_controller_unittest.cc",
    "accessibility/ui/accessibility_focus_ring_group_unittest.cc",
    "accessibility/ui/accessibility_highlight_controller_unittest.cc",
    "accessibility/ui/accessibility_panel_layout_manager_unittest.cc",
    "ambient/ambient_controller_unittest.cc",
    "ambient/ambient_photo_cache_unittest.cc",
    "ambient/ambient_photo_controller_unittest.cc",
    "ambient/autotest_ambient_api_unittest.cc",
    "ambient/model/ambient_animation_attribution_provider_unittest.cc",
    "ambient/model/ambient_animation_photo_config_unittest.cc",
    "ambient/model/ambient_animation_photo_provider_unittest.cc",
    "ambient/model/ambient_backend_model_unittest.cc",
    "ambient/model/ambient_topic_queue_animation_delegate_unittest.cc",
    "ambient/model/ambient_topic_queue_unittest.cc",
    "ambient/ui/ambient_animation_attribution_transformer_unittest.cc",
    "ambient/ui/ambient_animation_background_color_unittest.cc",
    "ambient/ui/ambient_animation_resizer_unittest.cc",
    "ambient/ui/ambient_animation_shield_controller_unittest.cc",
    "ambient/ui/ambient_container_view_unittest.cc",
    "ambient/ui/jitter_calculator_unittest.cc",
    "ambient/ui/media_string_view_unittest.cc",
    "ambient/ui/photo_view_unittest.cc",
    "ambient/util/ambient_util_unittest.cc",
    "app_menu/notification_menu_controller_unittest.cc",
    "app_menu/notification_menu_view_unittest.cc",
    "app_menu/notification_overflow_view_unittest.cc",
    "assistant/assistant_alarm_timer_controller_unittest.cc",
    "assistant/assistant_controller_impl_unittest.cc",
    "assistant/assistant_interaction_controller_impl_unittest.cc",
    "assistant/assistant_notification_controller_impl_unittest.cc",
    "assistant/assistant_screen_context_controller_impl_unittest.cc",
    "assistant/assistant_setup_controller_unittest.cc",
    "assistant/assistant_state_controller_unittest.cc",
    "assistant/assistant_suggestions_controller_impl_unittest.cc",
    "assistant/model/assistant_query_history_unittest.cc",
    "assistant/ui/assistant_web_container_view_unittest.cc",
    "assistant/ui/base/assistant_button_unittest.cc",
    "assistant/ui/colors/assistant_colors_util_unittest.cc",
    "assistant/ui/main_stage/assistant_onboarding_suggestion_view_unittest.cc",
    "assistant/ui/main_stage/assistant_onboarding_view_unittest.cc",
    "assistant/ui/main_stage/assistant_opt_in_view_unittest.cc",
    "assistant/ui/main_stage/assistant_query_view_unittest.cc",
    "assistant/ui/main_stage/assistant_text_element_view_unittest.cc",
    "assistant/ui/main_stage/assistant_zero_state_view_unittest.cc",
    "assistant/ui/main_stage/suggestion_chip_view_unittest.cc",
    "assistant/ui/main_stage/ui_element_container_view_unittest.cc",
    "assistant/util/deep_link_util_unittest.cc",
    "assistant/util/resource_util_unittest.cc",
    "bubble/bubble_utils_unittest.cc",
    "capture_mode/capture_mode_camera_unittests.cc",
    "capture_mode/capture_mode_test_util.cc",
    "capture_mode/capture_mode_test_util.h",
    "capture_mode/capture_mode_unittests.cc",
    "child_accounts/parent_access_controller_impl_unittest.cc",
    "clipboard/clipboard_history_controller_unittest.cc",
    "clipboard/clipboard_history_resource_manager_unittest.cc",
    "clipboard/clipboard_history_unittest.cc",
    "clipboard/clipboard_history_util_unittest.cc",
    "clipboard/clipboard_nudge_controller_unittest.cc",
    "controls/contextual_tooltip_unittest.cc",
    "controls/rounded_scroll_bar_unittest.cc",
    "controls/scroll_view_gradient_helper_unittest.cc",
    "dbus/gesture_properties_service_provider_unittest.cc",
    "dbus/url_handler_service_provider_unittest.cc",
    "detachable_base/detachable_base_handler_unittest.cc",
    "detachable_base/detachable_base_notification_controller_unittest.cc",
    "dip_unittest.cc",
    "display/cros_display_config_unittest.cc",
    "display/cursor_window_controller_unittest.cc",
    "display/display_alignment_controller_unittest.cc",
    "display/display_alignment_indicator_unittest.cc",
    "display/display_color_manager_unittest.cc",
    "display/display_configuration_controller_unittest.cc",
    "display/display_error_observer_unittest.cc",
    "display/display_highlight_controller_unittest.cc",
    "display/display_manager_unittest.cc",
    "display/display_move_window_util_unittest.cc",
    "display/display_prefs_unittest.cc",
    "display/display_util_unittest.cc",
    "display/extended_mouse_warp_controller_unittest.cc",
    "display/mirror_window_controller_unittest.cc",
    "display/mouse_cursor_event_filter_unittest.cc",
    "display/overscan_calibrator_unittest.cc",
    "display/persistent_window_controller_unittest.cc",
    "display/privacy_screen_controller_unittest.cc",
    "display/projecting_observer_unittest.cc",
    "display/resolution_notification_controller_unittest.cc",
    "display/root_window_transformers_unittest.cc",
    "display/screen_ash_unittest.cc",
    "display/screen_orientation_controller_unittest.cc",
    "display/screen_position_controller_unittest.cc",
    "display/touch_calibrator_controller_unittest.cc",
    "display/unified_mouse_warp_controller_unittest.cc",
    "display/window_tree_host_manager_unittest.cc",
    "drag_drop/drag_drop_capture_delegate_unittest.cc",
    "drag_drop/drag_drop_controller_unittest.cc",
    "drag_drop/drag_drop_tracker_unittest.cc",
    "drag_drop/drag_drop_unittest.cc",
    "drag_drop/drag_image_view_unittest.cc",
    "drag_drop/tab_drag_drop_delegate_unittest.cc",
    "events/accessibility_event_rewriter_unittest.cc",
    "events/keyboard_driven_event_rewriter_unittest.cc",
    "events/select_to_speak_event_handler_unittest.cc",
    "extended_desktop_unittest.cc",
    "fast_ink/fast_ink_points_unittest.cc",
    "fast_ink/laser/laser_pointer_controller_unittest.cc",
    "fast_ink/laser/laser_segment_utils_unittest.cc",
    "focus_cycler_unittest.cc",
    "frame/caption_buttons/frame_caption_button_container_view_unittest.cc",
    "frame/caption_buttons/frame_size_button_unittest.cc",
    "frame/default_frame_header_unittest.cc",
    "frame/non_client_frame_view_ash_unittest.cc",
    "highlighter/highlighter_controller_unittest.cc",
    "highlighter/highlighter_gesture_util_unittest.cc",
    "host/ash_window_tree_host_platform_unittest.cc",
    "host/ash_window_tree_host_unified_unittest.cc",
    "ime/ime_controller_impl_unittest.cc",
    "in_session_auth/authentication_dialog_unittest.cc",
    "in_session_auth/mock_in_session_auth_dialog_client.cc",
    "in_session_auth/mock_in_session_auth_dialog_client.h",
    "in_session_auth/webauthn_dialog_controller_impl_unittest.cc",
    "keyboard/keyboard_controller_impl_unittest.cc",
    "keyboard/virtual_keyboard_controller_unittest.cc",
    "keyboard/virtual_keyboard_unittest.cc",
    "lock_screen_action/lock_screen_action_background_controller_impl_unittest.cc",
    "lock_screen_action/lock_screen_note_display_state_handler_unittest.cc",
    "lock_screen_action/lock_screen_note_launcher_unittest.cc",
    "login/login_screen_controller_unittest.cc",
    "login/mock_login_screen_client.cc",
    "login/mock_login_screen_client.h",
    "login/security_token_request_controller_unittest.cc",
    "login/ui/auth_icon_view_unittest.cc",
    "login/ui/fake_fingerprint_auth_factor_model.cc",
    "login/ui/fake_fingerprint_auth_factor_model.h",
    "login/ui/fake_login_detachable_base_model.cc",
    "login/ui/fake_login_detachable_base_model.h",
    "login/ui/fake_smart_lock_auth_factor_model.cc",
    "login/ui/fake_smart_lock_auth_factor_model.h",
    "login/ui/fingerprint_auth_factor_model_unittest.cc",
    "login/ui/lock_contents_view_unittest.cc",
    "login/ui/lock_screen_media_controls_view_unittest.cc",
    "login/ui/lock_screen_sanity_unittest.cc",
    "login/ui/lock_window_unittest.cc",
    "login/ui/login_auth_factors_view_unittest.cc",
    "login/ui/login_auth_user_view_unittest.cc",
    "login/ui/login_base_bubble_view_unittest.cc",
    "login/ui/login_error_bubble_unittest.cc",
    "login/ui/login_expanded_public_account_view_unittest.cc",
    "login/ui/login_keyboard_test_base.cc",
    "login/ui/login_keyboard_test_base.h",
    "login/ui/login_password_view_test.cc",
    "login/ui/login_pin_input_view_unittest.cc",
    "login/ui/login_pin_view_unittest.cc",
    "login/ui/login_public_account_user_view_unittest.cc",
    "login/ui/login_remove_account_dialog_unittest.cc",
    "login/ui/login_test_base.cc",
    "login/ui/login_test_base.h",
    "login/ui/login_test_utils.cc",
    "login/ui/login_test_utils.h",
    "login/ui/login_user_view_unittest.cc",
    "login/ui/note_action_launch_button_unittest.cc",
    "login/ui/pin_request_view_unittest.cc",
    "login/ui/smart_lock_auth_factor_model_unittest.cc",
    "login/ui/views_utils_unittest.cc",
    "media/media_controller_unittest.cc",
    "metrics/demo_session_metrics_recorder_unittest.cc",
    "metrics/desktop_task_switch_metric_recorder_unittest.cc",
    "metrics/feature_discovery_duration_reporter_impl_unittest.cc",
    "metrics/histogram_macros_unittest.cc",
    "metrics/login_metrics_recorder_unittest.cc",
    "metrics/pointer_metrics_recorder_unittest.cc",
    "metrics/stylus_metrics_recorder_unittest.cc",
    "metrics/task_switch_metrics_recorder_unittest.cc",
    "metrics/task_switch_time_tracker_unittest.cc",
    "metrics/user_metrics_recorder_unittest.cc",
    "multi_device_setup/multi_device_notification_presenter_unittest.cc",
    "policy/policy_recommendation_restorer_unittest.cc",
    "power/hid_battery_util_unittest.cc",
    "projector/model/projector_session_impl_unittest.cc",
    "projector/projector_controller_unittest.cc",
    "projector/projector_metadata_model_unittest.cc",
    "projector/projector_ui_controller_unittest.cc",
    "public/mojom/accelerator_keys_mojom_traits_unittest.cc",
    "rgb_keyboard/rgb_keyboard_manager_unittest.cc",
    "root_window_controller_unittest.cc",
    "rotator/screen_rotation_animation_unittest.cc",
    "rotator/screen_rotation_animator_unittest.cc",
    "screen_util_unittest.cc",
    "session/fullscreen_controller_unittest.cc",
    "session/fullscreen_notification_bubble_unittest.cc",
    "session/session_controller_impl_unittest.cc",
    "shelf/assistant_overlay_unittest.cc",
    "shelf/back_button_unittest.cc",
    "shelf/drag_handle_unittest.cc",
    "shelf/drag_window_from_shelf_controller_test_api.cc",
    "shelf/drag_window_from_shelf_controller_test_api.h",
    "shelf/drag_window_from_shelf_controller_unittest.cc",
    "shelf/home_button_unittest.cc",
    "shelf/home_to_overview_nudge_controller_unittest.cc",
    "shelf/hotseat_widget_unittest.cc",
    "shelf/launcher_nudge_controller_unittest.cc",
    "shelf/login_shelf_gesture_controller_unittest.cc",
    "shelf/login_shelf_view_unittest.cc",
    "shelf/scrollable_shelf_view_unittest.cc",
    "shelf/shelf_application_menu_model_unittest.cc",
    "shelf/shelf_background_animator_unittest.cc",
    "shelf/shelf_button_pressed_metric_tracker_unittest.cc",
    "shelf/shelf_config_unittest.cc",
    "shelf/shelf_context_menu_model_unittest.cc",
    "shelf/shelf_controller_unittest.cc",
    "shelf/shelf_drag_handle_unittest.cc",
    "shelf/shelf_layout_manager_unittest.cc",
    "shelf/shelf_locking_manager_unittest.cc",
    "shelf/shelf_tooltip_manager_unittest.cc",
    "shelf/shelf_unittest.cc",
    "shelf/shelf_view_unittest.cc",
    "shelf/shelf_widget_unittest.cc",
    "shelf/shelf_window_watcher_unittest.cc",
    "shelf/swipe_home_to_overview_controller_unittest.cc",
    "shelf/test/hotseat_state_watcher.cc",
    "shelf/test/hotseat_state_watcher.h",
    "shelf/test/shelf_layout_manager_test_base.cc",
    "shelf/test/shelf_layout_manager_test_base.h",
    "shelf/test/widget_animation_smoothness_inspector.cc",
    "shelf/test/widget_animation_smoothness_inspector.h",
    "shell_unittest.cc",
    "style/ash_color_provider_unittests.cc",
    "style/dark_light_mode_nudge_controller_unittests.cc",
    "system/accessibility/accessibility_feature_pod_controller_unittest.cc",
    "system/accessibility/autoclick_menu_bubble_controller_unittest.cc",
    "system/accessibility/dictation_bubble_controller_unittest.cc",
    "system/accessibility/dictation_button_tray_unittest.cc",
    "system/accessibility/floating_accessibility_controller_unittest.cc",
    "system/accessibility/select_to_speak/select_to_speak_menu_bubble_controller_unittest.cc",
    "system/accessibility/select_to_speak/select_to_speak_speed_bubble_controller_unittest.cc",
    "system/accessibility/select_to_speak/select_to_speak_tray_unittest.cc",
    "system/accessibility/switch_access/switch_access_back_button_bubble_controller_unittest.cc",
    "system/accessibility/switch_access/switch_access_menu_bubble_controller_unittest.cc",
    "system/accessibility/tray_accessibility_unittest.cc",
    "system/audio/unified_audio_detailed_view_controller_unittest.cc",
    "system/bluetooth/bluetooth_detailed_view_controller_unittest.cc",
    "system/bluetooth/bluetooth_detailed_view_unittest.cc",
    "system/bluetooth/bluetooth_device_list_controller_unittest.cc",
    "system/bluetooth/bluetooth_device_list_item_battery_view_unittest.cc",
    "system/bluetooth/bluetooth_device_list_item_multiple_battery_view_unittest.cc",
    "system/bluetooth/bluetooth_device_list_item_view_unittest.cc",
    "system/bluetooth/bluetooth_device_status_ui_handler_unittest.cc",
    "system/bluetooth/bluetooth_disabled_detailed_view_unittest.cc",
    "system/bluetooth/bluetooth_feature_pod_controller_unittest.cc",
    "system/bluetooth/bluetooth_notification_controller_unittest.cc",
    "system/bluetooth/bluetooth_power_controller_unittest.cc",
    "system/bluetooth/fake_bluetooth_detailed_view.cc",
    "system/bluetooth/fake_bluetooth_detailed_view.h",
    "system/bluetooth/fake_bluetooth_device_list_controller.cc",
    "system/bluetooth/fake_bluetooth_device_list_controller.h",
    "system/bluetooth/tray_bluetooth_helper_legacy_unittest.cc",
    "system/bluetooth/unified_bluetooth_detailed_view_controller_unittest.cc",
    "system/caps_lock_notification_controller_unittest.cc",
    "system/dark_mode/dark_mode_feature_pod_controller_unittest.cc",
    "system/diagnostics/async_log_unittest.cc",
    "system/diagnostics/diagnostics_log_controller_unittest.cc",
    "system/diagnostics/log_test_helpers_unittest.cc",
    "system/diagnostics/networking_log_unittest.cc",
    "system/diagnostics/routine_log_unittest.cc",
    "system/diagnostics/telemetry_log_unittest.cc",
    "system/eche/eche_icon_loading_indicator_view_unittest.cc",
    "system/eche/eche_tray_unittest.cc",
    "system/firmware_update/firmware_update_notification_controller_unittest.cc",
    "system/geolocation/geolocation_controller_test_util.cc",
    "system/geolocation/geolocation_controller_test_util.h",
    "system/geolocation/geolocation_controller_unittest.cc",
    "system/gesture_education/gesture_education_notification_controller_unittest.cc",
    "system/holding_space/holding_space_animation_registry_unittest.cc",
    "system/holding_space/holding_space_tray_unittest.cc",
    "system/human_presence/human_presence_orientation_controller_unittest.cc",
    "system/human_presence/lock_on_leave_controller_unittest.cc",
    "system/human_presence/snooping_protection_controller_unittest.cc",
    "system/human_presence/snooping_protection_notification_blocker_unittest.cc",
    "system/ime/ime_feature_pod_controller_unittest.cc",
    "system/ime_menu/ime_menu_tray_unittest.cc",
    "system/keyboard_brightness/keyboard_backlight_color_controller_unittest.cc",
    "system/keyboard_brightness/keyboard_backlight_color_nudge_controller_unittest.cc",
    "system/locale/locale_feature_pod_controller_unittest.cc",
    "system/machine_learning/user_settings_event_logger_unittest.cc",
    "system/media/media_notification_provider_impl_unittest.cc",
    "system/media/media_tray_unittest.cc",
    "system/media/unified_media_controls_container_unittest.cc",
    "system/media/unified_media_controls_controller_unittest.cc",
    "system/media/unified_media_controls_detailed_view_controller_unittest.cc",
    "system/message_center/ash_message_popup_collection_unittest.cc",
    "system/message_center/ash_notification_view_unittest.cc",
    "system/message_center/inactive_user_notification_blocker_unittest.cc",
    "system/message_center/message_center_ui_controller_unittest.cc",
    "system/message_center/message_center_utils_unittest.cc",
    "system/message_center/metrics_utils_unittest.cc",
    "system/message_center/notification_grouping_controller_unittest.cc",
    "system/message_center/notification_swipe_control_view_unittest.cc",
    "system/message_center/notifier_settings_view_unittest.cc",
    "system/message_center/session_state_notification_blocker_unittest.cc",
    "system/message_center/unified_message_center_bubble_unittest.cc",
    "system/message_center/unified_message_center_view_unittest.cc",
    "system/message_center/unified_message_list_view_unittest.cc",
    "system/microphone_mute/microphone_mute_notification_controller_unittest.cc",
    "system/nearby_share/nearby_share_feature_pod_controller_unittest.cc",
    "system/network/active_network_icon_unittest.cc",
    "system/network/auto_connect_notifier_unittest.cc",
    "system/network/cellular_setup_notifier_unittest.cc",
    "system/network/managed_sim_lock_notifier_unittest.cc",
    "system/network/network_detailed_network_view_unittest.cc",
    "system/network/network_detailed_view_controller_unittest.cc",
    "system/network/network_detailed_view_unittest.cc",
    "system/network/network_feature_pod_button_unittest.cc",
    "system/network/network_feature_pod_controller_unittest.cc",
    "system/network/network_icon_unittest.cc",
    "system/network/network_info_bubble_unittest.cc",
    "system/network/network_list_mobile_header_view_unittest.cc",
    "system/network/network_list_network_header_view_unittest.cc",
    "system/network/network_list_network_item_view_unittest.cc",
    "system/network/network_list_view_controller_unittest.cc",
    "system/network/network_list_wifi_header_view_unittest.cc",
    "system/network/sms_observer_unittest.cc",
    "system/network/vpn_list_unittest.cc",
    "system/network/wifi_toggle_notification_controller_unittest.cc",
    "system/night_light/night_light_controller_unittest.cc",
    "system/night_light/night_light_feature_pod_controller_unittest.cc",
    "system/overview/overview_button_tray_unittest.cc",
    "system/palette/mock_palette_tool_delegate.cc",
    "system/palette/mock_palette_tool_delegate.h",
    "system/palette/palette_tool_manager_unittest.cc",
    "system/palette/palette_tray_unittest.cc",
    "system/palette/palette_welcome_bubble_unittest.cc",
    "system/palette/tools/create_note_unittest.cc",
    "system/palette/tools/metalayer_unittest.cc",
    "system/pcie_peripheral/pcie_peripheral_notification_controller_unittest.cc",
    "system/phonehub/camera_roll_thumbnail_unittest.cc",
    "system/phonehub/camera_roll_view_unittest.cc",
    "system/phonehub/phone_hub_notification_controller_unittest.cc",
    "system/phonehub/phone_hub_recent_apps_view_unittest.cc",
    "system/phonehub/phone_hub_tray_unittest.cc",
    "system/phonehub/phone_hub_ui_controller_unittest.cc",
    "system/phonehub/phone_status_view_unittest.cc",
    "system/phonehub/quick_actions_view_unittest.cc",
    "system/phonehub/silence_phone_quick_action_controller_unittest.cc",
    "system/phonehub/task_continuation_view_unittest.cc",
    "system/power/adaptive_charging_controller_unittest.cc",
    "system/power/adaptive_charging_notification_controller_unittest.cc",
    "system/power/adaptive_charging_nudge_controller_unittest.cc",
    "system/power/backlights_forced_off_setter_unittest.cc",
    "system/power/peripheral_battery_listener_unittest.cc",
    "system/power/peripheral_battery_notifier_listener_integration_test.cc",
    "system/power/peripheral_battery_notifier_unittest.cc",
    "system/power/power_button_controller_unittest.cc",
    "system/power/power_button_screenshot_controller_unittest.cc",
    "system/power/power_event_observer_unittest.cc",
    "system/power/power_notification_controller_unittest.cc",
    "system/power/power_prefs_unittest.cc",
    "system/power/power_status_unittest.cc",
    "system/power/video_activity_notifier_unittest.cc",
    "system/progress_indicator/progress_indicator_animation_registry_unittest.cc",
    "system/progress_indicator/progress_indicator_unittest.cc",
    "system/rotation/rotation_lock_feature_pod_controller_unittest.cc",
    "system/scheduled_feature/scheduled_feature_unittest.cc",
    "system/screen_layout_observer_unittest.cc",
    "system/screen_security/screen_security_notification_controller_unittest.cc",
    "system/session/logout_button_tray_unittest.cc",
    "system/session/logout_confirmation_controller_unittest.cc",
    "system/session/session_limit_notification_controller_unittest.cc",
    "system/status_area_widget_unittest.cc",
    "system/time/calendar_event_fetch_unittest.cc",
    "system/time/calendar_event_list_view_unittest.cc",
    "system/time/calendar_model_unittest.cc",
    "system/time/calendar_month_view_unittest.cc",
    "system/time/calendar_unittest_utils.cc",
    "system/time/calendar_unittest_utils.h",
    "system/time/calendar_utils_unittest.cc",
    "system/time/calendar_view_controller_unittest.cc",
    "system/time/calendar_view_unittest.cc",
    "system/time/date_helper_unittest.cc",
    "system/time/time_of_day_unittest.cc",
    "system/time/time_tray_item_view_unittest.cc",
    "system/time/time_view_unittest.cc",
    "system/toast/toast_manager_unittest.cc",
    "system/tracing_notification_controller_unittest.cc",
    "system/tray/size_range_layout_unittest.cc",
    "system/tray/status_area_overflow_button_tray_unittest.cc",
    "system/tray/tray_background_view_unittest.cc",
    "system/tray/tray_event_filter_unittest.cc",
    "system/tray/tri_view_unittest.cc",
    "system/unified/camera_mic_tray_item_view_unittest.cc",
    "system/unified/date_tray_unittest.cc",
    "system/unified/feature_pods_container_view_unittest.cc",
    "system/unified/notification_counter_view_unittest.cc",
    "system/unified/notification_icons_controller_unittest.cc",
    "system/unified/page_indicator_view_unittest.cc",
    "system/unified/quiet_mode_feature_pod_controller_unittest.cc",
    "system/unified/top_shortcuts_view_unittest.cc",
    "system/unified/unified_system_info_view_unittest.cc",
    "system/unified/unified_system_tray_controller_unittest.cc",
    "system/unified/unified_system_tray_unittest.cc",
    "system/unified/user_chooser_detailed_view_controller_unittest.cc",
    "system/update/update_notification_controller_unittest.cc",
    "system/usb_peripheral/usb_peripheral_notification_controller_unittest.cc",
    "system/virtual_keyboard/virtual_keyboard_tray_unittest.cc",
    "test/ash_test_helper_unittest.cc",
    "tooltips/tooltip_controller_unittest.cc",
    "touch/touch_devices_controller_unittest.cc",
    "touch/touch_observer_hud_unittest.cc",
    "tray_action/test_tray_action_client.cc",
    "tray_action/test_tray_action_client.h",
    "tray_action/tray_action_unittest.cc",
    "utility/cropping_util_unittest.cc",
    "utility/haptics_util_unittest.cc",
    "utility/layer_copy_animator_unittest.cc",
    "utility/layer_util_unittest.cc",
    "utility/lottie_util_unittest.cc",
    "utility/occlusion_tracker_pauser_unittest.cc",
    "utility/rounded_window_targeter_unittest.cc",
    "wallpaper/online_wallpaper_variant_info_fetcher_unittest.cc",
    "wallpaper/wallpaper_controller_unittest.cc",
    "wallpaper/wallpaper_pref_manager_unittest.cc",
    "wallpaper/wallpaper_utils/wallpaper_color_calculator_unittest.cc",
    "wallpaper/wallpaper_utils/wallpaper_resizer_unittest.cc",
    "wallpaper/wallpaper_window_state_manager_unittest.cc",
    "window_user_data_unittest.cc",
    "wm/always_on_top_controller_unittest.cc",
    "wm/ash_focus_rules_unittest.cc",
    "wm/client_controlled_state_unittest.cc",
    "wm/collision_detection/collision_detection_utils_unittest.cc",
    "wm/container_finder_unittest.cc",
    "wm/cursor_manager_chromeos_unittest.cc",
    "wm/default_window_resizer_unittest.cc",
    "wm/desks/autotest_desks_api_unittests.cc",
    "wm/desks/desk_animation_impl_unittest.cc",
    "wm/desks/desks_unittests.cc",
    "wm/desks/root_window_desk_switch_animator_unittest.cc",
    "wm/desks/templates/saved_desk_unittest.cc",
    "wm/drag_window_resizer_unittest.cc",
    "wm/float/float_controller_unittest.cc",
    "wm/fullscreen_window_finder_unittest.cc",
    "wm/gestures/back_gesture/back_gesture_affordance_unittest.cc",
    "wm/gestures/back_gesture/back_gesture_contextual_nudge_controller_impl_unittest.cc",
    "wm/gestures/back_gesture/back_gesture_event_handler_unittest.cc",
    "wm/gestures/wm_gesture_handler_unittest.cc",
    "wm/immersive_fullscreen_controller_unittest.cc",
    "wm/lock_action_handler_layout_manager_unittest.cc",
    "wm/lock_layout_manager_unittest.cc",
    "wm/lock_state_controller_unittest.cc",
    "wm/mru_window_tracker_unittest.cc",
    "wm/multitask_menu_nudge_controller_unittest.cc",
    "wm/native_cursor_manager_ash_unittest.cc",
    "wm/overlay_event_filter_unittest.cc",
    "wm/overlay_layout_manager_unittest.cc",
    "wm/overview/cleanup_animation_observer_unittest.cc",
    "wm/overview/delayed_animation_observer_impl_unittest.cc",
    "wm/overview/overview_controller_unittest.cc",
    "wm/overview/overview_grid_unittest.cc",
    "wm/overview/overview_highlight_controller_unittest.cc",
    "wm/overview/overview_session_unittest.cc",
    "wm/overview/overview_test_base.cc",
    "wm/overview/overview_test_base.h",
    "wm/overview/overview_wallpaper_controller_unittest.cc",
    "wm/overview/overview_window_drag_controller_unittest.cc",
    "wm/overview/overview_window_drag_histogram_unittests.cc",
    "wm/overview/scoped_overview_transform_window_unittest.cc",
    "wm/pip/pip_positioner_unittest.cc",
    "wm/pip/pip_test_utils.cc",
    "wm/pip/pip_test_utils.h",
    "wm/pip/pip_unittest.cc",
    "wm/pip/pip_window_resizer_unittest.cc",
    "wm/resize_shadow_and_cursor_unittest.cc",
    "wm/root_window_layout_manager_unittest.cc",
    "wm/screen_dimmer_unittest.cc",
    "wm/screen_pinning_controller_unittest.cc",
    "wm/session_state_animator_impl_unittest.cc",
    "wm/splitview/split_view_controller_unittest.cc",
    "wm/splitview/split_view_drag_indicators_unittest.cc",
    "wm/splitview/split_view_highlight_view_unittest.cc",
    "wm/stacking_controller_unittest.cc",
    "wm/system_gesture_event_filter_unittest.cc",
    "wm/system_modal_container_layout_manager_unittest.cc",
    "wm/tablet_mode/accelerometer_test_data_literals.cc",
    "wm/tablet_mode/tablet_mode_controller_unittest.cc",
    "wm/tablet_mode/tablet_mode_toggle_fullscreen_event_handler_unittest.cc",
    "wm/tablet_mode/tablet_mode_window_manager_unittest.cc",
    "wm/toplevel_window_event_handler_unittest.cc",
    "wm/video_detector_unittest.cc",
    "wm/window_animations_unittest.cc",
    "wm/window_cycle/window_cycle_controller_unittest.cc",
    "wm/window_dimmer_unittest.cc",
    "wm/window_finder_unittest.cc",
    "wm/window_manager_unittest.cc",
    "wm/window_mirror_view_unittest.cc",
    "wm/window_modality_controller_unittest.cc",
    "wm/window_positioner_unittest.cc",
    "wm/window_positioning_utils_unittest.cc",
    "wm/window_preview_view_unittest.cc",
    "wm/window_restore/window_restore_controller_unittest.cc",
    "wm/window_state_unittest.cc",
    "wm/window_transient_descendant_iterator_unittest.cc",
    "wm/window_util_unittest.cc",
    "wm/work_area_insets_unittest.cc",
    "wm/workspace/magnetism_matcher_unittest.cc",
    "wm/workspace/multi_window_resize_controller_unittest.cc",
    "wm/workspace/workspace_event_handler_unittest.cc",
    "wm/workspace/workspace_layout_manager_unittest.cc",
    "wm/workspace/workspace_window_resizer_unittest.cc",
    "wm/workspace_controller_unittest.cc",
  ]
  configs += [ "//build/config:precompiled_headers" ]

  deps = [
    ":ash",
    ":run_ash_unittests",
    ":test_support",
    "//ash/app_list",
    "//ash/app_list:test_support",
    "//ash/app_list:unit_tests",
    "//ash/app_menu",
    "//ash/assistant/model",
    "//ash/assistant/ui",
    "//ash/assistant/ui:constants",
    "//ash/assistant/ui/colors:assistant_colors_util",
    "//ash/assistant/ui/colors:assistant_colors_views",
    "//ash/assistant/ui/test_support",
    "//ash/assistant/util",
    "//ash/components/arc:notification_test_support",
    "//ash/components/audio",
    "//ash/components/cryptohome",
    "//ash/components/geolocation",
    "//ash/components/login/auth",
    "//ash/components/login/auth:test_support",
    "//ash/components/phonehub:test_support",
    "//ash/components/settings",
    "//ash/constants",
    "//ash/dbus:privacy_screen_proto",
    "//ash/in_session_auth",
    "//ash/keyboard/ui",
    "//ash/keyboard/ui:test_support",
    "//ash/public/cpp",
    "//ash/public/cpp:test_support",
    "//ash/public/cpp:unit_tests",
    "//ash/public/cpp/ambient/proto",
    "//ash/public/cpp/external_arc:test_support",
    "//ash/public/cpp/external_arc:unit_tests",
    "//ash/public/cpp/holding_space:test_support",
    "//ash/public/mojom",
    "//ash/quick_pair:unit_tests",
    "//ash/resources/vector_icons",
    "//ash/services:unit_tests",
    "//ash/services/multidevice_setup/public/cpp:test_support",
    "//ash/services/multidevice_setup/public/mojom",
    "//ash/services/nearby/public/cpp",
    "//ash/services/recording:test_support",
    "//ash/shortcut_viewer:unit_tests",
    "//ash/strings",
    "//ash/system/machine_learning:user_settings_event_proto",
    "//ash/webui/diagnostics_ui/mojom",
    "//ash/webui/personalization_app/proto",
    "//base",
    "//base/test:test_support",
    "//build:branding_buildflags",
    "//cc:test_support",
    "//chromeos:test_support",
    "//chromeos/ash/components/assistant:buildflags",
    "//chromeos/ash/components/dbus/hammerd",
    "//chromeos/ash/components/dbus/rgbkbd",
    "//chromeos/ash/components/dbus/services:test_support",
    "//chromeos/ash/components/human_presence:human_presence",
    "//chromeos/ash/services/assistant:test_support",
    "//chromeos/components/feature_usage",
    "//chromeos/components/sensors:sensors",
    "//chromeos/components/sensors:test_support",
    "//chromeos/components/sensors/mojom",
    "//chromeos/constants",
    "//chromeos/crosapi/cpp",
    "//chromeos/dbus:test_support",
    "//chromeos/dbus/audio",
    "//chromeos/dbus/hermes",
    "//chromeos/dbus/human_presence",
    "//chromeos/dbus/human_presence:hps_proto",
    "//chromeos/dbus/power",
    "//chromeos/dbus/power:power_manager_proto",
    "//chromeos/dbus/userdataauth",
    "//chromeos/network:test_support",
    "//chromeos/services/assistant/public/cpp",
    "//chromeos/services/assistant/public/mojom",
    "//chromeos/services/bluetooth_config:test_support",
    "//chromeos/services/network_config/public/cpp",
    "//chromeos/services/network_config/public/mojom",
    "//chromeos/strings:strings_grit",
    "//chromeos/system",
    "//chromeos/ui/base",
    "//chromeos/ui/frame",
    "//chromeos/ui/frame:test_support",
    "//chromeos/ui/vector_icons",
    "//chromeos/ui/wm",
    "//components/account_id",
    "//components/app_constants",
    "//components/app_restore",
    "//components/desks_storage",
    "//components/desks_storage:test_support",
    "//components/global_media_controls",
    "//components/language/core/browser:browser",
    "//components/live_caption:constants",
    "//components/media_message_center",
    "//components/onc",
    "//components/password_manager/core/browser:hash_password_manager",
    "//components/prefs:test_support",
    "//components/quirks",
    "//components/services/app_service/public/cpp:app_update",
    "//components/services/app_service/public/mojom",
    "//components/session_manager/core",
    "//components/soda",
    "//components/sync_preferences:test_support",
    "//components/ukm:test_support",
    "//components/user_manager",
    "//components/user_manager:test_support",
    "//components/viz/test:test_support",
    "//device/bluetooth",
    "//device/bluetooth:mocks",
    "//extensions/common:common_constants",
    "//google_apis/calendar",
    "//mojo/core/embedder",
    "//mojo/public/cpp/bindings",
    "//mojo/public/cpp/test_support:test_utils",
    "//net:net",
    "//services/data_decoder/public/cpp:test_support",
    "//services/device/public/cpp/bluetooth",
    "//services/media_session/public/cpp",
    "//services/media_session/public/cpp/test:test_support",
    "//services/media_session/public/mojom",
    "//services/metrics/public/cpp:ukm_builders",
    "//services/network:test_support",
    "//services/viz/privileged/mojom/compositing",
    "//skia",
    "//testing/gmock",
    "//testing/gtest",
    "//third_party/icu",
    "//ui/accessibility",
    "//ui/accessibility:test_support",
    "//ui/aura",
    "//ui/aura:test_support",
    "//ui/base",
    "//ui/base:test_support",
    "//ui/base/cursor",
    "//ui/base/cursor/mojom:cursor_type",
    "//ui/base/dragdrop:types",
    "//ui/base/dragdrop/mojom",
    "//ui/base/ime",
    "//ui/base/ime/ash",
    "//ui/chromeos",
    "//ui/chromeos/events",
    "//ui/chromeos/styles:cros_styles_views",
    "//ui/compositor",
    "//ui/compositor:test_support",
    "//ui/compositor_extra:compositor_extra",
    "//ui/display",
    "//ui/display:test_support",
    "//ui/display/fake",
    "//ui/display/manager",
    "//ui/display/types",
    "//ui/events",
    "//ui/events:gesture_detection",
    "//ui/events:test_support",
    "//ui/events/devices",
    "//ui/events/devices:test_support",
    "//ui/events/ozone:ozone",
    "//ui/gfx",
    "//ui/gfx:test_support",
    "//ui/gfx/geometry",
    "//ui/gl:test_support",
    "//ui/message_center",
    "//ui/message_center:test_support",
    "//ui/message_center/public/cpp",
    "//ui/ozone",
    "//ui/ozone/testhelpers:mock_gesture_properties_service",
    "//ui/platform_window/stub",
    "//ui/resources",
    "//ui/snapshot",
    "//ui/strings",
    "//ui/views",
    "//ui/views:test_support",
    "//ui/views/window/vector_icons",
    "//ui/wm",
    "//ui/wm:test_support",
    "//ui/wm/public",
    "//url",
  ]

  data_deps = [ "//ash/resources:ash_test_resources_100_percent" ]

  data = [
    # See DisplayColorManagerTest.
    "display/test_data/",
    "//cc/test/data/",
  ]

  # Disallow depending directly on content.
  assert_no_deps = [
    "//content/public/browser",
    "//content/public/common",
  ]

  if (include_ash_ambient_animation_resources) {
    sources += [
      "ambient/resources/ambient_animation_static_resources_impl_unittest.cc",
    ]
  }
}

test("ash_pixeltests") {
  sources = [
    "test/ash_pixel_diff_test_base.cc",
    "test/ash_pixel_diff_test_base.h",
    "test/demo_ash_pixel_diff_test.cc",
  ]

  deps = [
    ":ash",
    ":run_ash_unittests",
    ":test_support",
    "//ash/public/cpp",
    "//base/test:test_support",
    "//chromeos/dbus/power:power",
    "//chromeos/dbus/power:power_manager_proto",
    "//components/viz/test:test_support",
    "//mojo/core/embedder:embedder",
    "//ui/views:view_pixel_diff_test_support",
  ]
}

# TODO(oshima): Remove or migrate to new ash_ui_perftests
test("ash_perftests") {
  sources = [
    "perftests/ash_background_filter_blur_perftest.cc",
    "test/ash_perftests.cc",
  ]

  deps = [
    ":test_support",
    "//ash/public/cpp",
    "//base/test:test_support",
    "//cc/base",
    "//mojo/core/embedder",
    "//testing/gtest",
    "//testing/perf",
    "//ui/aura",
    "//ui/base",
    "//ui/compositor:test_support",
    "//ui/gl:test_support",
  ]
}

# NOTE: Ash uses DEPS files to restrict access to its internals, rather than a
# GN "public" section. See README.md for notes on dependencies.
static_library("test_support") {
  testonly = true
  sources = [
    "accessibility/accessibility_controller_test_api_impl.cc",
    "accessibility/accessibility_controller_test_api_impl.h",
    "accessibility/test_accessibility_controller_client.cc",
    "accessibility/test_accessibility_controller_client.h",
    "ambient/test/ambient_ash_test_base.cc",
    "ambient/test/ambient_ash_test_base.h",
    "ambient/test/ambient_ash_test_helper.cc",
    "ambient/test/ambient_ash_test_helper.h",
    "ambient/test/ambient_test_util.cc",
    "ambient/test/ambient_test_util.h",
    "ambient/test/ambient_topic_queue_test_delegate.cc",
    "ambient/test/ambient_topic_queue_test_delegate.h",
    "ambient/test/fake_ambient_animation_static_resources.cc",
    "ambient/test/fake_ambient_animation_static_resources.h",
    "ambient/test/mock_ambient_view_observer.cc",
    "ambient/test/mock_ambient_view_observer.h",
    "ambient/test/test_ambient_client.cc",
    "ambient/test/test_ambient_client.h",
    "app_list/app_list_test_api.cc",
    "app_list/test/app_list_test_helper.cc",
    "app_list/test/app_list_test_helper.h",
    "app_list/test/test_focus_change_listener.cc",
    "app_list/test/test_focus_change_listener.h",
    "app_list/test_app_list_client.cc",
    "app_list/test_app_list_client.h",
    "app_list/views/assistant/assistant_test_api_impl.cc",
    "app_list/views/assistant/assistant_test_api_impl.h",
    "app_menu/notification_menu_view_test_api.cc",
    "app_menu/notification_menu_view_test_api.h",
    "assistant/test/assistant_ash_test_base.cc",
    "assistant/test/assistant_ash_test_base.h",
    "assistant/test/mocked_assistant_interaction.cc",
    "assistant/test/mocked_assistant_interaction.h",
    "assistant/test/test_assistant_service.cc",
    "assistant/test/test_assistant_service.h",
    "assistant/test/test_assistant_setup.cc",
    "assistant/test/test_assistant_setup.h",
    "capture_mode/capture_mode_session_test_api.cc",
    "capture_mode/capture_mode_session_test_api.h",
    "capture_mode/capture_mode_settings_test_api.cc",
    "capture_mode/capture_mode_settings_test_api.h",
    "capture_mode/fake_camera_device.cc",
    "capture_mode/fake_camera_device.h",
    "capture_mode/fake_folder_selection_dialog_factory.cc",
    "capture_mode/fake_folder_selection_dialog_factory.h",
    "capture_mode/fake_video_source_provider.cc",
    "capture_mode/fake_video_source_provider.h",
    "capture_mode/test_capture_mode_delegate.cc",
    "capture_mode/test_capture_mode_delegate.h",
    "clipboard/test_support/clipboard_history_item_builder.cc",
    "clipboard/test_support/clipboard_history_item_builder.h",
    "display/display_configuration_controller_test_api.cc",
    "display/display_configuration_controller_test_api.h",
    "display/mirror_window_test_api.cc",
    "display/mirror_window_test_api.h",
    "display/screen_orientation_controller_test_api.cc",
    "display/screen_orientation_controller_test_api.h",
    "drag_drop/drag_drop_controller_test_api.h",
    "fast_ink/laser/laser_pointer_controller_test_api.cc",
    "fast_ink/laser/laser_pointer_controller_test_api.h",
    "frame_throttler/mock_frame_throttling_observer.cc",
    "frame_throttler/mock_frame_throttling_observer.h",
    "highlighter/highlighter_controller_test_api.cc",
    "highlighter/highlighter_controller_test_api.h",
    "ime/test_ime_controller_client.cc",
    "ime/test_ime_controller_client.h",
    "keyboard/test_keyboard_ui.cc",
    "keyboard/test_keyboard_ui.h",
    "lock_screen_action/lock_screen_action_background_controller_impl_test_api.h",
    "lock_screen_action/lock_screen_action_background_view_test_api.h",
    "lock_screen_action/test_lock_screen_action_background_controller.cc",
    "lock_screen_action/test_lock_screen_action_background_controller.h",
    "login/login_screen_test_api.cc",
    "metrics/task_switch_time_tracker_test_api.cc",
    "metrics/task_switch_time_tracker_test_api.h",
    "metrics/user_metrics_recorder_test_api.cc",
    "metrics/user_metrics_recorder_test_api.h",
    "projector/test/mock_projector_client.cc",
    "projector/test/mock_projector_client.h",
    "projector/test/mock_projector_metadata_controller.cc",
    "projector/test/mock_projector_metadata_controller.h",
    "projector/test/mock_projector_ui_controller.cc",
    "projector/test/mock_projector_ui_controller.h",
    "system/diagnostics/log_test_helpers.cc",
    "system/diagnostics/log_test_helpers.h",
    "system/geolocation/test_geolocation_url_loader_factory.cc",
    "system/geolocation/test_geolocation_url_loader_factory.h",
    "system/tray/system_nudge_label.cc",
    "system/tray/system_nudge_label.h",
    "test/layer_animation_stopped_waiter.cc",
    "test/layer_animation_stopped_waiter.h",
    "utility/haptics_tracking_test_input_controller.cc",
    "utility/haptics_tracking_test_input_controller.h",

    # These headers declare functions that are implemented inside of //ash, so
    # they cannot live in //ash/public/cpp/BUILD.gn.
    "public/cpp/holding_space/holding_space_test_api.h",
    "public/cpp/system_tray_test_api.h",
    "public/cpp/test/accessibility_controller_test_api.h",
    "public/cpp/test/app_list_test_api.h",
    "public/cpp/test/assistant_test_api.h",
    "public/cpp/test/shell_test_api.h",
    "rotator/screen_rotation_animator_test_api.cc",
    "rotator/screen_rotation_animator_test_api.h",
    "session/test_pref_service_provider.cc",
    "session/test_pref_service_provider.h",
    "session/test_session_controller_client.cc",
    "session/test_session_controller_client.h",
    "shelf/shelf_button_pressed_metric_tracker_test_api.cc",
    "shelf/shelf_button_pressed_metric_tracker_test_api.h",
    "shelf/shelf_focus_cycler.cc",
    "shelf/shelf_focus_cycler.h",
    "shelf/shelf_test_util.cc",
    "shelf/shelf_test_util.h",
    "shelf/shelf_view_test_api.cc",
    "shelf/shelf_view_test_api.h",
    "shell_test_api.cc",
    "system/holding_space/holding_space_test_api.cc",
    "system/message_center/test_notifier_settings_controller.cc",
    "system/message_center/test_notifier_settings_controller.h",
    "system/palette/palette_tray_test_api.cc",
    "system/palette/palette_tray_test_api.h",
    "system/power/power_button_controller_test_api.cc",
    "system/power/power_button_controller_test_api.h",
    "system/power/power_button_screenshot_controller_test_api.cc",
    "system/power/power_button_screenshot_controller_test_api.h",
    "system/power/power_button_test_base.cc",
    "system/power/power_button_test_base.h",
    "system/power/power_event_observer_test_api.cc",
    "system/power/power_event_observer_test_api.h",
    "system/status_area_widget_test_helper.cc",
    "system/status_area_widget_test_helper.h",
    "system/unified/system_tray_test_api.cc",
    "test/ash_test_base.cc",
    "test/ash_test_base.h",
    "test/ash_test_helper.cc",
    "test/ash_test_helper.h",
    "test/ash_test_suite.cc",
    "test/ash_test_suite.h",
    "test/ash_test_util.cc",
    "test/ash_test_util.h",
    "test/ash_test_views_delegate.cc",
    "test/ash_test_views_delegate.h",
    "test/fake_android_intent_helper.cc",
    "test/fake_android_intent_helper.h",
    "test/layer_animation_verifier.cc",
    "test/layer_animation_verifier.h",
    "test/test_ash_web_view.cc",
    "test/test_ash_web_view.h",
    "test/test_ash_web_view_factory.cc",
    "test/test_ash_web_view_factory.h",
    "test/test_widget_builder.cc",
    "test/test_widget_builder.h",
    "test/test_window_builder.cc",
    "test/test_window_builder.h",
    "test/toplevel_window.cc",
    "test/toplevel_window.h",
    "test/ui_controls_factory_ash.cc",
    "test/ui_controls_factory_ash.h",
    "test/view_drawn_waiter.cc",
    "test/view_drawn_waiter.h",
    "test_media_client.cc",
    "test_media_client.h",
    "test_shell_delegate.cc",
    "test_shell_delegate.h",
    "wallpaper/test_wallpaper_controller_client.cc",
    "wallpaper/test_wallpaper_controller_client.h",
    "wallpaper/wallpaper_controller_test_api.cc",
    "wallpaper/wallpaper_controller_test_api.h",
    "wm/cursor_manager_test_api.cc",
    "wm/cursor_manager_test_api.h",
    "wm/desks/desks_test_api.cc",
    "wm/desks/desks_test_api.h",
    "wm/desks/desks_test_util.cc",
    "wm/desks/desks_test_util.h",
    "wm/desks/root_window_desk_switch_animator_test_api.cc",
    "wm/desks/root_window_desk_switch_animator_test_api.h",
    "wm/desks/templates/saved_desk_test_util.cc",
    "wm/desks/templates/saved_desk_test_util.h",
    "wm/gestures/back_gesture/test_back_gesture_contextual_nudge_delegate.cc",
    "wm/gestures/back_gesture/test_back_gesture_contextual_nudge_delegate.h",
    "wm/lock_state_controller_test_api.cc",
    "wm/lock_state_controller_test_api.h",
    "wm/overview/overview_test_util.cc",
    "wm/overview/overview_test_util.h",
    "wm/tablet_mode/tablet_mode_controller_test_api.cc",
    "wm/tablet_mode/tablet_mode_controller_test_api.h",
    "wm/test_activation_delegate.cc",
    "wm/test_activation_delegate.h",
    "wm/test_child_modal_parent.cc",
    "wm/test_child_modal_parent.h",
    "wm/test_overlay_delegate.cc",
    "wm/test_overlay_delegate.h",
    "wm/test_session_state_animator.cc",
    "wm/test_session_state_animator.h",
    "wm/window_preview_view_test_api.cc",
    "wm/window_preview_view_test_api.h",
    "wm/workspace/workspace_event_handler_test_helper.cc",
    "wm/workspace/workspace_event_handler_test_helper.h",
    "wm/workspace_controller_test_api.cc",
    "wm/workspace_controller_test_api.h",
  ]
  configs += [ "//build/config:precompiled_headers" ]

  public_deps = [
    "//ash",
    "//chromeos/services/assistant/public/mojom",
    "//chromeos/services/network_config/public/cpp:test_support",
    "//dbus",
    "//testing/gtest",
    "//third_party/blink/public:blink_headers",
    "//ui/display:display_manager_test_api",
    "//ui/lottie",
  ]
  deps = [
    "//ash",
    "//ash/app_list",
    "//ash/app_list:test_support",
    "//ash/app_menu",
    "//ash/assistant/model:model",
    "//ash/assistant/ui:constants",
    "//ash/assistant/ui:ui",
    "//ash/components/attestation:test_support",
    "//ash/components/audio",
    "//ash/components/disks:test_support",
    "//ash/components/geolocation",
    "//ash/constants",
    "//ash/keyboard/ui",
    "//ash/keyboard/ui:test_support",
    "//ash/public/cpp",
    "//ash/public/cpp:test_support",
    "//ash/public/cpp/ambient/proto",
    "//ash/services/recording:test_support",
    "//ash/services/recording/public/mojom",
    "//ash/webui/personalization_app/mojom",
    "//ash/webui/personalization_app/proto",
    "//base",
    "//base:i18n",
    "//base/test:test_support",
    "//cc:test_support",
    "//chromeos/ash/components/dbus/rgbkbd",
    "//chromeos/ash/components/dbus/system_clock",
    "//chromeos/ash/services/assistant:test_support",
    "//chromeos/dbus:test_support",
    "//chromeos/dbus/audio",
    "//chromeos/dbus/power",
    "//chromeos/dbus/power:power_manager_proto",
    "//chromeos/login/login_state",
    "//chromeos/network:test_support",
    "//chromeos/services/assistant/public/cpp",
    "//chromeos/services/bluetooth_config:test_support",
    "//chromeos/system",
    "//chromeos/ui/frame",
    "//components/account_id",
    "//components/exo/wayland:weston_test_stub",
    "//components/prefs:test_support",
    "//components/user_manager:user_manager",
    "//components/viz/test:test_support",
    "//device/bluetooth",
    "//services/device/public/cpp:test_support",
    "//services/device/public/mojom",
    "//services/network:test_support",
    "//services/video_capture/public/mojom",
    "//skia",
    "//testing/gtest",
    "//ui/accessibility",
    "//ui/accessibility/mojom",
    "//ui/aura",
    "//ui/aura:test_support",
    "//ui/base:test_support",
    "//ui/compositor:test_support",
    "//ui/display",
    "//ui/display/types",
    "//ui/events:events_base",
    "//ui/events:test_support",
    "//ui/events/devices",
    "//ui/events/devices:test_support",
    "//ui/gfx:test_support",
    "//ui/gl",
    "//ui/gl:test_support",
    "//ui/message_center",
    "//ui/message_center/public/cpp",
    "//ui/ozone",
    "//ui/platform_window/common",
    "//ui/shell_dialogs",
    "//ui/snapshot:snapshot",
    "//ui/views",
    "//ui/views:test_support",
    "//ui/wm",
    "//ui/wm/public",
  ]

  data_deps = [
    "//ash/resources:ash_test_resources_100_percent",
    "//ash/resources:ash_test_resources_200_percent",
    "//ash/resources:ash_test_resources_unscaled",
    "//ash/strings:ash_test_strings",
  ]
}