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

import("//build/config/chromebox_for_meetings/buildflags.gni")
import("//build/config/chromeos/ui_mode.gni")
import("//build/config/ozone.gni")
import("//build/config/sanitizers/sanitizers.gni")
import("//chromeos/ash/components/hibernate/buildflags.gni")
import("//extensions/buildflags/buildflags.gni")
import("//media/media_options.gni")
import("//printing/buildflags/buildflags.gni")
import("//rlz/buildflags/buildflags.gni")
import("//testing/libfuzzer/fuzzer_test.gni")
import("//third_party/libprotobuf-mutator/fuzzable_proto_library.gni")
import("//third_party/protobuf/proto_library.gni")

assert(enable_extensions, "Ash Chrome has to be built with extensions")
assert(is_chromeos_ash)
assert(use_ozone)

source_set("ash") {
  configs += [ "//build/config/compiler:wexit_time_destructors" ]

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

  sources = [
    "accessibility/accessibility_event_rewriter_delegate_impl.cc",
    "accessibility/accessibility_event_rewriter_delegate_impl.h",
    "accessibility/accessibility_extension_loader.cc",
    "accessibility/accessibility_extension_loader.h",
    "accessibility/accessibility_manager.cc",
    "accessibility/accessibility_manager.h",
    "accessibility/accessibility_panel.cc",
    "accessibility/accessibility_panel.h",
    "accessibility/chromevox_panel.cc",
    "accessibility/chromevox_panel.h",
    "accessibility/dictation.cc",
    "accessibility/dictation.h",
    "accessibility/event_handler_common.cc",
    "accessibility/event_handler_common.h",
    "accessibility/magnification_manager.cc",
    "accessibility/magnification_manager.h",
    "accessibility/magnifier_type.h",
    "accessibility/pumpkin_installer.cc",
    "accessibility/pumpkin_installer.h",
    "accessibility/select_to_speak_event_handler_delegate_impl.cc",
    "accessibility/select_to_speak_event_handler_delegate_impl.h",
    "accessibility/service/accessibility_service_client.cc",
    "accessibility/service/accessibility_service_client.h",
    "accessibility/service/automation_client_impl.cc",
    "accessibility/service/automation_client_impl.h",
    "account_manager/account_apps_availability.cc",
    "account_manager/account_apps_availability.h",
    "account_manager/account_apps_availability_factory.cc",
    "account_manager/account_apps_availability_factory.h",
    "account_manager/account_manager_edu_coexistence_controller.cc",
    "account_manager/account_manager_edu_coexistence_controller.h",
    "account_manager/account_manager_facade_factory_ash.cc",
    "account_manager/account_manager_policy_controller.cc",
    "account_manager/account_manager_policy_controller.h",
    "account_manager/account_manager_policy_controller_factory.cc",
    "account_manager/account_manager_policy_controller_factory.h",
    "account_manager/account_manager_ui_impl.cc",
    "account_manager/account_manager_ui_impl.h",
    "account_manager/account_manager_util.cc",
    "account_manager/account_manager_util.h",
    "account_manager/child_account_type_changed_user_data.cc",
    "account_manager/child_account_type_changed_user_data.h",
    "android_sms/android_sms_app_manager.cc",
    "android_sms/android_sms_app_manager.h",
    "android_sms/android_sms_app_manager_impl.cc",
    "android_sms/android_sms_app_manager_impl.h",
    "android_sms/android_sms_app_setup_controller.h",
    "android_sms/android_sms_app_setup_controller_impl.cc",
    "android_sms/android_sms_app_setup_controller_impl.h",
    "android_sms/android_sms_pairing_state_tracker_impl.cc",
    "android_sms/android_sms_pairing_state_tracker_impl.h",
    "android_sms/android_sms_service.cc",
    "android_sms/android_sms_service.h",
    "android_sms/android_sms_service_factory.cc",
    "android_sms/android_sms_service_factory.h",
    "android_sms/android_sms_switches.cc",
    "android_sms/android_sms_switches.h",
    "android_sms/android_sms_urls.cc",
    "android_sms/android_sms_urls.h",
    "android_sms/connection_establisher.h",
    "android_sms/connection_manager.cc",
    "android_sms/connection_manager.h",
    "android_sms/fcm_connection_establisher.cc",
    "android_sms/fcm_connection_establisher.h",
    "app_mode/app_launch_utils.cc",
    "app_mode/app_launch_utils.h",
    "app_mode/app_session_ash.cc",
    "app_mode/app_session_ash.h",
    "app_mode/arc/arc_kiosk_app_data.cc",
    "app_mode/arc/arc_kiosk_app_data.h",
    "app_mode/arc/arc_kiosk_app_launcher.cc",
    "app_mode/arc/arc_kiosk_app_launcher.h",
    "app_mode/arc/arc_kiosk_app_manager.cc",
    "app_mode/arc/arc_kiosk_app_manager.h",
    "app_mode/arc/arc_kiosk_app_service.cc",
    "app_mode/arc/arc_kiosk_app_service.h",
    "app_mode/arc/arc_kiosk_app_service_factory.cc",
    "app_mode/arc/arc_kiosk_app_service_factory.h",
    "app_mode/certificate_manager_dialog.cc",
    "app_mode/certificate_manager_dialog.h",
    "app_mode/kiosk_app_data.cc",
    "app_mode/kiosk_app_data.h",
    "app_mode/kiosk_app_data_base.cc",
    "app_mode/kiosk_app_data_base.h",
    "app_mode/kiosk_app_data_delegate.h",
    "app_mode/kiosk_app_icon_loader.cc",
    "app_mode/kiosk_app_icon_loader.h",
    "app_mode/kiosk_app_launch_error.cc",
    "app_mode/kiosk_app_launch_error.h",
    "app_mode/kiosk_app_launcher.cc",
    "app_mode/kiosk_app_launcher.h",
    "app_mode/kiosk_app_manager.cc",
    "app_mode/kiosk_app_manager.h",
    "app_mode/kiosk_app_manager_base.cc",
    "app_mode/kiosk_app_manager_base.h",
    "app_mode/kiosk_app_manager_observer.h",
    "app_mode/kiosk_app_types.cc",
    "app_mode/kiosk_app_types.h",
    "app_mode/kiosk_app_update_install_gate.cc",
    "app_mode/kiosk_app_update_install_gate.h",
    "app_mode/kiosk_app_update_service.cc",
    "app_mode/kiosk_app_update_service.h",
    "app_mode/kiosk_cryptohome_remover.cc",
    "app_mode/kiosk_cryptohome_remover.h",
    "app_mode/kiosk_external_update_validator.cc",
    "app_mode/kiosk_external_update_validator.h",
    "app_mode/kiosk_external_updater.cc",
    "app_mode/kiosk_external_updater.h",
    "app_mode/kiosk_mode_idle_app_name_notification.cc",
    "app_mode/kiosk_mode_idle_app_name_notification.h",
    "app_mode/kiosk_profile_loader.cc",
    "app_mode/kiosk_profile_loader.h",
    "app_mode/metrics/low_disk_metrics_service.cc",
    "app_mode/metrics/low_disk_metrics_service.h",
    "app_mode/metrics/network_connectivity_metrics_service.cc",
    "app_mode/metrics/network_connectivity_metrics_service.h",
    "app_mode/pref_names.cc",
    "app_mode/pref_names.h",
    "app_mode/startup_app_launcher.cc",
    "app_mode/startup_app_launcher.h",
    "app_mode/web_app/web_kiosk_app_data.cc",
    "app_mode/web_app/web_kiosk_app_data.h",
    "app_mode/web_app/web_kiosk_app_launcher.cc",
    "app_mode/web_app/web_kiosk_app_launcher.h",
    "app_mode/web_app/web_kiosk_app_manager.cc",
    "app_mode/web_app/web_kiosk_app_manager.h",
    "app_mode/web_app/web_kiosk_app_service_launcher.cc",
    "app_mode/web_app/web_kiosk_app_service_launcher.h",
    "app_mode/web_app/web_kiosk_app_update_observer.cc",
    "app_mode/web_app/web_kiosk_app_update_observer.h",
    "app_mode/web_app/web_kiosk_browser_controller_ash.cc",
    "app_mode/web_app/web_kiosk_browser_controller_ash.h",
    "app_restore/app_launch_handler.cc",
    "app_restore/app_launch_handler.h",
    "app_restore/app_restore_arc_task_handler.cc",
    "app_restore/app_restore_arc_task_handler.h",
    "app_restore/app_restore_arc_task_handler_factory.cc",
    "app_restore/app_restore_arc_task_handler_factory.h",
    "app_restore/arc_app_launch_handler.cc",
    "app_restore/arc_app_launch_handler.h",
    "app_restore/arc_ghost_window_delegate.cc",
    "app_restore/arc_ghost_window_delegate.h",
    "app_restore/arc_ghost_window_handler.cc",
    "app_restore/arc_ghost_window_handler.h",
    "app_restore/arc_ghost_window_shell_surface.cc",
    "app_restore/arc_ghost_window_shell_surface.h",
    "app_restore/arc_ghost_window_view.cc",
    "app_restore/arc_ghost_window_view.h",
    "app_restore/arc_window_utils.cc",
    "app_restore/arc_window_utils.h",
    "app_restore/full_restore_app_launch_handler.cc",
    "app_restore/full_restore_app_launch_handler.h",
    "app_restore/full_restore_data_handler.cc",
    "app_restore/full_restore_data_handler.h",
    "app_restore/full_restore_prefs.cc",
    "app_restore/full_restore_prefs.h",
    "app_restore/full_restore_service.cc",
    "app_restore/full_restore_service.h",
    "app_restore/full_restore_service_factory.cc",
    "app_restore/full_restore_service_factory.h",
    "app_restore/new_user_restore_pref_handler.cc",
    "app_restore/new_user_restore_pref_handler.h",
    "apps/apk_web_app_installer.cc",
    "apps/apk_web_app_installer.h",
    "apps/apk_web_app_service.cc",
    "apps/apk_web_app_service.h",
    "apps/apk_web_app_service_factory.cc",
    "apps/apk_web_app_service_factory.h",
    "arc/accessibility/accessibility_helper_instance_remote_proxy.cc",
    "arc/accessibility/accessibility_helper_instance_remote_proxy.h",
    "arc/accessibility/accessibility_info_data_wrapper.cc",
    "arc/accessibility/accessibility_info_data_wrapper.h",
    "arc/accessibility/accessibility_node_info_data_wrapper.cc",
    "arc/accessibility/accessibility_node_info_data_wrapper.h",
    "arc/accessibility/accessibility_window_info_data_wrapper.cc",
    "arc/accessibility/accessibility_window_info_data_wrapper.h",
    "arc/accessibility/arc_accessibility_helper_bridge.cc",
    "arc/accessibility/arc_accessibility_helper_bridge.h",
    "arc/accessibility/arc_accessibility_tree_tracker.cc",
    "arc/accessibility/arc_accessibility_tree_tracker.h",
    "arc/accessibility/arc_accessibility_util.cc",
    "arc/accessibility/arc_accessibility_util.h",
    "arc/accessibility/auto_complete_handler.cc",
    "arc/accessibility/auto_complete_handler.h",
    "arc/accessibility/ax_tree_source_arc.cc",
    "arc/accessibility/ax_tree_source_arc.h",
    "arc/accessibility/drawer_layout_handler.cc",
    "arc/accessibility/drawer_layout_handler.h",
    "arc/accessibility/geometry_util.cc",
    "arc/accessibility/geometry_util.h",
    "arc/adbd/arc_adbd_monitor_bridge.cc",
    "arc/adbd/arc_adbd_monitor_bridge.h",
    "arc/app_shortcuts/arc_app_shortcuts_menu_builder.cc",
    "arc/app_shortcuts/arc_app_shortcuts_menu_builder.h",
    "arc/app_shortcuts/arc_app_shortcuts_request.cc",
    "arc/app_shortcuts/arc_app_shortcuts_request.h",
    "arc/arc_demo_mode_delegate_impl.cc",
    "arc/arc_demo_mode_delegate_impl.h",
    "arc/arc_migration_constants.h",
    "arc/arc_migration_guide_notification.cc",
    "arc/arc_migration_guide_notification.h",
    "arc/arc_mount_provider.cc",
    "arc/arc_mount_provider.h",
    "arc/arc_optin_uma.cc",
    "arc/arc_optin_uma.h",
    "arc/arc_support_host.cc",
    "arc/arc_support_host.h",
    "arc/arc_ui_availability_reporter.cc",
    "arc/arc_ui_availability_reporter.h",
    "arc/arc_util.cc",
    "arc/arc_util.h",
    "arc/auth/arc_active_directory_enrollment_token_fetcher.cc",
    "arc/auth/arc_active_directory_enrollment_token_fetcher.h",
    "arc/auth/arc_auth_code_fetcher.h",
    "arc/auth/arc_auth_context.cc",
    "arc/auth/arc_auth_context.h",
    "arc/auth/arc_auth_service.cc",
    "arc/auth/arc_auth_service.h",
    "arc/auth/arc_background_auth_code_fetcher.cc",
    "arc/auth/arc_background_auth_code_fetcher.h",
    "arc/auth/arc_fetcher_base.cc",
    "arc/auth/arc_fetcher_base.h",
    "arc/auth/arc_robot_auth_code_fetcher.cc",
    "arc/auth/arc_robot_auth_code_fetcher.h",
    "arc/bluetooth/arc_bluetooth_bridge.cc",
    "arc/bluetooth/arc_bluetooth_bridge.h",
    "arc/bluetooth/arc_bluetooth_task_queue.cc",
    "arc/bluetooth/arc_bluetooth_task_queue.h",
    "arc/boot_phase_monitor/arc_boot_phase_monitor_bridge.cc",
    "arc/boot_phase_monitor/arc_boot_phase_monitor_bridge.h",
    "arc/enterprise/arc_data_snapshotd_delegate.cc",
    "arc/enterprise/arc_data_snapshotd_delegate.h",
    "arc/enterprise/arc_enterprise_reporting_service.cc",
    "arc/enterprise/arc_enterprise_reporting_service.h",
    "arc/enterprise/arc_force_installed_apps_tracker.cc",
    "arc/enterprise/arc_force_installed_apps_tracker.h",
    "arc/enterprise/arc_snapshot_reboot_notification_impl.cc",
    "arc/enterprise/arc_snapshot_reboot_notification_impl.h",
    "arc/enterprise/cert_store/arc_cert_installer.cc",
    "arc/enterprise/cert_store/arc_cert_installer.h",
    "arc/enterprise/cert_store/arc_cert_installer_utils.cc",
    "arc/enterprise/cert_store/arc_cert_installer_utils.h",
    "arc/enterprise/cert_store/cert_store_service.cc",
    "arc/enterprise/cert_store/cert_store_service.h",
    "arc/extensions/arc_support_message_host.cc",
    "arc/extensions/arc_support_message_host.h",
    "arc/file_system_watcher/arc_file_system_watcher_service.cc",
    "arc/file_system_watcher/arc_file_system_watcher_service.h",
    "arc/file_system_watcher/arc_file_system_watcher_util.cc",
    "arc/file_system_watcher/arc_file_system_watcher_util.h",
    "arc/file_system_watcher/file_system_scanner.cc",
    "arc/file_system_watcher/file_system_scanner.h",
    "arc/fileapi/arc_content_file_system_async_file_util.cc",
    "arc/fileapi/arc_content_file_system_async_file_util.h",
    "arc/fileapi/arc_content_file_system_backend_delegate.cc",
    "arc/fileapi/arc_content_file_system_backend_delegate.h",
    "arc/fileapi/arc_content_file_system_file_stream_reader.cc",
    "arc/fileapi/arc_content_file_system_file_stream_reader.h",
    "arc/fileapi/arc_content_file_system_file_stream_writer.cc",
    "arc/fileapi/arc_content_file_system_file_stream_writer.h",
    "arc/fileapi/arc_content_file_system_size_util.cc",
    "arc/fileapi/arc_content_file_system_size_util.h",
    "arc/fileapi/arc_content_file_system_url_util.cc",
    "arc/fileapi/arc_content_file_system_url_util.h",
    "arc/fileapi/arc_documents_provider_async_file_util.cc",
    "arc/fileapi/arc_documents_provider_async_file_util.h",
    "arc/fileapi/arc_documents_provider_backend_delegate.cc",
    "arc/fileapi/arc_documents_provider_backend_delegate.h",
    "arc/fileapi/arc_documents_provider_file_stream_reader.cc",
    "arc/fileapi/arc_documents_provider_file_stream_reader.h",
    "arc/fileapi/arc_documents_provider_file_stream_writer.cc",
    "arc/fileapi/arc_documents_provider_file_stream_writer.h",
    "arc/fileapi/arc_documents_provider_file_system_url_util.cc",
    "arc/fileapi/arc_documents_provider_file_system_url_util.h",
    "arc/fileapi/arc_documents_provider_root.cc",
    "arc/fileapi/arc_documents_provider_root.h",
    "arc/fileapi/arc_documents_provider_root_map.cc",
    "arc/fileapi/arc_documents_provider_root_map.h",
    "arc/fileapi/arc_documents_provider_root_map_factory.cc",
    "arc/fileapi/arc_documents_provider_root_map_factory.h",
    "arc/fileapi/arc_documents_provider_util.cc",
    "arc/fileapi/arc_documents_provider_util.h",
    "arc/fileapi/arc_documents_provider_watcher_manager.cc",
    "arc/fileapi/arc_documents_provider_watcher_manager.h",
    "arc/fileapi/arc_file_system_bridge.cc",
    "arc/fileapi/arc_file_system_bridge.h",
    "arc/fileapi/arc_file_system_mounter.cc",
    "arc/fileapi/arc_file_system_mounter.h",
    "arc/fileapi/arc_file_system_operation_runner.cc",
    "arc/fileapi/arc_file_system_operation_runner.h",
    "arc/fileapi/arc_file_system_operation_runner_util.cc",
    "arc/fileapi/arc_file_system_operation_runner_util.h",
    "arc/fileapi/arc_media_view_util.cc",
    "arc/fileapi/arc_media_view_util.h",
    "arc/fileapi/arc_select_files_handler.cc",
    "arc/fileapi/arc_select_files_handler.h",
    "arc/fileapi/arc_select_files_util.cc",
    "arc/fileapi/arc_select_files_util.h",
    "arc/fileapi/chrome_content_provider_url_util.cc",
    "arc/fileapi/chrome_content_provider_url_util.h",
    "arc/fileapi/file_stream_forwarder.cc",
    "arc/fileapi/file_stream_forwarder.h",
    "arc/input_method_manager/arc_input_method_manager_bridge.h",
    "arc/input_method_manager/arc_input_method_manager_bridge_impl.cc",
    "arc/input_method_manager/arc_input_method_manager_bridge_impl.h",
    "arc/input_method_manager/arc_input_method_manager_service.cc",
    "arc/input_method_manager/arc_input_method_manager_service.h",
    "arc/input_method_manager/arc_input_method_state.cc",
    "arc/input_method_manager/arc_input_method_state.h",
    "arc/input_method_manager/input_connection_impl.cc",
    "arc/input_method_manager/input_connection_impl.h",
    "arc/input_method_manager/input_method_prefs.cc",
    "arc/input_method_manager/input_method_prefs.h",
    "arc/input_overlay/actions/action.cc",
    "arc/input_overlay/actions/action.h",
    "arc/input_overlay/actions/action_move.cc",
    "arc/input_overlay/actions/action_move.h",
    "arc/input_overlay/actions/action_tap.cc",
    "arc/input_overlay/actions/action_tap.h",
    "arc/input_overlay/actions/input_element.cc",
    "arc/input_overlay/actions/input_element.h",
    "arc/input_overlay/actions/position.cc",
    "arc/input_overlay/actions/position.h",
    "arc/input_overlay/arc_input_overlay_manager.cc",
    "arc/input_overlay/arc_input_overlay_manager.h",
    "arc/input_overlay/arc_input_overlay_ukm.cc",
    "arc/input_overlay/arc_input_overlay_ukm.h",
    "arc/input_overlay/arc_input_overlay_uma.cc",
    "arc/input_overlay/arc_input_overlay_uma.h",
    "arc/input_overlay/constants.h",
    "arc/input_overlay/db/data_controller.cc",
    "arc/input_overlay/db/data_controller.h",
    "arc/input_overlay/display_overlay_controller.cc",
    "arc/input_overlay/display_overlay_controller.h",
    "arc/input_overlay/input_overlay_resources_util.cc",
    "arc/input_overlay/input_overlay_resources_util.h",
    "arc/input_overlay/key_event_source_rewriter.cc",
    "arc/input_overlay/key_event_source_rewriter.h",
    "arc/input_overlay/touch_id_manager.cc",
    "arc/input_overlay/touch_id_manager.h",
    "arc/input_overlay/touch_injector.cc",
    "arc/input_overlay/touch_injector.h",
    "arc/input_overlay/ui/action_circle.cc",
    "arc/input_overlay/ui/action_circle.h",
    "arc/input_overlay/ui/action_edit_button.cc",
    "arc/input_overlay/ui/action_edit_button.h",
    "arc/input_overlay/ui/action_edit_menu.cc",
    "arc/input_overlay/ui/action_edit_menu.h",
    "arc/input_overlay/ui/action_label.cc",
    "arc/input_overlay/ui/action_label.h",
    "arc/input_overlay/ui/action_view.cc",
    "arc/input_overlay/ui/action_view.h",
    "arc/input_overlay/ui/edit_finish_view.cc",
    "arc/input_overlay/ui/edit_finish_view.h",
    "arc/input_overlay/ui/educational_view.cc",
    "arc/input_overlay/ui/educational_view.h",
    "arc/input_overlay/ui/input_mapping_view.cc",
    "arc/input_overlay/ui/input_mapping_view.h",
    "arc/input_overlay/ui/input_menu_view.cc",
    "arc/input_overlay/ui/input_menu_view.h",
    "arc/input_overlay/ui/message_view.cc",
    "arc/input_overlay/ui/message_view.h",
    "arc/instance_throttle/arc_active_window_throttle_observer.cc",
    "arc/instance_throttle/arc_active_window_throttle_observer.h",
    "arc/instance_throttle/arc_app_launch_throttle_observer.cc",
    "arc/instance_throttle/arc_app_launch_throttle_observer.h",
    "arc/instance_throttle/arc_boot_phase_throttle_observer.cc",
    "arc/instance_throttle/arc_boot_phase_throttle_observer.h",
    "arc/instance_throttle/arc_instance_throttle.cc",
    "arc/instance_throttle/arc_instance_throttle.h",
    "arc/instance_throttle/arc_kiosk_mode_throttle_observer.cc",
    "arc/instance_throttle/arc_kiosk_mode_throttle_observer.h",
    "arc/instance_throttle/arc_pip_window_throttle_observer.cc",
    "arc/instance_throttle/arc_pip_window_throttle_observer.h",
    "arc/instance_throttle/arc_power_throttle_observer.cc",
    "arc/instance_throttle/arc_power_throttle_observer.h",
    "arc/instance_throttle/arc_provisioning_throttle_observer.cc",
    "arc/instance_throttle/arc_provisioning_throttle_observer.h",
    "arc/instance_throttle/arc_switch_throttle_observer.cc",
    "arc/instance_throttle/arc_switch_throttle_observer.h",
    "arc/intent_helper/arc_intent_helper_mojo_ash.cc",
    "arc/intent_helper/arc_intent_helper_mojo_ash.h",
    "arc/intent_helper/arc_settings_service.cc",
    "arc/intent_helper/arc_settings_service.h",
    "arc/intent_helper/custom_tab_session_impl.cc",
    "arc/intent_helper/custom_tab_session_impl.h",
    "arc/intent_helper/factory_reset_delegate.cc",
    "arc/intent_helper/factory_reset_delegate.h",
    "arc/keymaster/arc_keymaster_bridge.cc",
    "arc/keymaster/arc_keymaster_bridge.h",
    "arc/keymaster/cert_store_bridge.cc",
    "arc/keymaster/cert_store_bridge.h",
    "arc/kiosk/arc_kiosk_bridge.cc",
    "arc/kiosk/arc_kiosk_bridge.h",
    "arc/metrics/arc_metrics_service_proxy.cc",
    "arc/metrics/arc_metrics_service_proxy.h",
    "arc/nearby_share/arc_nearby_share_bridge.cc",
    "arc/nearby_share/arc_nearby_share_bridge.h",
    "arc/nearby_share/arc_nearby_share_uma.cc",
    "arc/nearby_share/arc_nearby_share_uma.h",
    "arc/nearby_share/nearby_share_session_impl.cc",
    "arc/nearby_share/nearby_share_session_impl.h",
    "arc/nearby_share/share_info_file_handler.cc",
    "arc/nearby_share/share_info_file_handler.h",
    "arc/nearby_share/share_info_file_stream_adapter.cc",
    "arc/nearby_share/share_info_file_stream_adapter.h",
    "arc/nearby_share/ui/base_dialog_delegate_view.cc",
    "arc/nearby_share/ui/base_dialog_delegate_view.h",
    "arc/nearby_share/ui/error_dialog_view.cc",
    "arc/nearby_share/ui/error_dialog_view.h",
    "arc/nearby_share/ui/low_disk_space_dialog_view.cc",
    "arc/nearby_share/ui/low_disk_space_dialog_view.h",
    "arc/nearby_share/ui/nearby_share_overlay_view.cc",
    "arc/nearby_share/ui/nearby_share_overlay_view.h",
    "arc/nearby_share/ui/progress_bar_dialog_view.cc",
    "arc/nearby_share/ui/progress_bar_dialog_view.h",
    "arc/net/cert_manager_impl.cc",
    "arc/net/cert_manager_impl.h",
    "arc/notification/arc_boot_error_notification.cc",
    "arc/notification/arc_boot_error_notification.h",
    "arc/notification/arc_management_transition_notification.cc",
    "arc/notification/arc_management_transition_notification.h",
    "arc/notification/arc_provision_notification_service.cc",
    "arc/notification/arc_provision_notification_service.h",
    "arc/oemcrypto/arc_oemcrypto_bridge.cc",
    "arc/oemcrypto/arc_oemcrypto_bridge.h",
    "arc/optin/arc_optin_preference_handler.cc",
    "arc/optin/arc_optin_preference_handler.h",
    "arc/optin/arc_optin_preference_handler_observer.h",
    "arc/optin/arc_terms_of_service_default_negotiator.cc",
    "arc/optin/arc_terms_of_service_default_negotiator.h",
    "arc/optin/arc_terms_of_service_negotiator.cc",
    "arc/optin/arc_terms_of_service_negotiator.h",
    "arc/optin/arc_terms_of_service_oobe_negotiator.cc",
    "arc/optin/arc_terms_of_service_oobe_negotiator.h",
    "arc/pip/arc_picture_in_picture_window_controller_impl.cc",
    "arc/pip/arc_picture_in_picture_window_controller_impl.h",
    "arc/pip/arc_pip_bridge.cc",
    "arc/pip/arc_pip_bridge.h",
    "arc/policy/arc_android_management_checker.cc",
    "arc/policy/arc_android_management_checker.h",
    "arc/policy/arc_policy_bridge.cc",
    "arc/policy/arc_policy_bridge.h",
    "arc/policy/arc_policy_handler.cc",
    "arc/policy/arc_policy_handler.h",
    "arc/policy/arc_policy_util.cc",
    "arc/policy/arc_policy_util.h",
    "arc/policy/managed_configuration_variables.cc",
    "arc/policy/managed_configuration_variables.h",
    "arc/print_spooler/arc_print_spooler_bridge.cc",
    "arc/print_spooler/arc_print_spooler_bridge.h",
    "arc/print_spooler/arc_print_spooler_util.cc",
    "arc/print_spooler/arc_print_spooler_util.h",
    "arc/print_spooler/print_session_impl.cc",
    "arc/print_spooler/print_session_impl.h",
    "arc/privacy_items/arc_privacy_items_bridge.cc",
    "arc/privacy_items/arc_privacy_items_bridge.h",
    "arc/process/arc_process.cc",
    "arc/process/arc_process.h",
    "arc/process/arc_process_service.cc",
    "arc/process/arc_process_service.h",
    "arc/screen_capture/arc_screen_capture_bridge.cc",
    "arc/screen_capture/arc_screen_capture_bridge.h",
    "arc/screen_capture/arc_screen_capture_session.cc",
    "arc/screen_capture/arc_screen_capture_session.h",
    "arc/session/adb_sideloading_availability_delegate_impl.cc",
    "arc/session/adb_sideloading_availability_delegate_impl.h",
    "arc/session/arc_app_id_provider_impl.cc",
    "arc/session/arc_app_id_provider_impl.h",
    "arc/session/arc_demo_mode_preference_handler.cc",
    "arc/session/arc_demo_mode_preference_handler.h",
    "arc/session/arc_disk_space_monitor.cc",
    "arc/session/arc_disk_space_monitor.h",
    "arc/session/arc_play_store_enabled_preference_handler.cc",
    "arc/session/arc_play_store_enabled_preference_handler.h",
    "arc/session/arc_provisioning_result.cc",
    "arc/session/arc_provisioning_result.h",
    "arc/session/arc_requirement_checker.cc",
    "arc/session/arc_requirement_checker.h",
    "arc/session/arc_service_launcher.cc",
    "arc/session/arc_service_launcher.h",
    "arc/session/arc_session_manager.cc",
    "arc/session/arc_session_manager.h",
    "arc/session/arc_session_manager_observer.h",
    "arc/sharesheet/arc_sharesheet_bridge.cc",
    "arc/sharesheet/arc_sharesheet_bridge.h",
    "arc/survey/arc_survey_service.cc",
    "arc/survey/arc_survey_service.h",
    "arc/tracing/arc_app_performance_tracing.cc",
    "arc/tracing/arc_app_performance_tracing.h",
    "arc/tracing/arc_app_performance_tracing_custom_session.cc",
    "arc/tracing/arc_app_performance_tracing_custom_session.h",
    "arc/tracing/arc_app_performance_tracing_session.cc",
    "arc/tracing/arc_app_performance_tracing_session.h",
    "arc/tracing/arc_app_performance_tracing_uma_session.cc",
    "arc/tracing/arc_app_performance_tracing_uma_session.h",
    "arc/tracing/arc_cpu_event.cc",
    "arc/tracing/arc_cpu_event.h",
    "arc/tracing/arc_graphics_jank_detector.cc",
    "arc/tracing/arc_graphics_jank_detector.h",
    "arc/tracing/arc_system_model.cc",
    "arc/tracing/arc_system_model.h",
    "arc/tracing/arc_system_stat_collector.cc",
    "arc/tracing/arc_system_stat_collector.h",
    "arc/tracing/arc_tracing_bridge.cc",
    "arc/tracing/arc_tracing_bridge.h",
    "arc/tracing/arc_tracing_event.cc",
    "arc/tracing/arc_tracing_event.h",
    "arc/tracing/arc_tracing_event_matcher.cc",
    "arc/tracing/arc_tracing_event_matcher.h",
    "arc/tracing/arc_tracing_graphics_model.cc",
    "arc/tracing/arc_tracing_graphics_model.h",
    "arc/tracing/arc_tracing_model.cc",
    "arc/tracing/arc_tracing_model.h",
    "arc/tracing/arc_value_event.cc",
    "arc/tracing/arc_value_event.h",
    "arc/tracing/arc_value_event_trimmer.cc",
    "arc/tracing/arc_value_event_trimmer.h",
    "arc/tts/arc_tts_service.cc",
    "arc/tts/arc_tts_service.h",
    "arc/usb/arc_usb_host_bridge_delegate.cc",
    "arc/usb/arc_usb_host_bridge_delegate.h",
    "arc/user_session/arc_user_session_service.cc",
    "arc/user_session/arc_user_session_service.h",
    "arc/video/gpu_arc_video_service_host.cc",
    "arc/video/gpu_arc_video_service_host.h",
    "arc/wallpaper/arc_wallpaper_service.cc",
    "arc/wallpaper/arc_wallpaper_service.h",
    "arc/window_predictor/arc_predictor_app_launch_handler.cc",
    "arc/window_predictor/arc_predictor_app_launch_handler.h",
    "arc/window_predictor/window_predictor.cc",
    "arc/window_predictor/window_predictor.h",
    "arc/window_predictor/window_predictor_utils.cc",
    "arc/window_predictor/window_predictor_utils.h",
    "assistant/assistant_util.cc",
    "assistant/assistant_util.h",
    "attestation/attestation_ca_client.cc",
    "attestation/attestation_ca_client.h",
    "attestation/attestation_policy_observer.cc",
    "attestation/attestation_policy_observer.h",
    "attestation/certificate_util.cc",
    "attestation/certificate_util.h",
    "attestation/enrollment_certificate_uploader.h",
    "attestation/enrollment_certificate_uploader_impl.cc",
    "attestation/enrollment_certificate_uploader_impl.h",
    "attestation/enrollment_id_upload_manager.cc",
    "attestation/enrollment_id_upload_manager.h",
    "attestation/machine_certificate_uploader.h",
    "attestation/machine_certificate_uploader_impl.cc",
    "attestation/machine_certificate_uploader_impl.h",
    "attestation/platform_verification_flow.cc",
    "attestation/platform_verification_flow.h",
    "attestation/soft_bind_attestation_flow.cc",
    "attestation/soft_bind_attestation_flow.h",
    "attestation/tpm_challenge_key.cc",
    "attestation/tpm_challenge_key.h",
    "attestation/tpm_challenge_key_result.cc",
    "attestation/tpm_challenge_key_result.h",
    "attestation/tpm_challenge_key_subtle.cc",
    "attestation/tpm_challenge_key_subtle.h",
    "attestation/tpm_challenge_key_with_timeout.cc",
    "attestation/tpm_challenge_key_with_timeout.h",
    "audio/audio_survey_handler.cc",
    "audio/audio_survey_handler.h",
    "authpolicy/authpolicy_credentials_manager.cc",
    "authpolicy/authpolicy_credentials_manager.h",
    "authpolicy/authpolicy_helper.cc",
    "authpolicy/authpolicy_helper.h",
    "authpolicy/data_pipe_utils.cc",
    "authpolicy/data_pipe_utils.h",
    "authpolicy/kerberos_files_handler.cc",
    "authpolicy/kerberos_files_handler.h",
    "base/file_flusher.cc",
    "base/file_flusher.h",
    "base/locale_util.cc",
    "base/locale_util.h",
    "bluetooth/debug_logs_manager.cc",
    "bluetooth/debug_logs_manager.h",
    "bluetooth/debug_logs_manager_factory.cc",
    "bluetooth/debug_logs_manager_factory.h",
    "boot_times_recorder.cc",
    "boot_times_recorder.h",
    "borealis/borealis_app_launcher.cc",
    "borealis/borealis_app_launcher.h",
    "borealis/borealis_app_launcher_impl.cc",
    "borealis/borealis_app_launcher_impl.h",
    "borealis/borealis_app_uninstaller.cc",
    "borealis/borealis_app_uninstaller.h",
    "borealis/borealis_context.cc",
    "borealis/borealis_context.h",
    "borealis/borealis_context_manager.h",
    "borealis/borealis_context_manager_impl.cc",
    "borealis/borealis_context_manager_impl.h",
    "borealis/borealis_credits.cc",
    "borealis/borealis_credits.h",
    "borealis/borealis_disk_manager.h",
    "borealis/borealis_disk_manager_dispatcher.cc",
    "borealis/borealis_disk_manager_dispatcher.h",
    "borealis/borealis_disk_manager_impl.cc",
    "borealis/borealis_disk_manager_impl.h",
    "borealis/borealis_engagement_metrics.cc",
    "borealis/borealis_engagement_metrics.h",
    "borealis/borealis_features.cc",
    "borealis/borealis_features.h",
    "borealis/borealis_features_util.cc",
    "borealis/borealis_features_util.h",
    "borealis/borealis_installer.cc",
    "borealis/borealis_installer.h",
    "borealis/borealis_installer_impl.cc",
    "borealis/borealis_installer_impl.h",
    "borealis/borealis_launch_options.cc",
    "borealis/borealis_launch_options.h",
    "borealis/borealis_launch_watcher.cc",
    "borealis/borealis_launch_watcher.h",
    "borealis/borealis_metrics.cc",
    "borealis/borealis_metrics.h",
    "borealis/borealis_power_controller.cc",
    "borealis/borealis_power_controller.h",
    "borealis/borealis_prefs.cc",
    "borealis/borealis_prefs.h",
    "borealis/borealis_security_delegate.cc",
    "borealis/borealis_security_delegate.h",
    "borealis/borealis_service.cc",
    "borealis/borealis_service.h",
    "borealis/borealis_service_factory.cc",
    "borealis/borealis_service_factory.h",
    "borealis/borealis_service_impl.cc",
    "borealis/borealis_service_impl.h",
    "borealis/borealis_shutdown_monitor.cc",
    "borealis/borealis_shutdown_monitor.h",
    "borealis/borealis_switches.cc",
    "borealis/borealis_switches.h",
    "borealis/borealis_task.cc",
    "borealis/borealis_task.h",
    "borealis/borealis_util.cc",
    "borealis/borealis_util.h",
    "borealis/borealis_window_manager.cc",
    "borealis/borealis_window_manager.h",
    "borealis/infra/described.h",
    "borealis/infra/expected.h",
    "borealis/infra/state_manager.h",
    "borealis/infra/transition.h",
    "browser_accelerator_configuration.cc",
    "browser_accelerator_configuration.h",
    "browser_context_keyed_service_factories.cc",
    "browser_context_keyed_service_factories.h",
    "bruschetta/bruschetta_features.cc",
    "bruschetta/bruschetta_features.h",
    "bruschetta/bruschetta_launcher.cc",
    "bruschetta/bruschetta_launcher.h",
    "bruschetta/bruschetta_mount_provider.cc",
    "bruschetta/bruschetta_mount_provider.h",
    "bruschetta/bruschetta_service.cc",
    "bruschetta/bruschetta_service.h",
    "bruschetta/bruschetta_service_factory.cc",
    "bruschetta/bruschetta_service_factory.h",
    "bruschetta/bruschetta_terminal_provider.cc",
    "bruschetta/bruschetta_terminal_provider.h",
    "bruschetta/bruschetta_util.cc",
    "bruschetta/bruschetta_util.h",
    "camera_mic/vm_camera_mic_manager.cc",
    "camera_mic/vm_camera_mic_manager.h",
    "camera_presence_notifier.cc",
    "camera_presence_notifier.h",
    "cert_provisioning/cert_provisioning_common.cc",
    "cert_provisioning/cert_provisioning_common.h",
    "cert_provisioning/cert_provisioning_invalidator.cc",
    "cert_provisioning/cert_provisioning_invalidator.h",
    "cert_provisioning/cert_provisioning_metrics.cc",
    "cert_provisioning/cert_provisioning_metrics.h",
    "cert_provisioning/cert_provisioning_platform_keys_helpers.cc",
    "cert_provisioning/cert_provisioning_platform_keys_helpers.h",
    "cert_provisioning/cert_provisioning_scheduler.cc",
    "cert_provisioning/cert_provisioning_scheduler.h",
    "cert_provisioning/cert_provisioning_scheduler_user_service.cc",
    "cert_provisioning/cert_provisioning_scheduler_user_service.h",
    "cert_provisioning/cert_provisioning_serializer.cc",
    "cert_provisioning/cert_provisioning_serializer.h",
    "cert_provisioning/cert_provisioning_worker.cc",
    "cert_provisioning/cert_provisioning_worker.h",
    "child_accounts/child_policy_observer.cc",
    "child_accounts/child_policy_observer.h",
    "child_accounts/child_status_reporting_service.cc",
    "child_accounts/child_status_reporting_service.h",
    "child_accounts/child_status_reporting_service_factory.cc",
    "child_accounts/child_status_reporting_service_factory.h",
    "child_accounts/child_user_service.cc",
    "child_accounts/child_user_service.h",
    "child_accounts/child_user_service_factory.cc",
    "child_accounts/child_user_service_factory.h",
    "child_accounts/edu_coexistence_tos_store_utils.cc",
    "child_accounts/edu_coexistence_tos_store_utils.h",
    "child_accounts/event_based_status_reporting_service.cc",
    "child_accounts/event_based_status_reporting_service.h",
    "child_accounts/event_based_status_reporting_service_factory.cc",
    "child_accounts/event_based_status_reporting_service_factory.h",
    "child_accounts/family_features.cc",
    "child_accounts/family_features.h",
    "child_accounts/family_user_app_metrics.cc",
    "child_accounts/family_user_app_metrics.h",
    "child_accounts/family_user_chrome_activity_metrics.cc",
    "child_accounts/family_user_chrome_activity_metrics.h",
    "child_accounts/family_user_device_metrics.cc",
    "child_accounts/family_user_device_metrics.h",
    "child_accounts/family_user_metrics_service.cc",
    "child_accounts/family_user_metrics_service.h",
    "child_accounts/family_user_metrics_service_factory.cc",
    "child_accounts/family_user_metrics_service_factory.h",
    "child_accounts/family_user_parental_control_metrics.cc",
    "child_accounts/family_user_parental_control_metrics.h",
    "child_accounts/family_user_session_metrics.cc",
    "child_accounts/family_user_session_metrics.h",
    "child_accounts/parent_access_code/authenticator.cc",
    "child_accounts/parent_access_code/authenticator.h",
    "child_accounts/parent_access_code/config_source.cc",
    "child_accounts/parent_access_code/config_source.h",
    "child_accounts/parent_access_code/parent_access_service.cc",
    "child_accounts/parent_access_code/parent_access_service.h",
    "child_accounts/screen_time_controller.cc",
    "child_accounts/screen_time_controller.h",
    "child_accounts/screen_time_controller_factory.cc",
    "child_accounts/screen_time_controller_factory.h",
    "child_accounts/time_limit_notifier.cc",
    "child_accounts/time_limit_notifier.h",
    "child_accounts/time_limit_override.cc",
    "child_accounts/time_limit_override.h",
    "child_accounts/time_limits/app_activity_registry.cc",
    "child_accounts/time_limits/app_activity_registry.h",
    "child_accounts/time_limits/app_activity_report_interface.cc",
    "child_accounts/time_limits/app_activity_report_interface.h",
    "child_accounts/time_limits/app_service_wrapper.cc",
    "child_accounts/time_limits/app_service_wrapper.h",
    "child_accounts/time_limits/app_time_controller.cc",
    "child_accounts/time_limits/app_time_controller.h",
    "child_accounts/time_limits/app_time_limit_interface.cc",
    "child_accounts/time_limits/app_time_limit_interface.h",
    "child_accounts/time_limits/app_time_limit_utils.cc",
    "child_accounts/time_limits/app_time_limit_utils.h",
    "child_accounts/time_limits/app_time_limits_allowlist_policy_wrapper.cc",
    "child_accounts/time_limits/app_time_limits_allowlist_policy_wrapper.h",
    "child_accounts/time_limits/app_time_notification_delegate.h",
    "child_accounts/time_limits/app_time_policy_helpers.cc",
    "child_accounts/time_limits/app_time_policy_helpers.h",
    "child_accounts/time_limits/app_types.cc",
    "child_accounts/time_limits/app_types.h",
    "child_accounts/time_limits/persisted_app_info.cc",
    "child_accounts/time_limits/persisted_app_info.h",
    "child_accounts/usage_time_limit_processor.cc",
    "child_accounts/usage_time_limit_processor.h",
    "child_accounts/usage_time_state_notifier.cc",
    "child_accounts/usage_time_state_notifier.h",
    "child_accounts/website_approval_notifier.cc",
    "child_accounts/website_approval_notifier.h",
    "chrome_browser_main_parts_ash.cc",
    "chrome_browser_main_parts_ash.h",
    "concierge_helper_service.cc",
    "concierge_helper_service.h",
    "crostini/ansible/ansible_management_service.cc",
    "crostini/ansible/ansible_management_service.h",
    "crostini/ansible/ansible_management_service_factory.cc",
    "crostini/ansible/ansible_management_service_factory.h",
    "crostini/crostini_disk.cc",
    "crostini/crostini_disk.h",
    "crostini/crostini_engagement_metrics_service.cc",
    "crostini/crostini_engagement_metrics_service.h",
    "crostini/crostini_export_import.cc",
    "crostini/crostini_export_import.h",
    "crostini/crostini_export_import_notification_controller.cc",
    "crostini/crostini_export_import_notification_controller.h",
    "crostini/crostini_export_import_status_tracker.cc",
    "crostini/crostini_export_import_status_tracker.h",
    "crostini/crostini_features.cc",
    "crostini/crostini_features.h",
    "crostini/crostini_file_selector.cc",
    "crostini/crostini_file_selector.h",
    "crostini/crostini_force_close_watcher.cc",
    "crostini/crostini_force_close_watcher.h",
    "crostini/crostini_installer.cc",
    "crostini/crostini_installer.h",
    "crostini/crostini_installer_ui_delegate.h",
    "crostini/crostini_low_disk_notification.cc",
    "crostini/crostini_low_disk_notification.h",
    "crostini/crostini_manager.cc",
    "crostini/crostini_manager.h",
    "crostini/crostini_manager_factory.cc",
    "crostini/crostini_manager_factory.h",
    "crostini/crostini_mount_provider.cc",
    "crostini/crostini_mount_provider.h",
    "crostini/crostini_package_notification.cc",
    "crostini/crostini_package_notification.h",
    "crostini/crostini_package_operation_status.h",
    "crostini/crostini_package_service.cc",
    "crostini/crostini_package_service.h",
    "crostini/crostini_port_forwarder.cc",
    "crostini/crostini_port_forwarder.h",
    "crostini/crostini_pref_names.cc",
    "crostini/crostini_pref_names.h",
    "crostini/crostini_remover.cc",
    "crostini/crostini_remover.h",
    "crostini/crostini_reporting_util.cc",
    "crostini/crostini_reporting_util.h",
    "crostini/crostini_security_delegate.cc",
    "crostini/crostini_security_delegate.h",
    "crostini/crostini_shelf_utils.cc",
    "crostini/crostini_shelf_utils.h",
    "crostini/crostini_simple_types.cc",
    "crostini/crostini_simple_types.h",
    "crostini/crostini_sshfs.cc",
    "crostini/crostini_sshfs.h",
    "crostini/crostini_terminal_provider.cc",
    "crostini/crostini_terminal_provider.h",
    "crostini/crostini_unsupported_action_notifier.cc",
    "crostini/crostini_unsupported_action_notifier.h",
    "crostini/crostini_upgrade_available_notification.cc",
    "crostini/crostini_upgrade_available_notification.h",
    "crostini/crostini_upgrader.cc",
    "crostini/crostini_upgrader.h",
    "crostini/crostini_upgrader_ui_delegate.h",
    "crostini/crostini_util.cc",
    "crostini/crostini_util.h",
    "crostini/termina_installer.cc",
    "crostini/termina_installer.h",
    "crostini/throttle/crostini_active_window_throttle_observer.cc",
    "crostini/throttle/crostini_active_window_throttle_observer.h",
    "crostini/throttle/crostini_throttle.cc",
    "crostini/throttle/crostini_throttle.h",
    "cryptauth/client_app_metadata_provider_service.cc",
    "cryptauth/client_app_metadata_provider_service.h",
    "cryptauth/client_app_metadata_provider_service_factory.cc",
    "cryptauth/client_app_metadata_provider_service_factory.h",
    "cryptauth/cryptauth_device_id_provider_impl.cc",
    "cryptauth/cryptauth_device_id_provider_impl.h",
    "cryptauth/gcm_device_info_provider_impl.cc",
    "cryptauth/gcm_device_info_provider_impl.h",
    "customization/customization_document.cc",
    "customization/customization_document.h",
    "customization/customization_wallpaper_downloader.cc",
    "customization/customization_wallpaper_downloader.h",
    "customization/customization_wallpaper_util.cc",
    "customization/customization_wallpaper_util.h",
    "dbus/ash_dbus_helper.cc",
    "dbus/ash_dbus_helper.h",
    "dbus/chrome_features_service_provider.cc",
    "dbus/chrome_features_service_provider.h",
    "dbus/component_updater_service_provider.cc",
    "dbus/component_updater_service_provider.h",
    "dbus/cryptohome_key_delegate_service_provider.cc",
    "dbus/cryptohome_key_delegate_service_provider.h",
    "dbus/dlp_files_policy_service_provider.cc",
    "dbus/dlp_files_policy_service_provider.h",
    "dbus/drive_file_stream_service_provider.cc",
    "dbus/drive_file_stream_service_provider.h",
    "dbus/encrypted_reporting_service_provider.cc",
    "dbus/encrypted_reporting_service_provider.h",
    "dbus/fusebox_service_provider.cc",
    "dbus/fusebox_service_provider.h",
    "dbus/kiosk_info_service_provider.cc",
    "dbus/kiosk_info_service_provider.h",
    "dbus/libvda_service_provider.cc",
    "dbus/libvda_service_provider.h",
    "dbus/lock_to_single_user_service_provider.cc",
    "dbus/lock_to_single_user_service_provider.h",
    "dbus/machine_learning_decision_service_provider.cc",
    "dbus/machine_learning_decision_service_provider.h",
    "dbus/metrics_event_service_provider.cc",
    "dbus/metrics_event_service_provider.h",
    "dbus/mojo_connection_service_provider.cc",
    "dbus/mojo_connection_service_provider.h",
    "dbus/printers_service_provider.cc",
    "dbus/printers_service_provider.h",
    "dbus/proxy_resolution_service_provider.cc",
    "dbus/proxy_resolution_service_provider.h",
    "dbus/screen_lock_service_provider.cc",
    "dbus/screen_lock_service_provider.h",
    "dbus/smb_fs_service_provider.cc",
    "dbus/smb_fs_service_provider.h",
    "dbus/virtual_file_request_service_provider.cc",
    "dbus/virtual_file_request_service_provider.h",
    "dbus/vm/plugin_vm_service_provider.cc",
    "dbus/vm/plugin_vm_service_provider.h",
    "dbus/vm/vm_applications_service_provider.cc",
    "dbus/vm/vm_applications_service_provider.h",
    "dbus/vm/vm_disk_management_service_provider.cc",
    "dbus/vm/vm_disk_management_service_provider.h",
    "dbus/vm/vm_launch_service_provider.cc",
    "dbus/vm/vm_launch_service_provider.h",
    "dbus/vm/vm_permission_service_provider.cc",
    "dbus/vm/vm_permission_service_provider.h",
    "dbus/vm/vm_sk_forwarding_service_provider.cc",
    "dbus/vm/vm_sk_forwarding_service_provider.h",
    "device_name/device_name_applier.h",
    "device_name/device_name_applier_impl.cc",
    "device_name/device_name_applier_impl.h",
    "device_name/device_name_store.cc",
    "device_name/device_name_store.h",
    "device_name/device_name_store_impl.cc",
    "device_name/device_name_store_impl.h",
    "device_name/device_name_validator.cc",
    "device_name/device_name_validator.h",
    "device_sync/device_sync_client_factory.cc",
    "device_sync/device_sync_client_factory.h",
    "diagnostics/diagnostics_browser_delegate_impl.cc",
    "diagnostics/diagnostics_browser_delegate_impl.h",
    "display/quirks_manager_delegate_impl.cc",
    "display/quirks_manager_delegate_impl.h",
    "drive/drive_integration_service.cc",
    "drive/drive_integration_service.h",
    "drive/drivefs_native_message_host.cc",
    "drive/drivefs_native_message_host.h",
    "drive/file_system_util.cc",
    "drive/file_system_util.h",
    "drive/fileapi/drivefs_async_file_util.cc",
    "drive/fileapi/drivefs_async_file_util.h",
    "drive/fileapi/drivefs_file_system_backend_delegate.cc",
    "drive/fileapi/drivefs_file_system_backend_delegate.h",
    "eche_app/app_id.h",
    "eche_app/eche_app_manager_factory.cc",
    "eche_app/eche_app_manager_factory.h",
    "eche_app/eche_app_notification_controller.cc",
    "eche_app/eche_app_notification_controller.h",
    "enhanced_network_tts/enhanced_network_tts_constants.cc",
    "enhanced_network_tts/enhanced_network_tts_constants.h",
    "enhanced_network_tts/enhanced_network_tts_impl.cc",
    "enhanced_network_tts/enhanced_network_tts_impl.h",
    "enhanced_network_tts/enhanced_network_tts_utils.cc",
    "enhanced_network_tts/enhanced_network_tts_utils.h",
    "eol_notification.cc",
    "eol_notification.h",
    "events/event_rewriter_delegate_impl.cc",
    "events/event_rewriter_delegate_impl.h",
    "exo/chrome_data_exchange_delegate.cc",
    "exo/chrome_data_exchange_delegate.h",
    "external_metrics.cc",
    "external_metrics.h",
    "external_protocol_dialog.cc",
    "external_protocol_dialog.h",
    "file_manager/app_id.h",
    "file_manager/app_service_file_tasks.cc",
    "file_manager/app_service_file_tasks.h",
    "file_manager/arc_file_tasks.cc",
    "file_manager/arc_file_tasks.h",
    "file_manager/copy_or_move_io_task.cc",
    "file_manager/copy_or_move_io_task.h",
    "file_manager/copy_or_move_io_task_impl.cc",
    "file_manager/copy_or_move_io_task_impl.h",
    "file_manager/copy_or_move_io_task_scanning_impl.cc",
    "file_manager/copy_or_move_io_task_scanning_impl.h",
    "file_manager/delete_io_task.cc",
    "file_manager/delete_io_task.h",
    "file_manager/documents_provider_root_manager.cc",
    "file_manager/documents_provider_root_manager.h",
    "file_manager/empty_trash_io_task.cc",
    "file_manager/empty_trash_io_task.h",
    "file_manager/extract_io_task.cc",
    "file_manager/extract_io_task.h",
    "file_manager/file_browser_handlers.cc",
    "file_manager/file_browser_handlers.h",
    "file_manager/file_manager_copy_or_move_hook_delegate.cc",
    "file_manager/file_manager_copy_or_move_hook_delegate.h",
    "file_manager/file_manager_copy_or_move_hook_file_check_delegate.cc",
    "file_manager/file_manager_copy_or_move_hook_file_check_delegate.h",
    "file_manager/file_manager_string_util.cc",
    "file_manager/file_manager_string_util.h",
    "file_manager/file_tasks.cc",
    "file_manager/file_tasks.h",
    "file_manager/file_tasks_notifier.cc",
    "file_manager/file_tasks_notifier.h",
    "file_manager/file_tasks_notifier_factory.cc",
    "file_manager/file_tasks_notifier_factory.h",
    "file_manager/file_tasks_observer.h",
    "file_manager/file_watcher.cc",
    "file_manager/file_watcher.h",
    "file_manager/fileapi_util.cc",
    "file_manager/fileapi_util.h",
    "file_manager/filesystem_api_util.cc",
    "file_manager/filesystem_api_util.h",
    "file_manager/fusebox_mounter.cc",
    "file_manager/fusebox_mounter.h",
    "file_manager/guest_os_file_tasks.cc",
    "file_manager/guest_os_file_tasks.h",
    "file_manager/io_task.cc",
    "file_manager/io_task.h",
    "file_manager/io_task_controller.cc",
    "file_manager/io_task_controller.h",
    "file_manager/io_task_util.cc",
    "file_manager/io_task_util.h",
    "file_manager/open_util.cc",
    "file_manager/open_util.h",
    "file_manager/open_with_browser.cc",
    "file_manager/open_with_browser.h",
    "file_manager/path_util.cc",
    "file_manager/path_util.h",
    "file_manager/prefs_migration_uma.h",
    "file_manager/restore_io_task.cc",
    "file_manager/restore_io_task.h",
    "file_manager/restore_to_destination_io_task.cc",
    "file_manager/restore_to_destination_io_task.h",
    "file_manager/select_file_dialog_util.cc",
    "file_manager/select_file_dialog_util.h",
    "file_manager/snapshot_manager.cc",
    "file_manager/snapshot_manager.h",
    "file_manager/speedometer.cc",
    "file_manager/speedometer.h",
    "file_manager/trash_common_util.cc",
    "file_manager/trash_common_util.h",
    "file_manager/trash_info_validator.cc",
    "file_manager/trash_info_validator.h",
    "file_manager/trash_io_task.cc",
    "file_manager/trash_io_task.h",
    "file_manager/url_util.cc",
    "file_manager/url_util.h",
    "file_manager/volume_manager.cc",
    "file_manager/volume_manager.h",
    "file_manager/volume_manager_factory.cc",
    "file_manager/volume_manager_factory.h",
    "file_manager/volume_manager_observer.h",
    "file_manager/zip_io_task.cc",
    "file_manager/zip_io_task.h",
    "file_system_provider/abort_callback.h",
    "file_system_provider/extension_provider.cc",
    "file_system_provider/extension_provider.h",
    "file_system_provider/fileapi/backend_delegate.cc",
    "file_system_provider/fileapi/backend_delegate.h",
    "file_system_provider/fileapi/buffering_file_stream_reader.cc",
    "file_system_provider/fileapi/buffering_file_stream_reader.h",
    "file_system_provider/fileapi/buffering_file_stream_writer.cc",
    "file_system_provider/fileapi/buffering_file_stream_writer.h",
    "file_system_provider/fileapi/file_stream_reader.cc",
    "file_system_provider/fileapi/file_stream_reader.h",
    "file_system_provider/fileapi/file_stream_writer.cc",
    "file_system_provider/fileapi/file_stream_writer.h",
    "file_system_provider/fileapi/provider_async_file_util.cc",
    "file_system_provider/fileapi/provider_async_file_util.h",
    "file_system_provider/fileapi/watcher_manager.cc",
    "file_system_provider/fileapi/watcher_manager.h",
    "file_system_provider/icon_set.cc",
    "file_system_provider/icon_set.h",
    "file_system_provider/mount_path_util.cc",
    "file_system_provider/mount_path_util.h",
    "file_system_provider/notification_manager.cc",
    "file_system_provider/notification_manager.h",
    "file_system_provider/notification_manager_interface.h",
    "file_system_provider/observer.h",
    "file_system_provider/operations/abort.cc",
    "file_system_provider/operations/abort.h",
    "file_system_provider/operations/add_watcher.cc",
    "file_system_provider/operations/add_watcher.h",
    "file_system_provider/operations/close_file.cc",
    "file_system_provider/operations/close_file.h",
    "file_system_provider/operations/configure.cc",
    "file_system_provider/operations/configure.h",
    "file_system_provider/operations/copy_entry.cc",
    "file_system_provider/operations/copy_entry.h",
    "file_system_provider/operations/create_directory.cc",
    "file_system_provider/operations/create_directory.h",
    "file_system_provider/operations/create_file.cc",
    "file_system_provider/operations/create_file.h",
    "file_system_provider/operations/delete_entry.cc",
    "file_system_provider/operations/delete_entry.h",
    "file_system_provider/operations/execute_action.cc",
    "file_system_provider/operations/execute_action.h",
    "file_system_provider/operations/get_actions.cc",
    "file_system_provider/operations/get_actions.h",
    "file_system_provider/operations/get_metadata.cc",
    "file_system_provider/operations/get_metadata.h",
    "file_system_provider/operations/move_entry.cc",
    "file_system_provider/operations/move_entry.h",
    "file_system_provider/operations/open_file.cc",
    "file_system_provider/operations/open_file.h",
    "file_system_provider/operations/operation.cc",
    "file_system_provider/operations/operation.h",
    "file_system_provider/operations/read_directory.cc",
    "file_system_provider/operations/read_directory.h",
    "file_system_provider/operations/read_file.cc",
    "file_system_provider/operations/read_file.h",
    "file_system_provider/operations/remove_watcher.cc",
    "file_system_provider/operations/remove_watcher.h",
    "file_system_provider/operations/truncate.cc",
    "file_system_provider/operations/truncate.h",
    "file_system_provider/operations/unmount.cc",
    "file_system_provider/operations/unmount.h",
    "file_system_provider/operations/write_file.cc",
    "file_system_provider/operations/write_file.h",
    "file_system_provider/provided_file_system.cc",
    "file_system_provider/provided_file_system.h",
    "file_system_provider/provided_file_system_info.cc",
    "file_system_provider/provided_file_system_info.h",
    "file_system_provider/provided_file_system_interface.cc",
    "file_system_provider/provided_file_system_interface.h",
    "file_system_provider/provided_file_system_observer.cc",
    "file_system_provider/provided_file_system_observer.h",
    "file_system_provider/provider_interface.h",
    "file_system_provider/queue.cc",
    "file_system_provider/queue.h",
    "file_system_provider/registry.cc",
    "file_system_provider/registry.h",
    "file_system_provider/registry_interface.cc",
    "file_system_provider/registry_interface.h",
    "file_system_provider/request_manager.cc",
    "file_system_provider/request_manager.h",
    "file_system_provider/request_value.cc",
    "file_system_provider/request_value.h",
    "file_system_provider/scoped_file_opener.cc",
    "file_system_provider/scoped_file_opener.h",
    "file_system_provider/service.cc",
    "file_system_provider/service.h",
    "file_system_provider/service_factory.cc",
    "file_system_provider/service_factory.h",
    "file_system_provider/throttled_file_system.cc",
    "file_system_provider/throttled_file_system.h",
    "file_system_provider/watcher.cc",
    "file_system_provider/watcher.h",
    "first_run/first_run.cc",
    "first_run/first_run.h",
    "floating_workspace/floating_workspace_service.cc",
    "floating_workspace/floating_workspace_service.h",
    "floating_workspace/floating_workspace_service_factory.cc",
    "floating_workspace/floating_workspace_service_factory.h",
    "floating_workspace/floating_workspace_util.cc",
    "floating_workspace/floating_workspace_util.h",
    "fusebox/fusebox_errno.cc",
    "fusebox/fusebox_errno.h",
    "fusebox/fusebox_moniker.cc",
    "fusebox/fusebox_moniker.h",
    "fusebox/fusebox_server.cc",
    "fusebox/fusebox_server.h",
    "game_mode/game_mode_controller.cc",
    "game_mode/game_mode_controller.h",
    "guest_os/guest_id.cc",
    "guest_os/guest_id.h",
    "guest_os/guest_os_diagnostics_builder.cc",
    "guest_os/guest_os_diagnostics_builder.h",
    "guest_os/guest_os_external_protocol_handler.cc",
    "guest_os/guest_os_external_protocol_handler.h",
    "guest_os/guest_os_file_watcher.cc",
    "guest_os/guest_os_file_watcher.h",
    "guest_os/guest_os_launcher.cc",
    "guest_os/guest_os_launcher.h",
    "guest_os/guest_os_mime_types_service.cc",
    "guest_os/guest_os_mime_types_service.h",
    "guest_os/guest_os_mime_types_service_factory.cc",
    "guest_os/guest_os_mime_types_service_factory.h",
    "guest_os/guest_os_pref_names.cc",
    "guest_os/guest_os_pref_names.h",
    "guest_os/guest_os_registry_service.cc",
    "guest_os/guest_os_registry_service.h",
    "guest_os/guest_os_registry_service_factory.cc",
    "guest_os/guest_os_registry_service_factory.h",
    "guest_os/guest_os_security_delegate.cc",
    "guest_os/guest_os_security_delegate.h",
    "guest_os/guest_os_session_tracker.cc",
    "guest_os/guest_os_session_tracker.h",
    "guest_os/guest_os_session_tracker_factory.cc",
    "guest_os/guest_os_session_tracker_factory.h",
    "guest_os/guest_os_share_path.cc",
    "guest_os/guest_os_share_path.h",
    "guest_os/guest_os_share_path_factory.cc",
    "guest_os/guest_os_share_path_factory.h",
    "guest_os/guest_os_stability_monitor.cc",
    "guest_os/guest_os_stability_monitor.h",
    "guest_os/guest_os_terminal.cc",
    "guest_os/guest_os_terminal.h",
    "guest_os/infra/cached_callback.h",
    "guest_os/public/guest_os_mount_provider.cc",
    "guest_os/public/guest_os_mount_provider.h",
    "guest_os/public/guest_os_mount_provider_registry.cc",
    "guest_os/public/guest_os_mount_provider_registry.h",
    "guest_os/public/guest_os_service.cc",
    "guest_os/public/guest_os_service.h",
    "guest_os/public/guest_os_service_factory.cc",
    "guest_os/public/guest_os_service_factory.h",
    "guest_os/public/guest_os_terminal_provider.cc",
    "guest_os/public/guest_os_terminal_provider.h",
    "guest_os/public/guest_os_terminal_provider_registry.cc",
    "guest_os/public/guest_os_terminal_provider_registry.h",
    "guest_os/public/guest_os_wayland_server.cc",
    "guest_os/public/guest_os_wayland_server.h",
    "guest_os/public/installer_delegate_factory.cc",
    "guest_os/public/installer_delegate_factory.h",
    "guest_os/public/types.h",
    "guest_os/virtual_machines/virtual_machines_util.cc",
    "guest_os/virtual_machines/virtual_machines_util.h",
    "guest_os/vm_sk_forwarding_native_message_host.cc",
    "guest_os/vm_sk_forwarding_native_message_host.h",
    "hats/hats_config.cc",
    "hats/hats_config.h",
    "hats/hats_dialog.cc",
    "hats/hats_dialog.h",
    "hats/hats_finch_helper.cc",
    "hats/hats_finch_helper.h",
    "hats/hats_notification_controller.cc",
    "hats/hats_notification_controller.h",
    "idle_detector.cc",
    "idle_detector.h",
    "input_method/accessibility.cc",
    "input_method/accessibility.h",
    "input_method/assistive_suggester.cc",
    "input_method/assistive_suggester.h",
    "input_method/assistive_suggester_client_filter.cc",
    "input_method/assistive_suggester_client_filter.h",
    "input_method/assistive_suggester_prefs.cc",
    "input_method/assistive_suggester_prefs.h",
    "input_method/assistive_suggester_switch.h",
    "input_method/assistive_window_controller.cc",
    "input_method/assistive_window_controller.h",
    "input_method/assistive_window_controller_delegate.h",
    "input_method/assistive_window_properties.cc",
    "input_method/assistive_window_properties.h",
    "input_method/autocorrect_manager.cc",
    "input_method/autocorrect_manager.h",
    "input_method/candidate_window_controller.cc",
    "input_method/candidate_window_controller.h",
    "input_method/candidate_window_controller_impl.cc",
    "input_method/candidate_window_controller_impl.h",
    "input_method/component_extension_ime_manager_delegate_impl.cc",
    "input_method/component_extension_ime_manager_delegate_impl.h",
    "input_method/diacritics_checker.cc",
    "input_method/diacritics_checker.h",
    "input_method/diacritics_insensitive_string_comparator.cc",
    "input_method/diacritics_insensitive_string_comparator.h",
    "input_method/emoji_suggester.cc",
    "input_method/emoji_suggester.h",
    "input_method/get_current_window_properties.cc",
    "input_method/get_current_window_properties.h",
    "input_method/grammar_manager.cc",
    "input_method/grammar_manager.h",
    "input_method/grammar_service_client.cc",
    "input_method/grammar_service_client.h",
    "input_method/ime_rules_config.cc",
    "input_method/ime_rules_config.h",
    "input_method/ime_service_connector.cc",
    "input_method/ime_service_connector.h",
    "input_method/input_method_configuration.cc",
    "input_method/input_method_configuration.h",
    "input_method/input_method_delegate_impl.cc",
    "input_method/input_method_delegate_impl.h",
    "input_method/input_method_engine.cc",
    "input_method/input_method_engine.h",
    "input_method/input_method_engine_observer.h",
    "input_method/input_method_manager_impl.cc",
    "input_method/input_method_manager_impl.h",
    "input_method/input_method_persistence.cc",
    "input_method/input_method_persistence.h",
    "input_method/input_method_quick_settings_helpers.cc",
    "input_method/input_method_quick_settings_helpers.h",
    "input_method/input_method_settings.cc",
    "input_method/input_method_settings.h",
    "input_method/input_method_syncer.cc",
    "input_method/input_method_syncer.h",
    "input_method/longpress_diacritics_suggester.cc",
    "input_method/longpress_diacritics_suggester.h",
    "input_method/multi_word_suggester.cc",
    "input_method/multi_word_suggester.h",
    "input_method/native_input_method_engine.cc",
    "input_method/native_input_method_engine.h",
    "input_method/native_input_method_engine_observer.cc",
    "input_method/native_input_method_engine_observer.h",
    "input_method/personal_info_suggester.cc",
    "input_method/personal_info_suggester.h",
    "input_method/suggester.h",
    "input_method/suggestion_enums.h",
    "input_method/suggestion_handler_interface.h",
    "input_method/suggestions_collector.cc",
    "input_method/suggestions_collector.h",
    "input_method/suggestions_service_client.cc",
    "input_method/suggestions_service_client.h",
    "input_method/suggestions_source.h",
    "input_method/text_field_contextual_info_fetcher.cc",
    "input_method/text_field_contextual_info_fetcher.h",
    "input_method/text_utils.cc",
    "input_method/text_utils.h",
    "input_method/ui/assistive_accessibility_view.cc",
    "input_method/ui/assistive_accessibility_view.h",
    "input_method/ui/assistive_delegate.h",
    "input_method/ui/border_factory.cc",
    "input_method/ui/border_factory.h",
    "input_method/ui/candidate_view.cc",
    "input_method/ui/candidate_view.h",
    "input_method/ui/candidate_window_constants.h",
    "input_method/ui/candidate_window_view.cc",
    "input_method/ui/candidate_window_view.h",
    "input_method/ui/colors.cc",
    "input_method/ui/colors.h",
    "input_method/ui/completion_suggestion_label_view.cc",
    "input_method/ui/completion_suggestion_label_view.h",
    "input_method/ui/completion_suggestion_view.cc",
    "input_method/ui/completion_suggestion_view.h",
    "input_method/ui/grammar_suggestion_window.cc",
    "input_method/ui/grammar_suggestion_window.h",
    "input_method/ui/indexed_suggestion_candidate_button.cc",
    "input_method/ui/indexed_suggestion_candidate_button.h",
    "input_method/ui/infolist_window.cc",
    "input_method/ui/infolist_window.h",
    "input_method/ui/input_method_menu_item.cc",
    "input_method/ui/input_method_menu_item.h",
    "input_method/ui/input_method_menu_manager.cc",
    "input_method/ui/input_method_menu_manager.h",
    "input_method/ui/suggestion_accessibility_label.cc",
    "input_method/ui/suggestion_accessibility_label.h",
    "input_method/ui/suggestion_details.h",
    "input_method/ui/suggestion_window_view.cc",
    "input_method/ui/suggestion_window_view.h",
    "input_method/ui/undo_window.cc",
    "input_method/ui/undo_window.h",
    "kerberos/kerberos_credentials_manager.cc",
    "kerberos/kerberos_credentials_manager.h",
    "kerberos/kerberos_credentials_manager_factory.cc",
    "kerberos/kerberos_credentials_manager_factory.h",
    "kerberos/kerberos_ticket_expiry_notification.cc",
    "kerberos/kerberos_ticket_expiry_notification.h",
    "language_preferences.cc",
    "language_preferences.h",
    "locale_change_guard.cc",
    "locale_change_guard.h",
    "lock_screen_apps/app_manager.h",
    "lock_screen_apps/app_manager_impl.cc",
    "lock_screen_apps/app_manager_impl.h",
    "lock_screen_apps/app_window_metrics_tracker.cc",
    "lock_screen_apps/app_window_metrics_tracker.h",
    "lock_screen_apps/first_app_run_toast_manager.cc",
    "lock_screen_apps/first_app_run_toast_manager.h",
    "lock_screen_apps/focus_cycler_delegate.h",
    "lock_screen_apps/lock_screen_apps.cc",
    "lock_screen_apps/lock_screen_apps.h",
    "lock_screen_apps/lock_screen_profile_creator.cc",
    "lock_screen_apps/lock_screen_profile_creator.h",
    "lock_screen_apps/lock_screen_profile_creator_impl.cc",
    "lock_screen_apps/lock_screen_profile_creator_impl.h",
    "lock_screen_apps/state_controller.cc",
    "lock_screen_apps/state_controller.h",
    "lock_screen_apps/state_observer.h",
    "lock_screen_apps/toast_dialog_view.cc",
    "lock_screen_apps/toast_dialog_view.h",
    "logging.cc",
    "logging.h",
    "login/active_directory_migration_utils.cc",
    "login/active_directory_migration_utils.h",
    "login/app_mode/kiosk_launch_controller.cc",
    "login/app_mode/kiosk_launch_controller.h",
    "login/auth/chrome_cryptohome_authenticator.cc",
    "login/auth/chrome_cryptohome_authenticator.h",
    "login/auth/chrome_login_performer.cc",
    "login/auth/chrome_login_performer.h",
    "login/auth/chrome_safe_mode_delegate.cc",
    "login/auth/chrome_safe_mode_delegate.h",
    "login/challenge_response_auth_keys_loader.cc",
    "login/challenge_response_auth_keys_loader.h",
    "login/chrome_restart_request.cc",
    "login/chrome_restart_request.h",
    "login/configuration_keys.cc",
    "login/configuration_keys.h",
    "login/consolidated_consent_field_trial.cc",
    "login/consolidated_consent_field_trial.h",
    "login/demo_mode/demo_extensions_external_loader.cc",
    "login/demo_mode/demo_extensions_external_loader.h",
    "login/demo_mode/demo_mode_resources_remover.cc",
    "login/demo_mode/demo_mode_resources_remover.h",
    "login/demo_mode/demo_resources.cc",
    "login/demo_mode/demo_resources.h",
    "login/demo_mode/demo_session.cc",
    "login/demo_mode/demo_session.h",
    "login/demo_mode/demo_setup_controller.cc",
    "login/demo_mode/demo_setup_controller.h",
    "login/easy_unlock/chrome_proximity_auth_client.cc",
    "login/easy_unlock/chrome_proximity_auth_client.h",
    "login/easy_unlock/easy_unlock_auth_attempt.cc",
    "login/easy_unlock/easy_unlock_auth_attempt.h",
    "login/easy_unlock/easy_unlock_challenge_wrapper.cc",
    "login/easy_unlock/easy_unlock_challenge_wrapper.h",
    "login/easy_unlock/easy_unlock_create_keys_operation.cc",
    "login/easy_unlock/easy_unlock_create_keys_operation.h",
    "login/easy_unlock/easy_unlock_get_keys_operation.cc",
    "login/easy_unlock/easy_unlock_get_keys_operation.h",
    "login/easy_unlock/easy_unlock_key_manager.cc",
    "login/easy_unlock/easy_unlock_key_manager.h",
    "login/easy_unlock/easy_unlock_key_names.cc",
    "login/easy_unlock/easy_unlock_key_names.h",
    "login/easy_unlock/easy_unlock_metrics.cc",
    "login/easy_unlock/easy_unlock_metrics.h",
    "login/easy_unlock/easy_unlock_notification_controller.cc",
    "login/easy_unlock/easy_unlock_notification_controller.h",
    "login/easy_unlock/easy_unlock_refresh_keys_operation.cc",
    "login/easy_unlock/easy_unlock_refresh_keys_operation.h",
    "login/easy_unlock/easy_unlock_remove_keys_operation.cc",
    "login/easy_unlock/easy_unlock_remove_keys_operation.h",
    "login/easy_unlock/easy_unlock_service.cc",
    "login/easy_unlock/easy_unlock_service.h",
    "login/easy_unlock/easy_unlock_service_factory.cc",
    "login/easy_unlock/easy_unlock_service_factory.h",
    "login/easy_unlock/easy_unlock_service_regular.cc",
    "login/easy_unlock/easy_unlock_service_regular.h",
    "login/easy_unlock/easy_unlock_service_signin.cc",
    "login/easy_unlock/easy_unlock_service_signin.h",
    "login/easy_unlock/easy_unlock_tpm_key_manager.cc",
    "login/easy_unlock/easy_unlock_tpm_key_manager.h",
    "login/easy_unlock/easy_unlock_tpm_key_manager_factory.cc",
    "login/easy_unlock/easy_unlock_tpm_key_manager_factory.h",
    "login/easy_unlock/easy_unlock_types.cc",
    "login/easy_unlock/easy_unlock_types.h",
    "login/easy_unlock/easy_unlock_user_login_flow.cc",
    "login/easy_unlock/easy_unlock_user_login_flow.h",
    "login/easy_unlock/smartlock_feature_usage_metrics.cc",
    "login/easy_unlock/smartlock_feature_usage_metrics.h",
    "login/easy_unlock/smartlock_state_handler.cc",
    "login/easy_unlock/smartlock_state_handler.h",
    "login/enrollment/auto_enrollment_check_screen.cc",
    "login/enrollment/auto_enrollment_check_screen.h",
    "login/enrollment/auto_enrollment_check_screen_view.h",
    "login/enrollment/auto_enrollment_controller.cc",
    "login/enrollment/auto_enrollment_controller.h",
    "login/enrollment/enrollment_screen.cc",
    "login/enrollment/enrollment_screen.h",
    "login/enrollment/enrollment_screen_view.h",
    "login/enrollment/enrollment_uma.cc",
    "login/enrollment/enrollment_uma.h",
    "login/enrollment/enterprise_enrollment_helper.cc",
    "login/enrollment/enterprise_enrollment_helper.h",
    "login/enrollment/enterprise_enrollment_helper_impl.cc",
    "login/enrollment/enterprise_enrollment_helper_impl.h",
    "login/enterprise_user_session_metrics.cc",
    "login/enterprise_user_session_metrics.h",
    "login/error_screens_histogram_helper.cc",
    "login/error_screens_histogram_helper.h",
    "login/existing_user_controller.cc",
    "login/existing_user_controller.h",
    "login/extensions/login_screen_extensions_content_script_manager.cc",
    "login/extensions/login_screen_extensions_content_script_manager.h",
    "login/extensions/login_screen_extensions_content_script_manager_factory.cc",
    "login/extensions/login_screen_extensions_content_script_manager_factory.h",
    "login/extensions/login_screen_extensions_lifetime_manager.cc",
    "login/extensions/login_screen_extensions_lifetime_manager.h",
    "login/extensions/login_screen_extensions_lifetime_manager_factory.cc",
    "login/extensions/login_screen_extensions_lifetime_manager_factory.h",
    "login/gaia_reauth_token_fetcher.cc",
    "login/gaia_reauth_token_fetcher.h",
    "login/hats_unlock_survey_trigger.cc",
    "login/hats_unlock_survey_trigger.h",
    "login/help_app_launcher.cc",
    "login/help_app_launcher.h",
    "login/helper.cc",
    "login/helper.h",
    "login/hwid_checker.cc",
    "login/hwid_checker.h",
    "login/lock/screen_locker.cc",
    "login/lock/screen_locker.h",
    "login/lock/views_screen_locker.cc",
    "login/lock/views_screen_locker.h",
    "login/lock_screen_utils.cc",
    "login/lock_screen_utils.h",
    "login/login_auth_recorder.cc",
    "login/login_auth_recorder.h",
    "login/login_client_cert_usage_observer.cc",
    "login/login_client_cert_usage_observer.h",
    "login/login_pref_names.cc",
    "login/login_pref_names.h",
    "login/login_screen_extensions_storage_cleaner.cc",
    "login/login_screen_extensions_storage_cleaner.h",
    "login/login_wizard.h",
    "login/marketing_backend_connector.cc",
    "login/marketing_backend_connector.h",
    "login/mojo_system_info_dispatcher.cc",
    "login/mojo_system_info_dispatcher.h",
    "login/onboarding_user_activity_counter.cc",
    "login/onboarding_user_activity_counter.h",
    "login/oobe_configuration.cc",
    "login/oobe_configuration.h",
    "login/oobe_screen.cc",
    "login/oobe_screen.h",
    "login/profile_auth_data.cc",
    "login/profile_auth_data.h",
    "login/quick_unlock/auth_token.cc",
    "login/quick_unlock/auth_token.h",
    "login/quick_unlock/fake_pin_salt_storage.cc",
    "login/quick_unlock/fake_pin_salt_storage.h",
    "login/quick_unlock/fingerprint_power_button_race_detector.cc",
    "login/quick_unlock/fingerprint_power_button_race_detector.h",
    "login/quick_unlock/fingerprint_storage.cc",
    "login/quick_unlock/fingerprint_storage.h",
    "login/quick_unlock/fingerprint_utils.cc",
    "login/quick_unlock/fingerprint_utils.h",
    "login/quick_unlock/pin_backend.cc",
    "login/quick_unlock/pin_backend.h",
    "login/quick_unlock/pin_salt_storage.cc",
    "login/quick_unlock/pin_salt_storage.h",
    "login/quick_unlock/pin_storage_cryptohome.cc",
    "login/quick_unlock/pin_storage_cryptohome.h",
    "login/quick_unlock/pin_storage_prefs.cc",
    "login/quick_unlock/pin_storage_prefs.h",
    "login/quick_unlock/quick_unlock_factory.cc",
    "login/quick_unlock/quick_unlock_factory.h",
    "login/quick_unlock/quick_unlock_storage.cc",
    "login/quick_unlock/quick_unlock_storage.h",
    "login/quick_unlock/quick_unlock_utils.cc",
    "login/quick_unlock/quick_unlock_utils.h",
    "login/reauth_stats.cc",
    "login/reauth_stats.h",
    "login/reporting/lock_unlock_reporter.cc",
    "login/reporting/lock_unlock_reporter.h",
    "login/reporting/login_logout_reporter.cc",
    "login/reporting/login_logout_reporter.h",
    "login/saml/in_session_password_change_manager.cc",
    "login/saml/in_session_password_change_manager.h",
    "login/saml/in_session_password_sync_manager.cc",
    "login/saml/in_session_password_sync_manager.h",
    "login/saml/in_session_password_sync_manager_factory.cc",
    "login/saml/in_session_password_sync_manager_factory.h",
    "login/saml/password_change_success_notification.cc",
    "login/saml/password_change_success_notification.h",
    "login/saml/password_expiry_notification.cc",
    "login/saml/password_expiry_notification.h",
    "login/saml/password_sync_token_checkers_collection.cc",
    "login/saml/password_sync_token_checkers_collection.h",
    "login/saml/password_sync_token_fetcher.cc",
    "login/saml/password_sync_token_fetcher.h",
    "login/saml/password_sync_token_login_checker.cc",
    "login/saml/password_sync_token_login_checker.h",
    "login/saml/password_sync_token_verifier.cc",
    "login/saml/password_sync_token_verifier.h",
    "login/saml/password_sync_token_verifier_factory.cc",
    "login/saml/password_sync_token_verifier_factory.h",
    "login/saml/public_saml_url_fetcher.cc",
    "login/saml/public_saml_url_fetcher.h",
    "login/saml/saml_metric_utils.cc",
    "login/saml/saml_metric_utils.h",
    "login/saml/saml_profile_prefs.cc",
    "login/saml/saml_profile_prefs.h",
    "login/screen_manager.cc",
    "login/screen_manager.h",
    "login/screens/active_directory_login_screen.cc",
    "login/screens/active_directory_login_screen.h",
    "login/screens/active_directory_password_change_screen.cc",
    "login/screens/active_directory_password_change_screen.h",
    "login/screens/app_downloading_screen.cc",
    "login/screens/app_downloading_screen.h",
    "login/screens/arc_terms_of_service_screen.cc",
    "login/screens/arc_terms_of_service_screen.h",
    "login/screens/assistant_optin_flow_screen.cc",
    "login/screens/assistant_optin_flow_screen.h",
    "login/screens/base_screen.cc",
    "login/screens/base_screen.h",
    "login/screens/chrome_user_selection_screen.cc",
    "login/screens/chrome_user_selection_screen.h",
    "login/screens/chromevox_hint/chromevox_hint_detector.cc",
    "login/screens/chromevox_hint/chromevox_hint_detector.h",
    "login/screens/consolidated_consent_screen.cc",
    "login/screens/consolidated_consent_screen.h",
    "login/screens/cryptohome_recovery_screen.cc",
    "login/screens/cryptohome_recovery_screen.h",
    "login/screens/demo_preferences_screen.cc",
    "login/screens/demo_preferences_screen.h",
    "login/screens/demo_setup_screen.cc",
    "login/screens/demo_setup_screen.h",
    "login/screens/device_disabled_screen.cc",
    "login/screens/device_disabled_screen.h",
    "login/screens/edu_coexistence_login_screen.cc",
    "login/screens/edu_coexistence_login_screen.h",
    "login/screens/enable_adb_sideloading_screen.cc",
    "login/screens/enable_adb_sideloading_screen.h",
    "login/screens/enable_debugging_screen.cc",
    "login/screens/enable_debugging_screen.h",
    "login/screens/encryption_migration_mode.h",
    "login/screens/encryption_migration_screen.cc",
    "login/screens/encryption_migration_screen.h",
    "login/screens/error_screen.cc",
    "login/screens/error_screen.h",
    "login/screens/eula_screen.cc",
    "login/screens/eula_screen.h",
    "login/screens/family_link_notice_screen.cc",
    "login/screens/family_link_notice_screen.h",
    "login/screens/fingerprint_setup_screen.cc",
    "login/screens/fingerprint_setup_screen.h",
    "login/screens/gaia_password_changed_screen.cc",
    "login/screens/gaia_password_changed_screen.h",
    "login/screens/gaia_screen.cc",
    "login/screens/gaia_screen.h",
    "login/screens/gesture_navigation_screen.cc",
    "login/screens/gesture_navigation_screen.h",
    "login/screens/guest_tos_screen.cc",
    "login/screens/guest_tos_screen.h",
    "login/screens/hardware_data_collection_screen.cc",
    "login/screens/hardware_data_collection_screen.h",
    "login/screens/hid_detection_screen.cc",
    "login/screens/hid_detection_screen.h",
    "login/screens/kiosk_autolaunch_screen.cc",
    "login/screens/kiosk_autolaunch_screen.h",
    "login/screens/kiosk_enable_screen.cc",
    "login/screens/kiosk_enable_screen.h",
    "login/screens/lacros_data_backward_migration_screen.cc",
    "login/screens/lacros_data_backward_migration_screen.h",
    "login/screens/lacros_data_migration_screen.cc",
    "login/screens/lacros_data_migration_screen.h",
    "login/screens/local_state_error_screen.cc",
    "login/screens/local_state_error_screen.h",
    "login/screens/locale_switch_screen.cc",
    "login/screens/locale_switch_screen.h",
    "login/screens/management_transition_screen.cc",
    "login/screens/management_transition_screen.h",
    "login/screens/marketing_opt_in_screen.cc",
    "login/screens/marketing_opt_in_screen.h",
    "login/screens/multidevice_setup_screen.cc",
    "login/screens/multidevice_setup_screen.h",
    "login/screens/network_error.cc",
    "login/screens/network_error.h",
    "login/screens/network_screen.cc",
    "login/screens/network_screen.h",
    "login/screens/offline_login_screen.cc",
    "login/screens/offline_login_screen.h",
    "login/screens/os_install_screen.cc",
    "login/screens/os_install_screen.h",
    "login/screens/os_trial_screen.cc",
    "login/screens/os_trial_screen.h",
    "login/screens/packaged_license_screen.cc",
    "login/screens/packaged_license_screen.h",
    "login/screens/parental_handoff_screen.cc",
    "login/screens/parental_handoff_screen.h",
    "login/screens/pin_setup_screen.cc",
    "login/screens/pin_setup_screen.h",
    "login/screens/quick_start_screen.cc",
    "login/screens/quick_start_screen.h",
    "login/screens/recommend_apps/fake_recommend_apps_fetcher.cc",
    "login/screens/recommend_apps/fake_recommend_apps_fetcher.h",
    "login/screens/recommend_apps/recommend_apps_fetcher.cc",
    "login/screens/recommend_apps/recommend_apps_fetcher.h",
    "login/screens/recommend_apps/recommend_apps_fetcher_delegate.h",
    "login/screens/recommend_apps/recommend_apps_fetcher_impl.cc",
    "login/screens/recommend_apps/recommend_apps_fetcher_impl.h",
    "login/screens/recommend_apps_screen.cc",
    "login/screens/recommend_apps_screen.h",
    "login/screens/reset_screen.cc",
    "login/screens/reset_screen.h",
    "login/screens/saml_confirm_password_screen.cc",
    "login/screens/saml_confirm_password_screen.h",
    "login/screens/signin_fatal_error_screen.cc",
    "login/screens/signin_fatal_error_screen.h",
    "login/screens/smart_privacy_protection_screen.cc",
    "login/screens/smart_privacy_protection_screen.h",
    "login/screens/sync_consent_screen.cc",
    "login/screens/sync_consent_screen.h",
    "login/screens/terms_of_service_screen.cc",
    "login/screens/terms_of_service_screen.h",
    "login/screens/theme_selection_screen.cc",
    "login/screens/theme_selection_screen.h",
    "login/screens/tpm_error_screen.cc",
    "login/screens/tpm_error_screen.h",
    "login/screens/update_required_screen.cc",
    "login/screens/update_required_screen.h",
    "login/screens/update_screen.cc",
    "login/screens/update_screen.h",
    "login/screens/user_creation_screen.cc",
    "login/screens/user_creation_screen.h",
    "login/screens/user_selection_screen.cc",
    "login/screens/user_selection_screen.h",
    "login/screens/welcome_screen.cc",
    "login/screens/welcome_screen.h",
    "login/screens/wrong_hwid_screen.cc",
    "login/screens/wrong_hwid_screen.h",
    "login/security_token_pin_dialog_host_login_impl.cc",
    "login/security_token_pin_dialog_host_login_impl.h",
    "login/security_token_session_controller.cc",
    "login/security_token_session_controller.h",
    "login/security_token_session_controller_factory.cc",
    "login/security_token_session_controller_factory.h",
    "login/session/chrome_session_manager.cc",
    "login/session/chrome_session_manager.h",
    "login/session/user_session_initializer.cc",
    "login/session/user_session_initializer.h",
    "login/session/user_session_manager.cc",
    "login/session/user_session_manager.h",
    "login/signin/auth_error_observer.cc",
    "login/signin/auth_error_observer.h",
    "login/signin/auth_error_observer_factory.cc",
    "login/signin/auth_error_observer_factory.h",
    "login/signin/merge_session_navigation_throttle.cc",
    "login/signin/merge_session_navigation_throttle.h",
    "login/signin/merge_session_throttling_utils.cc",
    "login/signin/merge_session_throttling_utils.h",
    "login/signin/oauth2_login_manager.cc",
    "login/signin/oauth2_login_manager.h",
    "login/signin/oauth2_login_manager_factory.cc",
    "login/signin/oauth2_login_manager_factory.h",
    "login/signin/oauth2_login_verifier.cc",
    "login/signin/oauth2_login_verifier.h",
    "login/signin/oauth2_token_fetcher.cc",
    "login/signin/oauth2_token_fetcher.h",
    "login/signin/oauth2_token_initializer.cc",
    "login/signin/oauth2_token_initializer.h",
    "login/signin/offline_signin_limiter.cc",
    "login/signin/offline_signin_limiter.h",
    "login/signin/offline_signin_limiter_factory.cc",
    "login/signin/offline_signin_limiter_factory.h",
    "login/signin/signin_error_notifier.cc",
    "login/signin/signin_error_notifier.h",
    "login/signin/signin_error_notifier_factory.cc",
    "login/signin/signin_error_notifier_factory.h",
    "login/signin/token_handle_fetcher.cc",
    "login/signin/token_handle_fetcher.h",
    "login/signin/token_handle_util.cc",
    "login/signin/token_handle_util.h",
    "login/signin_partition_manager.cc",
    "login/signin_partition_manager.h",
    "login/signin_specifics.h",
    "login/startup_utils.cc",
    "login/startup_utils.h",
    "login/ui/captive_portal_dialog_delegate.cc",
    "login/ui/captive_portal_dialog_delegate.h",
    "login/ui/captive_portal_view.cc",
    "login/ui/captive_portal_view.h",
    "login/ui/captive_portal_window_proxy.cc",
    "login/ui/captive_portal_window_proxy.h",
    "login/ui/input_events_blocker.cc",
    "login/ui/input_events_blocker.h",
    "login/ui/kiosk_app_menu_controller.cc",
    "login/ui/kiosk_app_menu_controller.h",
    "login/ui/login_display.cc",
    "login/ui/login_display.h",
    "login/ui/login_display_host.cc",
    "login/ui/login_display_host.h",
    "login/ui/login_display_host_common.cc",
    "login/ui/login_display_host_common.h",
    "login/ui/login_display_host_mojo.cc",
    "login/ui/login_display_host_mojo.h",
    "login/ui/login_display_host_webui.cc",
    "login/ui/login_display_host_webui.h",
    "login/ui/login_display_mojo.cc",
    "login/ui/login_display_mojo.h",
    "login/ui/login_display_webui.cc",
    "login/ui/login_display_webui.h",
    "login/ui/login_feedback.cc",
    "login/ui/login_feedback.h",
    "login/ui/login_screen_extension_ui/create_options.cc",
    "login/ui/login_screen_extension_ui/create_options.h",
    "login/ui/login_screen_extension_ui/dialog_delegate.cc",
    "login/ui/login_screen_extension_ui/dialog_delegate.h",
    "login/ui/login_screen_extension_ui/web_dialog_view.cc",
    "login/ui/login_screen_extension_ui/web_dialog_view.h",
    "login/ui/login_screen_extension_ui/window.cc",
    "login/ui/login_screen_extension_ui/window.h",
    "login/ui/login_web_dialog.cc",
    "login/ui/login_web_dialog.h",
    "login/ui/oobe_dialog_size_utils.cc",
    "login/ui/oobe_dialog_size_utils.h",
    "login/ui/oobe_ui_dialog_delegate.cc",
    "login/ui/oobe_ui_dialog_delegate.h",
    "login/ui/signin_ui.h",
    "login/ui/simple_web_view_dialog.cc",
    "login/ui/simple_web_view_dialog.h",
    "login/ui/user_adding_screen.cc",
    "login/ui/user_adding_screen.h",
    "login/ui/user_adding_screen_input_methods_controller.cc",
    "login/ui/user_adding_screen_input_methods_controller.h",
    "login/ui/views/user_board_view.h",
    "login/ui/web_contents_forced_title.cc",
    "login/ui/web_contents_forced_title.h",
    "login/ui/webui_login_view.cc",
    "login/ui/webui_login_view.h",
    "login/user_board_view_mojo.cc",
    "login/user_board_view_mojo.h",
    "login/user_flow.cc",
    "login/user_flow.h",
    "login/user_online_signin_notifier.cc",
    "login/user_online_signin_notifier.h",
    "login/users/affiliation.cc",
    "login/users/affiliation.h",
    "login/users/avatar/user_image_file_selector.cc",
    "login/users/avatar/user_image_file_selector.h",
    "login/users/avatar/user_image_loader.cc",
    "login/users/avatar/user_image_loader.h",
    "login/users/avatar/user_image_manager.cc",
    "login/users/avatar/user_image_manager.h",
    "login/users/avatar/user_image_manager_impl.cc",
    "login/users/avatar/user_image_manager_impl.h",
    "login/users/avatar/user_image_sync_observer.cc",
    "login/users/avatar/user_image_sync_observer.h",
    "login/users/chrome_user_manager.cc",
    "login/users/chrome_user_manager.h",
    "login/users/chrome_user_manager_impl.cc",
    "login/users/chrome_user_manager_impl.h",
    "login/users/chrome_user_manager_util.cc",
    "login/users/chrome_user_manager_util.h",
    "login/users/default_user_image/default_user_images.cc",
    "login/users/default_user_image/default_user_images.h",
    "login/users/multi_profile_user_controller.cc",
    "login/users/multi_profile_user_controller.h",
    "login/users/multi_profile_user_controller_delegate.h",
    "login/users/scoped_test_user_manager.cc",
    "login/users/scoped_test_user_manager.h",
    "login/users/supervised_user_manager.h",
    "login/users/supervised_user_manager_impl.cc",
    "login/users/supervised_user_manager_impl.h",
    "login/users/test_users.cc",
    "login/users/test_users.h",
    "login/users/user_manager_interface.h",
    "login/version_info_updater.cc",
    "login/version_info_updater.h",
    "login/version_updater/update_time_estimator.cc",
    "login/version_updater/update_time_estimator.h",
    "login/version_updater/version_updater.cc",
    "login/version_updater/version_updater.h",
    "login/wizard_context.cc",
    "login/wizard_context.h",
    "login/wizard_controller.cc",
    "login/wizard_controller.h",
    "mobile/mobile_activator.cc",
    "mobile/mobile_activator.h",
    "multidevice_setup/auth_token_validator_factory.cc",
    "multidevice_setup/auth_token_validator_factory.h",
    "multidevice_setup/auth_token_validator_impl.cc",
    "multidevice_setup/auth_token_validator_impl.h",
    "multidevice_setup/multidevice_setup_client_factory.cc",
    "multidevice_setup/multidevice_setup_client_factory.h",
    "multidevice_setup/multidevice_setup_service_factory.cc",
    "multidevice_setup/multidevice_setup_service_factory.h",
    "multidevice_setup/oobe_completion_tracker_factory.cc",
    "multidevice_setup/oobe_completion_tracker_factory.h",
    "nearby/nearby_dependencies_provider.cc",
    "nearby/nearby_dependencies_provider.h",
    "nearby/nearby_dependencies_provider_factory.cc",
    "nearby/nearby_dependencies_provider_factory.h",
    "nearby/nearby_process_manager_factory.cc",
    "nearby/nearby_process_manager_factory.h",
    "nearby/nearby_process_manager_impl.cc",
    "nearby/nearby_process_manager_impl.h",
    "net/bluetooth_pref_state_observer.cc",
    "net/bluetooth_pref_state_observer.h",
    "net/client_cert_filter.cc",
    "net/client_cert_filter.h",
    "net/client_cert_store_ash.cc",
    "net/client_cert_store_ash.h",
    "net/delay_network_call.cc",
    "net/delay_network_call.h",
    "net/dhcp_wpad_url_client.cc",
    "net/dhcp_wpad_url_client.h",
    "net/network_diagnostics/arc_dns_resolution_routine.cc",
    "net/network_diagnostics/arc_dns_resolution_routine.h",
    "net/network_diagnostics/arc_http_routine.cc",
    "net/network_diagnostics/arc_http_routine.h",
    "net/network_diagnostics/arc_ping_routine.cc",
    "net/network_diagnostics/arc_ping_routine.h",
    "net/network_diagnostics/captive_portal_routine.cc",
    "net/network_diagnostics/captive_portal_routine.h",
    "net/network_diagnostics/dns_latency_routine.cc",
    "net/network_diagnostics/dns_latency_routine.h",
    "net/network_diagnostics/dns_resolution_routine.cc",
    "net/network_diagnostics/dns_resolution_routine.h",
    "net/network_diagnostics/dns_resolver_present_routine.cc",
    "net/network_diagnostics/dns_resolver_present_routine.h",
    "net/network_diagnostics/gateway_can_be_pinged_routine.cc",
    "net/network_diagnostics/gateway_can_be_pinged_routine.h",
    "net/network_diagnostics/has_secure_wifi_connection_routine.cc",
    "net/network_diagnostics/has_secure_wifi_connection_routine.h",
    "net/network_diagnostics/host_resolver.cc",
    "net/network_diagnostics/host_resolver.h",
    "net/network_diagnostics/http_firewall_routine.cc",
    "net/network_diagnostics/http_firewall_routine.h",
    "net/network_diagnostics/http_request_manager.cc",
    "net/network_diagnostics/http_request_manager.h",
    "net/network_diagnostics/https_firewall_routine.cc",
    "net/network_diagnostics/https_firewall_routine.h",
    "net/network_diagnostics/https_latency_routine.cc",
    "net/network_diagnostics/https_latency_routine.h",
    "net/network_diagnostics/lan_connectivity_routine.cc",
    "net/network_diagnostics/lan_connectivity_routine.h",
    "net/network_diagnostics/network_diagnostics.cc",
    "net/network_diagnostics/network_diagnostics.h",
    "net/network_diagnostics/network_diagnostics_routine.cc",
    "net/network_diagnostics/network_diagnostics_routine.h",
    "net/network_diagnostics/network_diagnostics_util.cc",
    "net/network_diagnostics/network_diagnostics_util.h",
    "net/network_diagnostics/signal_strength_routine.cc",
    "net/network_diagnostics/signal_strength_routine.h",
    "net/network_diagnostics/tls_prober.cc",
    "net/network_diagnostics/tls_prober.h",
    "net/network_diagnostics/udp_prober.cc",
    "net/network_diagnostics/udp_prober.h",
    "net/network_diagnostics/video_conferencing_routine.cc",
    "net/network_diagnostics/video_conferencing_routine.h",
    "net/network_health/network_health_manager.cc",
    "net/network_health/network_health_manager.h",
    "net/network_portal_detector_impl.cc",
    "net/network_portal_detector_impl.h",
    "net/network_portal_detector_test_impl.cc",
    "net/network_portal_detector_test_impl.h",
    "net/network_portal_web_dialog.cc",
    "net/network_portal_web_dialog.h",
    "net/network_pref_state_observer.cc",
    "net/network_pref_state_observer.h",
    "net/network_throttling_observer.cc",
    "net/network_throttling_observer.h",
    "net/rollback_network_config/rollback_network_config.cc",
    "net/rollback_network_config/rollback_network_config.h",
    "net/rollback_network_config/rollback_network_config_service.cc",
    "net/rollback_network_config/rollback_network_config_service.h",
    "net/rollback_network_config/rollback_onc_util.cc",
    "net/rollback_network_config/rollback_onc_util.h",
    "net/secure_dns_manager.cc",
    "net/secure_dns_manager.h",
    "net/system_proxy_manager.cc",
    "net/system_proxy_manager.h",
    "net/traffic_counters_handler.cc",
    "net/traffic_counters_handler.h",
    "network_change_manager_client.cc",
    "network_change_manager_client.h",
    "night_light/night_light_client.cc",
    "night_light/night_light_client.h",
    "note_taking_controller_client.cc",
    "note_taking_controller_client.h",
    "note_taking_helper.cc",
    "note_taking_helper.h",
    "notifications/adb_sideloading_policy_change_notification.cc",
    "notifications/adb_sideloading_policy_change_notification.h",
    "notifications/debugd_notification_handler.cc",
    "notifications/debugd_notification_handler.h",
    "notifications/deprecation_notification_controller.cc",
    "notifications/deprecation_notification_controller.h",
    "notifications/echo_dialog_listener.h",
    "notifications/echo_dialog_view.cc",
    "notifications/echo_dialog_view.h",
    "notifications/gnubby_notification.cc",
    "notifications/gnubby_notification.h",
    "notifications/idle_app_name_notification_view.cc",
    "notifications/idle_app_name_notification_view.h",
    "notifications/kiosk_external_update_notification.cc",
    "notifications/kiosk_external_update_notification.h",
    "notifications/low_disk_notification.cc",
    "notifications/low_disk_notification.h",
    "notifications/multi_capture_notification.cc",
    "notifications/multi_capture_notification.h",
    "notifications/request_system_proxy_credentials_view.cc",
    "notifications/request_system_proxy_credentials_view.h",
    "notifications/screen_capture_notification_ui_ash.cc",
    "notifications/screen_capture_notification_ui_ash.h",
    "notifications/system_proxy_notification.cc",
    "notifications/system_proxy_notification.h",
    "notifications/tpm_auto_update_notification.cc",
    "notifications/tpm_auto_update_notification.h",
    "notifications/update_required_notification.cc",
    "notifications/update_required_notification.h",
    "os_feedback/chrome_os_feedback_delegate.cc",
    "os_feedback/chrome_os_feedback_delegate.h",
    "os_feedback/os_feedback_screenshot_manager.cc",
    "os_feedback/os_feedback_screenshot_manager.h",
    "ownership/fake_owner_settings_service.cc",
    "ownership/fake_owner_settings_service.h",
    "ownership/owner_key_loader.cc",
    "ownership/owner_key_loader.h",
    "ownership/owner_settings_service_ash.cc",
    "ownership/owner_settings_service_ash.h",
    "ownership/owner_settings_service_ash_factory.cc",
    "ownership/owner_settings_service_ash_factory.h",
    "pcie_peripheral/ash_usb_detector.cc",
    "pcie_peripheral/ash_usb_detector.h",
    "phonehub/browser_tabs_metadata_fetcher_impl.cc",
    "phonehub/browser_tabs_metadata_fetcher_impl.h",
    "phonehub/browser_tabs_model_provider_impl.cc",
    "phonehub/browser_tabs_model_provider_impl.h",
    "phonehub/camera_roll_download_manager_impl.cc",
    "phonehub/camera_roll_download_manager_impl.h",
    "phonehub/phone_hub_manager_factory.cc",
    "phonehub/phone_hub_manager_factory.h",
    "platform_keys/chaps_slot_session.cc",
    "platform_keys/chaps_slot_session.h",
    "platform_keys/chaps_util.cc",
    "platform_keys/chaps_util.h",
    "platform_keys/chaps_util_impl.cc",
    "platform_keys/chaps_util_impl.h",
    "platform_keys/key_permissions/arc_key_permissions_manager_delegate.cc",
    "platform_keys/key_permissions/arc_key_permissions_manager_delegate.h",
    "platform_keys/key_permissions/key_permissions_manager.h",
    "platform_keys/key_permissions/key_permissions_manager_impl.cc",
    "platform_keys/key_permissions/key_permissions_manager_impl.h",
    "platform_keys/key_permissions/key_permissions_policy_handler.cc",
    "platform_keys/key_permissions/key_permissions_policy_handler.h",
    "platform_keys/key_permissions/key_permissions_pref_util.cc",
    "platform_keys/key_permissions/key_permissions_pref_util.h",
    "platform_keys/key_permissions/key_permissions_service.cc",
    "platform_keys/key_permissions/key_permissions_service.h",
    "platform_keys/key_permissions/key_permissions_service_factory.cc",
    "platform_keys/key_permissions/key_permissions_service_factory.h",
    "platform_keys/key_permissions/key_permissions_service_impl.cc",
    "platform_keys/key_permissions/key_permissions_service_impl.h",
    "platform_keys/key_permissions/user_private_token_kpm_service_factory.cc",
    "platform_keys/key_permissions/user_private_token_kpm_service_factory.h",
    "platform_keys/platform_keys_service.cc",
    "platform_keys/platform_keys_service.h",
    "platform_keys/platform_keys_service_factory.cc",
    "platform_keys/platform_keys_service_factory.h",
    "platform_keys/platform_keys_service_nss.cc",
    "plugin_vm/plugin_vm_diagnostics.cc",
    "plugin_vm/plugin_vm_diagnostics.h",
    "plugin_vm/plugin_vm_drive_image_download_service.cc",
    "plugin_vm/plugin_vm_drive_image_download_service.h",
    "plugin_vm/plugin_vm_engagement_metrics_service.cc",
    "plugin_vm/plugin_vm_engagement_metrics_service.h",
    "plugin_vm/plugin_vm_features.cc",
    "plugin_vm/plugin_vm_features.h",
    "plugin_vm/plugin_vm_files.cc",
    "plugin_vm/plugin_vm_files.h",
    "plugin_vm/plugin_vm_image_download_client.cc",
    "plugin_vm/plugin_vm_image_download_client.h",
    "plugin_vm/plugin_vm_installer.cc",
    "plugin_vm/plugin_vm_installer.h",
    "plugin_vm/plugin_vm_installer_factory.cc",
    "plugin_vm/plugin_vm_installer_factory.h",
    "plugin_vm/plugin_vm_license_checker.cc",
    "plugin_vm/plugin_vm_license_checker.h",
    "plugin_vm/plugin_vm_manager.h",
    "plugin_vm/plugin_vm_manager_factory.cc",
    "plugin_vm/plugin_vm_manager_factory.h",
    "plugin_vm/plugin_vm_manager_impl.cc",
    "plugin_vm/plugin_vm_manager_impl.h",
    "plugin_vm/plugin_vm_metrics_util.cc",
    "plugin_vm/plugin_vm_metrics_util.h",
    "plugin_vm/plugin_vm_pref_names.cc",
    "plugin_vm/plugin_vm_pref_names.h",
    "plugin_vm/plugin_vm_uninstaller_notification.cc",
    "plugin_vm/plugin_vm_uninstaller_notification.h",
    "plugin_vm/plugin_vm_util.cc",
    "plugin_vm/plugin_vm_util.h",
    "policy/active_directory/active_directory_join_delegate.h",
    "policy/active_directory/active_directory_migration_manager.cc",
    "policy/active_directory/active_directory_migration_manager.h",
    "policy/active_directory/active_directory_policy_manager.cc",
    "policy/active_directory/active_directory_policy_manager.h",
    "policy/active_directory/component_active_directory_policy_retriever.cc",
    "policy/active_directory/component_active_directory_policy_retriever.h",
    "policy/active_directory/component_active_directory_policy_service.cc",
    "policy/active_directory/component_active_directory_policy_service.h",
    "policy/arc/android_management_client.cc",
    "policy/arc/android_management_client.h",
    "policy/core/browser_policy_connector_ash.cc",
    "policy/core/browser_policy_connector_ash.h",
    "policy/core/cached_policy_key_loader.cc",
    "policy/core/cached_policy_key_loader.h",
    "policy/core/device_attributes.h",
    "policy/core/device_attributes_fake.cc",
    "policy/core/device_attributes_fake.h",
    "policy/core/device_attributes_impl.cc",
    "policy/core/device_attributes_impl.h",
    "policy/core/device_cloud_policy_client_factory_ash.cc",
    "policy/core/device_cloud_policy_client_factory_ash.h",
    "policy/core/device_cloud_policy_manager_ash.cc",
    "policy/core/device_cloud_policy_manager_ash.h",
    "policy/core/device_cloud_policy_store_ash.cc",
    "policy/core/device_cloud_policy_store_ash.h",
    "policy/core/device_cloud_policy_validator.cc",
    "policy/core/device_cloud_policy_validator.h",
    "policy/core/device_local_account.cc",
    "policy/core/device_local_account.h",
    "policy/core/device_local_account_extension_tracker.cc",
    "policy/core/device_local_account_extension_tracker.h",
    "policy/core/device_local_account_external_cache.cc",
    "policy/core/device_local_account_external_cache.h",
    "policy/core/device_local_account_policy_broker.cc",
    "policy/core/device_local_account_policy_broker.h",
    "policy/core/device_local_account_policy_provider.cc",
    "policy/core/device_local_account_policy_provider.h",
    "policy/core/device_local_account_policy_service.cc",
    "policy/core/device_local_account_policy_service.h",
    "policy/core/device_local_account_policy_store.cc",
    "policy/core/device_local_account_policy_store.h",
    "policy/core/device_policy_decoder.cc",
    "policy/core/device_policy_decoder.h",
    "policy/core/device_policy_remover.h",
    "policy/core/dm_token_storage.cc",
    "policy/core/dm_token_storage.h",
    "policy/core/policy_oauth2_token_fetcher.cc",
    "policy/core/policy_oauth2_token_fetcher.h",
    "policy/core/policy_pref_names.cc",
    "policy/core/policy_pref_names.h",
    "policy/core/user_cloud_policy_manager_ash.cc",
    "policy/core/user_cloud_policy_manager_ash.h",
    "policy/core/user_cloud_policy_store_ash.cc",
    "policy/core/user_cloud_policy_store_ash.h",
    "policy/core/user_cloud_policy_token_forwarder.cc",
    "policy/core/user_cloud_policy_token_forwarder.h",
    "policy/core/user_cloud_policy_token_forwarder_factory.cc",
    "policy/core/user_cloud_policy_token_forwarder_factory.h",
    "policy/core/user_policy_manager_builder_ash.cc",
    "policy/core/user_policy_manager_builder_ash.h",
    "policy/dev_mode/dev_mode_policy_util.cc",
    "policy/dev_mode/dev_mode_policy_util.h",
    "policy/display/display_resolution_handler.cc",
    "policy/display/display_resolution_handler.h",
    "policy/display/display_rotation_default_handler.cc",
    "policy/display/display_rotation_default_handler.h",
    "policy/display/display_settings_handler.cc",
    "policy/display/display_settings_handler.h",
    "policy/dlp/dlp_content_manager_ash.cc",
    "policy/dlp/dlp_content_manager_ash.h",
    "policy/dlp/dlp_files_controller.cc",
    "policy/dlp/dlp_files_controller.h",
    "policy/dlp/dlp_files_event_storage.cc",
    "policy/dlp/dlp_files_event_storage.h",
    "policy/dlp/dlp_window_observer.cc",
    "policy/dlp/dlp_window_observer.h",
    "policy/enrollment/account_status_check_fetcher.cc",
    "policy/enrollment/account_status_check_fetcher.h",
    "policy/enrollment/auto_enrollment_client.h",
    "policy/enrollment/auto_enrollment_client_impl.cc",
    "policy/enrollment/auto_enrollment_client_impl.h",
    "policy/enrollment/auto_enrollment_state_message_processor.cc",
    "policy/enrollment/auto_enrollment_state_message_processor.h",
    "policy/enrollment/auto_enrollment_type_checker.cc",
    "policy/enrollment/auto_enrollment_type_checker.h",
    "policy/enrollment/device_cloud_policy_initializer.cc",
    "policy/enrollment/device_cloud_policy_initializer.h",
    "policy/enrollment/enrollment_config.cc",
    "policy/enrollment/enrollment_config.h",
    "policy/enrollment/enrollment_handler.cc",
    "policy/enrollment/enrollment_handler.h",
    "policy/enrollment/enrollment_requisition_manager.cc",
    "policy/enrollment/enrollment_requisition_manager.h",
    "policy/enrollment/enrollment_status.cc",
    "policy/enrollment/enrollment_status.h",
    "policy/enrollment/fake_auto_enrollment_client.cc",
    "policy/enrollment/fake_auto_enrollment_client.h",
    "policy/enrollment/psm/fake_rlwe_client.cc",
    "policy/enrollment/psm/fake_rlwe_client.h",
    "policy/enrollment/psm/fake_rlwe_dmserver_client.cc",
    "policy/enrollment/psm/fake_rlwe_dmserver_client.h",
    "policy/enrollment/psm/rlwe_client.h",
    "policy/enrollment/psm/rlwe_client_impl.cc",
    "policy/enrollment/psm/rlwe_client_impl.h",
    "policy/enrollment/psm/rlwe_dmserver_client.h",
    "policy/enrollment/psm/rlwe_dmserver_client_impl.cc",
    "policy/enrollment/psm/rlwe_dmserver_client_impl.h",
    "policy/enrollment/psm/rlwe_id_provider.h",
    "policy/enrollment/psm/rlwe_id_provider_impl.cc",
    "policy/enrollment/psm/rlwe_id_provider_impl.h",
    "policy/enrollment/psm/testing_rlwe_id_provider.cc",
    "policy/enrollment/psm/testing_rlwe_id_provider.h",
    "policy/enrollment/tpm_enrollment_key_signing_service.cc",
    "policy/enrollment/tpm_enrollment_key_signing_service.h",
    "policy/external_data/cloud_external_data_manager_base.cc",
    "policy/external_data/cloud_external_data_manager_base.h",
    "policy/external_data/cloud_external_data_policy_observer.cc",
    "policy/external_data/cloud_external_data_policy_observer.h",
    "policy/external_data/device_cloud_external_data_policy_observer.cc",
    "policy/external_data/device_cloud_external_data_policy_observer.h",
    "policy/external_data/device_local_account_external_data_manager.cc",
    "policy/external_data/device_local_account_external_data_manager.h",
    "policy/external_data/device_local_account_external_data_service.cc",
    "policy/external_data/device_local_account_external_data_service.h",
    "policy/external_data/device_policy_cloud_external_data_manager.cc",
    "policy/external_data/device_policy_cloud_external_data_manager.h",
    "policy/external_data/handlers/cloud_external_data_policy_handler.cc",
    "policy/external_data/handlers/cloud_external_data_policy_handler.h",
    "policy/external_data/handlers/crostini_ansible_playbook_external_data_handler.cc",
    "policy/external_data/handlers/crostini_ansible_playbook_external_data_handler.h",
    "policy/external_data/handlers/device_cloud_external_data_policy_handler.cc",
    "policy/external_data/handlers/device_cloud_external_data_policy_handler.h",
    "policy/external_data/handlers/device_print_servers_external_data_handler.cc",
    "policy/external_data/handlers/device_print_servers_external_data_handler.h",
    "policy/external_data/handlers/device_printers_external_data_handler.cc",
    "policy/external_data/handlers/device_printers_external_data_handler.h",
    "policy/external_data/handlers/device_wallpaper_image_external_data_handler.cc",
    "policy/external_data/handlers/device_wallpaper_image_external_data_handler.h",
    "policy/external_data/handlers/device_wilco_dtc_configuration_external_data_handler.cc",
    "policy/external_data/handlers/device_wilco_dtc_configuration_external_data_handler.h",
    "policy/external_data/handlers/preconfigured_desk_templates_external_data_handler.cc",
    "policy/external_data/handlers/preconfigured_desk_templates_external_data_handler.h",
    "policy/external_data/handlers/print_servers_external_data_handler.cc",
    "policy/external_data/handlers/print_servers_external_data_handler.h",
    "policy/external_data/handlers/printers_external_data_handler.cc",
    "policy/external_data/handlers/printers_external_data_handler.h",
    "policy/external_data/handlers/user_avatar_image_external_data_handler.cc",
    "policy/external_data/handlers/user_avatar_image_external_data_handler.h",
    "policy/external_data/handlers/wallpaper_image_external_data_handler.cc",
    "policy/external_data/handlers/wallpaper_image_external_data_handler.h",
    "policy/external_data/user_cloud_external_data_manager.cc",
    "policy/external_data/user_cloud_external_data_manager.h",
    "policy/handlers/adb_sideloading_allowance_mode_policy_handler.cc",
    "policy/handlers/adb_sideloading_allowance_mode_policy_handler.h",
    "policy/handlers/bluetooth_policy_handler.cc",
    "policy/handlers/bluetooth_policy_handler.h",
    "policy/handlers/configuration_policy_handler_ash.cc",
    "policy/handlers/configuration_policy_handler_ash.h",
    "policy/handlers/device_dock_mac_address_source_handler.cc",
    "policy/handlers/device_dock_mac_address_source_handler.h",
    "policy/handlers/device_name_policy_handler.cc",
    "policy/handlers/device_name_policy_handler.h",
    "policy/handlers/device_name_policy_handler_impl.cc",
    "policy/handlers/device_name_policy_handler_impl.h",
    "policy/handlers/device_name_policy_handler_name_generator.cc",
    "policy/handlers/device_name_policy_handler_name_generator.h",
    "policy/handlers/device_wifi_allowed_handler.cc",
    "policy/handlers/device_wifi_allowed_handler.h",
    "policy/handlers/lacros_availability_policy_handler.cc",
    "policy/handlers/lacros_availability_policy_handler.h",
    "policy/handlers/lock_to_single_user_manager.cc",
    "policy/handlers/lock_to_single_user_manager.h",
    "policy/handlers/minimum_version_policy_handler.cc",
    "policy/handlers/minimum_version_policy_handler.h",
    "policy/handlers/minimum_version_policy_handler_delegate_impl.cc",
    "policy/handlers/minimum_version_policy_handler_delegate_impl.h",
    "policy/handlers/powerwash_requirements_checker.cc",
    "policy/handlers/powerwash_requirements_checker.h",
    "policy/handlers/system_proxy_handler.cc",
    "policy/handlers/system_proxy_handler.h",
    "policy/handlers/tpm_auto_update_mode_policy_handler.cc",
    "policy/handlers/tpm_auto_update_mode_policy_handler.h",
    "policy/invalidation/affiliated_cloud_policy_invalidator.cc",
    "policy/invalidation/affiliated_cloud_policy_invalidator.h",
    "policy/invalidation/affiliated_invalidation_service_provider.cc",
    "policy/invalidation/affiliated_invalidation_service_provider.h",
    "policy/invalidation/affiliated_invalidation_service_provider_impl.cc",
    "policy/invalidation/affiliated_invalidation_service_provider_impl.h",
    "policy/login/login_profile_policy_provider.cc",
    "policy/login/login_profile_policy_provider.h",
    "policy/login/wildcard_login_checker.cc",
    "policy/login/wildcard_login_checker.h",
    "policy/networking/euicc_status_uploader.cc",
    "policy/networking/euicc_status_uploader.h",
    "policy/off_hours/device_off_hours_controller.cc",
    "policy/off_hours/device_off_hours_controller.h",
    "policy/off_hours/off_hours_policy_applier.cc",
    "policy/off_hours/off_hours_policy_applier.h",
    "policy/off_hours/off_hours_proto_parser.cc",
    "policy/off_hours/off_hours_proto_parser.h",
    "policy/remote_commands/affiliated_remote_commands_invalidator.cc",
    "policy/remote_commands/affiliated_remote_commands_invalidator.h",
    "policy/remote_commands/crd_host_delegate.cc",
    "policy/remote_commands/crd_host_delegate.h",
    "policy/remote_commands/crd_logging.h",
    "policy/remote_commands/device_command_fetch_status_job.cc",
    "policy/remote_commands/device_command_fetch_status_job.h",
    "policy/remote_commands/device_command_get_available_routines_job.cc",
    "policy/remote_commands/device_command_get_available_routines_job.h",
    "policy/remote_commands/device_command_get_routine_update_job.cc",
    "policy/remote_commands/device_command_get_routine_update_job.h",
    "policy/remote_commands/device_command_reboot_job.cc",
    "policy/remote_commands/device_command_reboot_job.h",
    "policy/remote_commands/device_command_refresh_machine_certificate_job.cc",
    "policy/remote_commands/device_command_refresh_machine_certificate_job.h",
    "policy/remote_commands/device_command_remote_powerwash_job.cc",
    "policy/remote_commands/device_command_remote_powerwash_job.h",
    "policy/remote_commands/device_command_reset_euicc_job.cc",
    "policy/remote_commands/device_command_reset_euicc_job.h",
    "policy/remote_commands/device_command_run_routine_job.cc",
    "policy/remote_commands/device_command_run_routine_job.h",
    "policy/remote_commands/device_command_screenshot_job.cc",
    "policy/remote_commands/device_command_screenshot_job.h",
    "policy/remote_commands/device_command_set_volume_job.cc",
    "policy/remote_commands/device_command_set_volume_job.h",
    "policy/remote_commands/device_command_start_crd_session_job.cc",
    "policy/remote_commands/device_command_start_crd_session_job.h",
    "policy/remote_commands/device_command_wipe_users_job.cc",
    "policy/remote_commands/device_command_wipe_users_job.h",
    "policy/remote_commands/device_commands_factory_ash.cc",
    "policy/remote_commands/device_commands_factory_ash.h",
    "policy/remote_commands/screenshot_delegate.cc",
    "policy/remote_commands/screenshot_delegate.h",
    "policy/remote_commands/user_command_arc_job.cc",
    "policy/remote_commands/user_command_arc_job.h",
    "policy/remote_commands/user_commands_factory_ash.cc",
    "policy/remote_commands/user_commands_factory_ash.h",
    "policy/reporting/app_install_event_log_manager_wrapper.cc",
    "policy/reporting/app_install_event_log_manager_wrapper.h",
    "policy/reporting/arc_app_install_event_log.cc",
    "policy/reporting/arc_app_install_event_log.h",
    "policy/reporting/arc_app_install_event_log_collector.cc",
    "policy/reporting/arc_app_install_event_log_collector.h",
    "policy/reporting/arc_app_install_event_log_manager.cc",
    "policy/reporting/arc_app_install_event_log_manager.h",
    "policy/reporting/arc_app_install_event_log_uploader.cc",
    "policy/reporting/arc_app_install_event_log_uploader.h",
    "policy/reporting/arc_app_install_event_logger.cc",
    "policy/reporting/arc_app_install_event_logger.h",
    "policy/reporting/arc_app_install_policy_data.cc",
    "policy/reporting/arc_app_install_policy_data.h",
    "policy/reporting/arc_app_install_policy_data_helper.cc",
    "policy/reporting/arc_app_install_policy_data_helper.h",
    "policy/reporting/install_event_log.h",
    "policy/reporting/install_event_log_collector_base.cc",
    "policy/reporting/install_event_log_collector_base.h",
    "policy/reporting/install_event_log_manager.cc",
    "policy/reporting/install_event_log_manager.h",
    "policy/reporting/install_event_log_uploader_base.cc",
    "policy/reporting/install_event_log_uploader_base.h",
    "policy/reporting/install_event_log_util.cc",
    "policy/reporting/install_event_log_util.h",
    "policy/reporting/install_event_logger_base.h",
    "policy/reporting/metrics_reporting/audio/audio_events_observer.cc",
    "policy/reporting/metrics_reporting/audio/audio_events_observer.h",
    "policy/reporting/metrics_reporting/cros_healthd_metric_sampler.cc",
    "policy/reporting/metrics_reporting/cros_healthd_metric_sampler.h",
    "policy/reporting/metrics_reporting/cros_reporting_settings.cc",
    "policy/reporting/metrics_reporting/cros_reporting_settings.h",
    "policy/reporting/metrics_reporting/metric_reporting_manager.cc",
    "policy/reporting/metrics_reporting/metric_reporting_manager.h",
    "policy/reporting/metrics_reporting/mojo_service_events_observer_base.h",
    "policy/reporting/metrics_reporting/network/https_latency_sampler.cc",
    "policy/reporting/metrics_reporting/network/https_latency_sampler.h",
    "policy/reporting/metrics_reporting/network/network_events_observer.cc",
    "policy/reporting/metrics_reporting/network/network_events_observer.h",
    "policy/reporting/metrics_reporting/network/network_info_sampler.cc",
    "policy/reporting/metrics_reporting/network/network_info_sampler.h",
    "policy/reporting/metrics_reporting/network/network_telemetry_sampler.cc",
    "policy/reporting/metrics_reporting/network/network_telemetry_sampler.h",
    "policy/reporting/metrics_reporting/network/wifi_signal_strength_rssi_fetcher.cc",
    "policy/reporting/metrics_reporting/network/wifi_signal_strength_rssi_fetcher.h",
    "policy/reporting/metrics_reporting/usb/usb_events_observer.cc",
    "policy/reporting/metrics_reporting/usb/usb_events_observer.h",
    "policy/reporting/remoting_host_event_reporter_delegate_impl.cc",
    "policy/reporting/remoting_host_event_reporter_delegate_impl.h",
    "policy/reporting/single_arc_app_install_event_log.cc",
    "policy/reporting/single_arc_app_install_event_log.h",
    "policy/reporting/single_extension_install_event_log.cc",
    "policy/reporting/single_extension_install_event_log.h",
    "policy/reporting/single_install_event_log.h",
    "policy/reporting/user_added_removed/user_added_removed_reporter.cc",
    "policy/reporting/user_added_removed/user_added_removed_reporter.h",
    "policy/reporting/user_event_reporter_helper.cc",
    "policy/reporting/user_event_reporter_helper.h",
    "policy/rsu/lookup_key_uploader.cc",
    "policy/rsu/lookup_key_uploader.h",
    "policy/scheduled_task_handler/device_scheduled_reboot_handler.cc",
    "policy/scheduled_task_handler/device_scheduled_reboot_handler.h",
    "policy/scheduled_task_handler/device_scheduled_update_checker.cc",
    "policy/scheduled_task_handler/device_scheduled_update_checker.h",
    "policy/scheduled_task_handler/os_and_policies_update_checker.cc",
    "policy/scheduled_task_handler/os_and_policies_update_checker.h",
    "policy/scheduled_task_handler/reboot_notifications_scheduler.cc",
    "policy/scheduled_task_handler/reboot_notifications_scheduler.h",
    "policy/scheduled_task_handler/scheduled_task_executor.cc",
    "policy/scheduled_task_handler/scheduled_task_executor.h",
    "policy/scheduled_task_handler/scheduled_task_executor_impl.cc",
    "policy/scheduled_task_handler/scheduled_task_executor_impl.h",
    "policy/scheduled_task_handler/scheduled_task_util.cc",
    "policy/scheduled_task_handler/scheduled_task_util.h",
    "policy/scheduled_task_handler/scoped_wake_lock.cc",
    "policy/scheduled_task_handler/scoped_wake_lock.h",
    "policy/scheduled_task_handler/task_executor_with_retries.cc",
    "policy/scheduled_task_handler/task_executor_with_retries.h",
    "policy/server_backed_state/active_directory_device_state_uploader.cc",
    "policy/server_backed_state/active_directory_device_state_uploader.h",
    "policy/server_backed_state/server_backed_device_state.cc",
    "policy/server_backed_state/server_backed_device_state.h",
    "policy/server_backed_state/server_backed_state_keys_broker.cc",
    "policy/server_backed_state/server_backed_state_keys_broker.h",
    "policy/status_collector/activity_storage.cc",
    "policy/status_collector/activity_storage.h",
    "policy/status_collector/app_info_generator.cc",
    "policy/status_collector/app_info_generator.h",
    "policy/status_collector/child_activity_storage.cc",
    "policy/status_collector/child_activity_storage.h",
    "policy/status_collector/child_status_collector.cc",
    "policy/status_collector/child_status_collector.h",
    "policy/status_collector/device_status_collector.cc",
    "policy/status_collector/device_status_collector.h",
    "policy/status_collector/enterprise_activity_storage.cc",
    "policy/status_collector/enterprise_activity_storage.h",
    "policy/status_collector/interval_map.h",
    "policy/status_collector/managed_session_service.cc",
    "policy/status_collector/managed_session_service.h",
    "policy/status_collector/status_collector.cc",
    "policy/status_collector/status_collector.h",
    "policy/status_collector/status_collector_state.cc",
    "policy/status_collector/status_collector_state.h",
    "policy/status_collector/tpm_status_combiner.cc",
    "policy/status_collector/tpm_status_combiner.h",
    "policy/uploading/heartbeat_scheduler.cc",
    "policy/uploading/heartbeat_scheduler.h",
    "policy/uploading/status_uploader.cc",
    "policy/uploading/status_uploader.h",
    "policy/uploading/system_log_uploader.cc",
    "policy/uploading/system_log_uploader.h",
    "policy/uploading/upload_job.h",
    "policy/uploading/upload_job_impl.cc",
    "policy/uploading/upload_job_impl.h",
    "policy/value_validation/onc_device_policy_value_validator.cc",
    "policy/value_validation/onc_device_policy_value_validator.h",
    "policy/value_validation/onc_policy_value_validator_base.h",
    "policy/value_validation/onc_user_policy_value_validator.cc",
    "policy/value_validation/onc_user_policy_value_validator.h",
    "power/auto_screen_brightness/adapter.cc",
    "power/auto_screen_brightness/adapter.h",
    "power/auto_screen_brightness/als_file_reader.cc",
    "power/auto_screen_brightness/als_file_reader.h",
    "power/auto_screen_brightness/als_reader.cc",
    "power/auto_screen_brightness/als_reader.h",
    "power/auto_screen_brightness/als_samples.cc",
    "power/auto_screen_brightness/als_samples.h",
    "power/auto_screen_brightness/brightness_monitor.h",
    "power/auto_screen_brightness/brightness_monitor_impl.cc",
    "power/auto_screen_brightness/brightness_monitor_impl.h",
    "power/auto_screen_brightness/controller.cc",
    "power/auto_screen_brightness/controller.h",
    "power/auto_screen_brightness/fake_brightness_monitor.cc",
    "power/auto_screen_brightness/fake_brightness_monitor.h",
    "power/auto_screen_brightness/fake_light_provider.cc",
    "power/auto_screen_brightness/fake_light_provider.h",
    "power/auto_screen_brightness/fake_model_config_loader.cc",
    "power/auto_screen_brightness/fake_model_config_loader.h",
    "power/auto_screen_brightness/fake_observer.cc",
    "power/auto_screen_brightness/fake_observer.h",
    "power/auto_screen_brightness/gaussian_trainer.cc",
    "power/auto_screen_brightness/gaussian_trainer.h",
    "power/auto_screen_brightness/light_provider_mojo.cc",
    "power/auto_screen_brightness/light_provider_mojo.h",
    "power/auto_screen_brightness/light_samples_observer.cc",
    "power/auto_screen_brightness/light_samples_observer.h",
    "power/auto_screen_brightness/metrics_reporter.cc",
    "power/auto_screen_brightness/metrics_reporter.h",
    "power/auto_screen_brightness/model_config.cc",
    "power/auto_screen_brightness/model_config.h",
    "power/auto_screen_brightness/model_config_loader.h",
    "power/auto_screen_brightness/model_config_loader_impl.cc",
    "power/auto_screen_brightness/model_config_loader_impl.h",
    "power/auto_screen_brightness/modeller.h",
    "power/auto_screen_brightness/modeller_impl.cc",
    "power/auto_screen_brightness/modeller_impl.h",
    "power/auto_screen_brightness/monotone_cubic_spline.cc",
    "power/auto_screen_brightness/monotone_cubic_spline.h",
    "power/auto_screen_brightness/trainer.h",
    "power/auto_screen_brightness/utils.cc",
    "power/auto_screen_brightness/utils.h",
    "power/cpu_data_collector.cc",
    "power/cpu_data_collector.h",
    "power/extension_event_observer.cc",
    "power/extension_event_observer.h",
    "power/freezer_cgroup_process_manager.cc",
    "power/freezer_cgroup_process_manager.h",
    "power/idle_action_warning_dialog_view.cc",
    "power/idle_action_warning_dialog_view.h",
    "power/idle_action_warning_observer.cc",
    "power/idle_action_warning_observer.h",
    "power/ml/adaptive_screen_brightness_manager.cc",
    "power/ml/adaptive_screen_brightness_manager.h",
    "power/ml/adaptive_screen_brightness_ukm_logger.h",
    "power/ml/adaptive_screen_brightness_ukm_logger_impl.cc",
    "power/ml/adaptive_screen_brightness_ukm_logger_impl.h",
    "power/ml/boot_clock.cc",
    "power/ml/boot_clock.h",
    "power/ml/idle_event_notifier.cc",
    "power/ml/idle_event_notifier.h",
    "power/ml/recent_events_counter.cc",
    "power/ml/recent_events_counter.h",
    "power/ml/user_activity_controller.cc",
    "power/ml/user_activity_controller.h",
    "power/ml/user_activity_manager.cc",
    "power/ml/user_activity_manager.h",
    "power/ml/user_activity_ukm_logger.h",
    "power/ml/user_activity_ukm_logger_impl.cc",
    "power/ml/user_activity_ukm_logger_impl.h",
    "power/power_data_collector.cc",
    "power/power_data_collector.h",
    "power/power_metrics_reporter.cc",
    "power/power_metrics_reporter.h",
    "power/process_data_collector.cc",
    "power/process_data_collector.h",
    "power/renderer_freezer.cc",
    "power/renderer_freezer.h",
    "power/smart_charging/smart_charging_manager.cc",
    "power/smart_charging/smart_charging_manager.h",
    "power/smart_charging/smart_charging_ukm_logger.cc",
    "power/smart_charging/smart_charging_ukm_logger.h",
    "preferences.cc",
    "preferences.h",
    "printing/automatic_usb_printer_configurer.cc",
    "printing/automatic_usb_printer_configurer.h",
    "printing/bulk_printers_calculator.cc",
    "printing/bulk_printers_calculator.h",
    "printing/bulk_printers_calculator_factory.cc",
    "printing/bulk_printers_calculator_factory.h",
    "printing/calculators_policies_binder.cc",
    "printing/calculators_policies_binder.h",
    "printing/cups_print_job.cc",
    "printing/cups_print_job.h",
    "printing/cups_print_job_manager.cc",
    "printing/cups_print_job_manager.h",
    "printing/cups_print_job_manager_factory.cc",
    "printing/cups_print_job_manager_factory.h",
    "printing/cups_print_job_notification.cc",
    "printing/cups_print_job_notification.h",
    "printing/cups_print_job_notification_manager.cc",
    "printing/cups_print_job_notification_manager.h",
    "printing/cups_printer_status_creator.cc",
    "printing/cups_printer_status_creator.h",
    "printing/cups_printers_manager.cc",
    "printing/cups_printers_manager.h",
    "printing/cups_printers_manager_factory.cc",
    "printing/cups_printers_manager_factory.h",
    "printing/cups_printers_manager_proxy.cc",
    "printing/cups_printers_manager_proxy.h",
    "printing/enterprise_printers_provider.cc",
    "printing/enterprise_printers_provider.h",
    "printing/history/print_job_database.h",
    "printing/history/print_job_database_impl.cc",
    "printing/history/print_job_database_impl.h",
    "printing/history/print_job_history_cleaner.cc",
    "printing/history/print_job_history_cleaner.h",
    "printing/history/print_job_history_service.cc",
    "printing/history/print_job_history_service.h",
    "printing/history/print_job_history_service_factory.cc",
    "printing/history/print_job_history_service_factory.h",
    "printing/history/print_job_history_service_impl.cc",
    "printing/history/print_job_history_service_impl.h",
    "printing/history/print_job_info_proto_conversions.cc",
    "printing/history/print_job_info_proto_conversions.h",
    "printing/history/print_job_reporting_service.h",
    "printing/history/print_job_reporting_service_factory.cc",
    "printing/history/print_job_reporting_service_factory.h",
    "printing/history/print_job_reporting_service_impl.cc",
    "printing/oauth2/authorization_server_data.cc",
    "printing/oauth2/authorization_server_data.h",
    "printing/oauth2/authorization_server_session.cc",
    "printing/oauth2/authorization_server_session.h",
    "printing/oauth2/authorization_zone.h",
    "printing/oauth2/authorization_zone_impl.cc",
    "printing/oauth2/authorization_zone_impl.h",
    "printing/oauth2/authorization_zones_manager.cc",
    "printing/oauth2/authorization_zones_manager.h",
    "printing/oauth2/authorization_zones_manager_factory.cc",
    "printing/oauth2/authorization_zones_manager_factory.h",
    "printing/oauth2/constants.h",
    "printing/oauth2/http_exchange.cc",
    "printing/oauth2/http_exchange.h",
    "printing/oauth2/ipp_endpoint_token_fetcher.cc",
    "printing/oauth2/ipp_endpoint_token_fetcher.h",
    "printing/oauth2/log_entry.cc",
    "printing/oauth2/log_entry.h",
    "printing/oauth2/profile_auth_servers_sync_bridge.cc",
    "printing/oauth2/profile_auth_servers_sync_bridge.h",
    "printing/oauth2/signin_dialog.cc",
    "printing/oauth2/signin_dialog.h",
    "printing/oauth2/status_code.cc",
    "printing/oauth2/status_code.h",
    "printing/ppd_provider_factory.cc",
    "printing/ppd_provider_factory.h",
    "printing/ppd_resolution_state.cc",
    "printing/ppd_resolution_state.h",
    "printing/ppd_resolution_tracker.cc",
    "printing/ppd_resolution_tracker.h",
    "printing/print_management/print_job_info_mojom_conversions.cc",
    "printing/print_management/print_job_info_mojom_conversions.h",
    "printing/print_management/printing_manager.cc",
    "printing/print_management/printing_manager.h",
    "printing/print_management/printing_manager_factory.cc",
    "printing/print_management/printing_manager_factory.h",
    "printing/print_server.cc",
    "printing/print_server.h",
    "printing/print_servers_manager.cc",
    "printing/print_servers_manager.h",
    "printing/print_servers_policy_provider.cc",
    "printing/print_servers_policy_provider.h",
    "printing/print_servers_provider.cc",
    "printing/print_servers_provider.h",
    "printing/print_servers_provider_factory.cc",
    "printing/print_servers_provider_factory.h",
    "printing/printer_authenticator.cc",
    "printing/printer_authenticator.h",
    "printing/printer_configurer.cc",
    "printing/printer_configurer.h",
    "printing/printer_detector.h",
    "printing/printer_event_tracker.cc",
    "printing/printer_event_tracker.h",
    "printing/printer_event_tracker_factory.cc",
    "printing/printer_event_tracker_factory.h",
    "printing/printer_info.h",
    "printing/printer_installation_manager.h",
    "printing/printer_metrics_provider.cc",
    "printing/printer_metrics_provider.h",
    "printing/printer_setup_util.cc",
    "printing/printer_setup_util.h",
    "printing/printers_map.cc",
    "printing/printers_map.h",
    "printing/printers_sync_bridge.cc",
    "printing/printers_sync_bridge.h",
    "printing/server_printers_fetcher.cc",
    "printing/server_printers_fetcher.h",
    "printing/server_printers_provider.cc",
    "printing/server_printers_provider.h",
    "printing/specifics_translation.cc",
    "printing/specifics_translation.h",
    "printing/synced_printers_manager.cc",
    "printing/synced_printers_manager.h",
    "printing/synced_printers_manager_factory.cc",
    "printing/synced_printers_manager_factory.h",
    "printing/usb_printer_detector.cc",
    "printing/usb_printer_detector.h",
    "printing/usb_printer_notification.cc",
    "printing/usb_printer_notification.h",
    "printing/usb_printer_notification_controller.cc",
    "printing/usb_printer_notification_controller.h",
    "printing/usb_printer_util.cc",
    "printing/usb_printer_util.h",
    "printing/zeroconf_printer_detector.cc",
    "printing/zeroconf_printer_detector.h",
    "privacy_hub/privacy_hub_util.cc",
    "privacy_hub/privacy_hub_util.h",
    "process_snapshot_server.cc",
    "process_snapshot_server.h",
    "profiles/browser_context_helper_delegate_impl.cc",
    "profiles/browser_context_helper_delegate_impl.h",
    "profiles/profile_helper.cc",
    "profiles/profile_helper.h",
    "profiles/signin_profile_handler.cc",
    "profiles/signin_profile_handler.h",
    "psi_memory_metrics.cc",
    "psi_memory_metrics.h",
    "quick_pair/fast_pair_support_utils.cc",
    "quick_pair/fast_pair_support_utils.h",
    "quick_pair/quick_pair_browser_delegate_impl.cc",
    "quick_pair/quick_pair_browser_delegate_impl.h",
    "release_notes/release_notes_notification.cc",
    "release_notes/release_notes_notification.h",
    "release_notes/release_notes_storage.cc",
    "release_notes/release_notes_storage.h",
    "remote_apps/id_generator.cc",
    "remote_apps/id_generator.h",
    "remote_apps/remote_apps_impl.cc",
    "remote_apps/remote_apps_impl.h",
    "remote_apps/remote_apps_manager.cc",
    "remote_apps/remote_apps_manager.h",
    "remote_apps/remote_apps_manager_factory.cc",
    "remote_apps/remote_apps_manager_factory.h",
    "remote_apps/remote_apps_model.cc",
    "remote_apps/remote_apps_model.h",
    "remote_apps/remote_apps_types.h",
    "reset/metrics.h",
    "scanning/chrome_scanning_app_delegate.cc",
    "scanning/chrome_scanning_app_delegate.h",
    "scanning/lorgnette_scanner_manager.cc",
    "scanning/lorgnette_scanner_manager.h",
    "scanning/lorgnette_scanner_manager_factory.cc",
    "scanning/lorgnette_scanner_manager_factory.h",
    "scanning/lorgnette_scanner_manager_util.cc",
    "scanning/lorgnette_scanner_manager_util.h",
    "scanning/scan_service.cc",
    "scanning/scan_service.h",
    "scanning/scan_service_factory.cc",
    "scanning/scan_service_factory.h",
    "scanning/scanner_detector.h",
    "scanning/scanning_file_path_helper.cc",
    "scanning/scanning_file_path_helper.h",
    "scanning/zeroconf_scanner_detector.cc",
    "scanning/zeroconf_scanner_detector.h",
    "scanning/zeroconf_scanner_detector_utils.cc",
    "scanning/zeroconf_scanner_detector_utils.h",
    "scheduler_configuration_manager.cc",
    "scheduler_configuration_manager.h",
    "secure_channel/nearby_connection_broker.cc",
    "secure_channel/nearby_connection_broker.h",
    "secure_channel/nearby_connection_broker_impl.cc",
    "secure_channel/nearby_connection_broker_impl.h",
    "secure_channel/nearby_connector_factory.cc",
    "secure_channel/nearby_connector_factory.h",
    "secure_channel/nearby_connector_impl.cc",
    "secure_channel/nearby_connector_impl.h",
    "secure_channel/nearby_endpoint_finder.cc",
    "secure_channel/nearby_endpoint_finder.h",
    "secure_channel/nearby_endpoint_finder_impl.cc",
    "secure_channel/nearby_endpoint_finder_impl.h",
    "secure_channel/secure_channel_client_provider.cc",
    "secure_channel/secure_channel_client_provider.h",
    "secure_channel/util/histogram_util.cc",
    "secure_channel/util/histogram_util.h",
    "session_length_limiter.cc",
    "session_length_limiter.h",
    "set_time_dialog.cc",
    "set_time_dialog.h",
    "settings/about_flags.cc",
    "settings/about_flags.h",
    "settings/cros_settings.cc",
    "settings/cros_settings.h",
    "settings/device_settings_cache.cc",
    "settings/device_settings_cache.h",
    "settings/device_settings_provider.cc",
    "settings/device_settings_provider.h",
    "settings/device_settings_service.cc",
    "settings/device_settings_service.h",
    "settings/hardware_data_usage_controller.cc",
    "settings/hardware_data_usage_controller.h",
    "settings/owner_pending_setting_controller.cc",
    "settings/owner_pending_setting_controller.h",
    "settings/session_manager_operation.cc",
    "settings/session_manager_operation.h",
    "settings/shutdown_policy_forwarder.cc",
    "settings/shutdown_policy_forwarder.h",
    "settings/shutdown_policy_handler.cc",
    "settings/shutdown_policy_handler.h",
    "settings/stats_reporting_controller.cc",
    "settings/stats_reporting_controller.h",
    "settings/stub_cros_settings_provider.cc",
    "settings/stub_cros_settings_provider.h",
    "settings/supervised_user_cros_settings_provider.cc",
    "settings/supervised_user_cros_settings_provider.h",
    "settings/token_encryptor.cc",
    "settings/token_encryptor.h",
    "sharesheet/copy_to_clipboard_share_action.cc",
    "sharesheet/copy_to_clipboard_share_action.h",
    "sharesheet/drive_share_action.cc",
    "sharesheet/drive_share_action.h",
    "shimless_rma/chrome_shimless_rma_delegate.cc",
    "shimless_rma/chrome_shimless_rma_delegate.h",
    "shortcut_mapping_pref_service.cc",
    "shortcut_mapping_pref_service.h",
    "smb_client/discovery/host_locator.h",
    "smb_client/discovery/in_memory_host_locator.cc",
    "smb_client/discovery/in_memory_host_locator.h",
    "smb_client/discovery/mdns_host_locator.cc",
    "smb_client/discovery/mdns_host_locator.h",
    "smb_client/discovery/netbios_client.cc",
    "smb_client/discovery/netbios_client.h",
    "smb_client/discovery/netbios_client_interface.h",
    "smb_client/discovery/netbios_host_locator.cc",
    "smb_client/discovery/netbios_host_locator.h",
    "smb_client/discovery/network_scanner.cc",
    "smb_client/discovery/network_scanner.h",
    "smb_client/fileapi/smbfs_async_file_util.cc",
    "smb_client/fileapi/smbfs_async_file_util.h",
    "smb_client/fileapi/smbfs_file_system_backend_delegate.cc",
    "smb_client/fileapi/smbfs_file_system_backend_delegate.h",
    "smb_client/smb_constants.cc",
    "smb_client/smb_constants.h",
    "smb_client/smb_errors.cc",
    "smb_client/smb_errors.h",
    "smb_client/smb_file_system.cc",
    "smb_client/smb_file_system.h",
    "smb_client/smb_file_system_id.cc",
    "smb_client/smb_file_system_id.h",
    "smb_client/smb_kerberos_credentials_updater.cc",
    "smb_client/smb_kerberos_credentials_updater.h",
    "smb_client/smb_persisted_share_registry.cc",
    "smb_client/smb_persisted_share_registry.h",
    "smb_client/smb_provider.cc",
    "smb_client/smb_provider.h",
    "smb_client/smb_service.cc",
    "smb_client/smb_service.h",
    "smb_client/smb_service_factory.cc",
    "smb_client/smb_service_factory.h",
    "smb_client/smb_service_helper.cc",
    "smb_client/smb_service_helper.h",
    "smb_client/smb_share_finder.cc",
    "smb_client/smb_share_finder.h",
    "smb_client/smb_share_info.cc",
    "smb_client/smb_share_info.h",
    "smb_client/smb_url.cc",
    "smb_client/smb_url.h",
    "smb_client/smbfs_share.cc",
    "smb_client/smbfs_share.h",
    "startup_settings_cache.cc",
    "startup_settings_cache.h",
    "sync/app_settings_model_type_controller.cc",
    "sync/app_settings_model_type_controller.h",
    "sync/apps_model_type_controller.cc",
    "sync/apps_model_type_controller.h",
    "sync/os_sync_util.cc",
    "sync/os_sync_util.h",
    "sync/os_syncable_service_model_type_controller.cc",
    "sync/os_syncable_service_model_type_controller.h",
    "sync/sync_error_notifier.cc",
    "sync/sync_error_notifier.h",
    "sync/sync_error_notifier_factory.cc",
    "sync/sync_error_notifier_factory.h",
    "sync/sync_explicit_passphrase_client_ash.cc",
    "sync/sync_explicit_passphrase_client_ash.h",
    "sync/sync_mojo_service_ash.cc",
    "sync/sync_mojo_service_ash.h",
    "sync/sync_mojo_service_factory_ash.cc",
    "sync/sync_mojo_service_factory_ash.h",
    "sync/sync_user_settings_client_ash.cc",
    "sync/sync_user_settings_client_ash.h",
    "system/automatic_reboot_manager.cc",
    "system/automatic_reboot_manager.h",
    "system/automatic_reboot_manager_observer.h",
    "system/breakpad_consent_watcher.cc",
    "system/breakpad_consent_watcher.h",
    "system/device_disabling_manager.cc",
    "system/device_disabling_manager.h",
    "system/device_disabling_manager_default_delegate.cc",
    "system/device_disabling_manager_default_delegate.h",
    "system/fake_input_device_settings.cc",
    "system/fake_input_device_settings.h",
    "system/input_device_settings.cc",
    "system/input_device_settings.h",
    "system/input_device_settings_impl_ozone.cc",
    "system/pointer_device_observer.cc",
    "system/pointer_device_observer.h",
    "system/procfs_util.cc",
    "system/procfs_util.h",
    "system/system_clock.cc",
    "system/system_clock.h",
    "system/system_clock_observer.cc",
    "system/system_clock_observer.h",
    "system/timezone_resolver_manager.cc",
    "system/timezone_resolver_manager.h",
    "system/timezone_util.cc",
    "system/timezone_util.h",
    "system/user_removal_manager.cc",
    "system/user_removal_manager.h",
    "system_logs/bluetooth_log_source.cc",
    "system_logs/bluetooth_log_source.h",
    "system_logs/command_line_log_source.cc",
    "system_logs/command_line_log_source.h",
    "system_logs/connected_input_devices_log_source.cc",
    "system_logs/connected_input_devices_log_source.h",
    "system_logs/crosapi_system_log_source.cc",
    "system_logs/crosapi_system_log_source.h",
    "system_logs/dbus_log_source.cc",
    "system_logs/dbus_log_source.h",
    "system_logs/debug_daemon_log_source.cc",
    "system_logs/debug_daemon_log_source.h",
    "system_logs/debug_log_writer.cc",
    "system_logs/debug_log_writer.h",
    "system_logs/device_event_log_source.cc",
    "system_logs/device_event_log_source.h",
    "system_logs/iwlwifi_dump_log_source.cc",
    "system_logs/iwlwifi_dump_log_source.h",
    "system_logs/network_health_source.cc",
    "system_logs/network_health_source.h",
    "system_logs/reven_log_source.cc",
    "system_logs/reven_log_source.h",
    "system_logs/shill_log_pii_identifiers.cc",
    "system_logs/shill_log_pii_identifiers.h",
    "system_logs/shill_log_source.cc",
    "system_logs/shill_log_source.h",
    "system_logs/single_debug_daemon_log_source.cc",
    "system_logs/single_debug_daemon_log_source.h",
    "system_logs/single_log_file_log_source.cc",
    "system_logs/single_log_file_log_source.h",
    "system_logs/system_logs_writer.cc",
    "system_logs/system_logs_writer.h",
    "system_logs/touch_log_source.cc",
    "system_logs/touch_log_source.h",
    "system_logs/traffic_counters_log_source.cc",
    "system_logs/traffic_counters_log_source.h",
    "system_logs/ui_hierarchy_log_source.cc",
    "system_logs/ui_hierarchy_log_source.h",
    "system_logs/virtual_keyboard_log_source.cc",
    "system_logs/virtual_keyboard_log_source.h",
    "system_token_cert_db_initializer.cc",
    "system_token_cert_db_initializer.h",
    "tether/fake_tether_service.cc",
    "tether/fake_tether_service.h",
    "tether/tether_service.cc",
    "tether/tether_service.h",
    "tether/tether_service_factory.cc",
    "tether/tether_service_factory.h",
    "throttle_observer.cc",
    "throttle_observer.h",
    "throttle_service.cc",
    "throttle_service.h",
    "tpm_firmware_update.cc",
    "tpm_firmware_update.h",
    "tpm_firmware_update_notification.cc",
    "tpm_firmware_update_notification.h",
    "u2f_notification.cc",
    "u2f_notification.h",
    "usb/cros_usb_detector.cc",
    "usb/cros_usb_detector.h",
    "vm_shutdown_observer.h",
    "vm_starting_observer.h",
    "wallpaper/wallpaper_enumerator.cc",
    "wallpaper/wallpaper_enumerator.h",
    "wallpaper_handlers/wallpaper_handlers.cc",
    "wallpaper_handlers/wallpaper_handlers.h",
    "wallpaper_handlers/wallpaper_handlers_metric_utils.cc",
    "wallpaper_handlers/wallpaper_handlers_metric_utils.h",
    "web_applications/calculator_app/calculator_app_utils.cc",
    "web_applications/calculator_app/calculator_app_utils.h",
    "web_applications/camera_app/camera_app_survey_handler.cc",
    "web_applications/camera_app/camera_app_survey_handler.h",
    "web_applications/camera_app/camera_app_untrusted_ui_config.cc",
    "web_applications/camera_app/camera_app_untrusted_ui_config.h",
    "web_applications/camera_app/camera_system_web_app_info.cc",
    "web_applications/camera_app/camera_system_web_app_info.h",
    "web_applications/camera_app/chrome_camera_app_ui_constants.h",
    "web_applications/camera_app/chrome_camera_app_ui_delegate.cc",
    "web_applications/camera_app/chrome_camera_app_ui_delegate.h",
    "web_applications/chrome_file_manager_ui_delegate.cc",
    "web_applications/chrome_file_manager_ui_delegate.h",
    "web_applications/connectivity_diagnostics_system_web_app_info.cc",
    "web_applications/connectivity_diagnostics_system_web_app_info.h",
    "web_applications/crosh_system_web_app_info.cc",
    "web_applications/crosh_system_web_app_info.h",
    "web_applications/crosh_ui.cc",
    "web_applications/crosh_ui.h",
    "web_applications/demo_mode_web_app_info.cc",
    "web_applications/demo_mode_web_app_info.h",
    "web_applications/diagnostics_system_web_app_info.cc",
    "web_applications/diagnostics_system_web_app_info.h",
    "web_applications/eche_app_info.cc",
    "web_applications/eche_app_info.h",
    "web_applications/face_ml_system_web_app_info.cc",
    "web_applications/face_ml_system_web_app_info.h",
    "web_applications/file_manager_web_app_info.cc",
    "web_applications/file_manager_web_app_info.h",
    "web_applications/files_internals_ui_delegate.cc",
    "web_applications/files_internals_ui_delegate.h",
    "web_applications/firmware_update_system_web_app_info.cc",
    "web_applications/firmware_update_system_web_app_info.h",
    "web_applications/help_app/help_app_discover_tab_notification.cc",
    "web_applications/help_app/help_app_discover_tab_notification.h",
    "web_applications/help_app/help_app_notification_controller.cc",
    "web_applications/help_app/help_app_notification_controller.h",
    "web_applications/help_app/help_app_ui_delegate.cc",
    "web_applications/help_app/help_app_ui_delegate.h",
    "web_applications/help_app/help_app_untrusted_ui_config.cc",
    "web_applications/help_app/help_app_untrusted_ui_config.h",
    "web_applications/help_app/help_app_web_app_info.cc",
    "web_applications/help_app/help_app_web_app_info.h",
    "web_applications/media_app/chrome_media_app_ui_delegate.cc",
    "web_applications/media_app/chrome_media_app_ui_delegate.h",
    "web_applications/media_app/media_app_guest_ui_config.cc",
    "web_applications/media_app/media_app_guest_ui_config.h",
    "web_applications/media_app/media_web_app_info.cc",
    "web_applications/media_app/media_web_app_info.h",
    "web_applications/os_feedback_system_web_app_info.cc",
    "web_applications/os_feedback_system_web_app_info.h",
    "web_applications/os_flags_system_web_app_info.cc",
    "web_applications/os_flags_system_web_app_info.h",
    "web_applications/os_settings_web_app_info.cc",
    "web_applications/os_settings_web_app_info.h",
    "web_applications/os_url_handler_system_web_app_info.cc",
    "web_applications/os_url_handler_system_web_app_info.h",
    "web_applications/personalization_app/enterprise_policy_delegate_impl.cc",
    "web_applications/personalization_app/enterprise_policy_delegate_impl.h",
    "web_applications/personalization_app/keyboard_backlight_color_metrics_provider.cc",
    "web_applications/personalization_app/keyboard_backlight_color_metrics_provider.h",
    "web_applications/personalization_app/personalization_app_ambient_provider_impl.cc",
    "web_applications/personalization_app/personalization_app_ambient_provider_impl.h",
    "web_applications/personalization_app/personalization_app_keyboard_backlight_provider_impl.cc",
    "web_applications/personalization_app/personalization_app_keyboard_backlight_provider_impl.h",
    "web_applications/personalization_app/personalization_app_manager.cc",
    "web_applications/personalization_app/personalization_app_manager.h",
    "web_applications/personalization_app/personalization_app_manager_factory.cc",
    "web_applications/personalization_app/personalization_app_manager_factory.h",
    "web_applications/personalization_app/personalization_app_metrics.cc",
    "web_applications/personalization_app/personalization_app_metrics.h",
    "web_applications/personalization_app/personalization_app_theme_provider_impl.cc",
    "web_applications/personalization_app/personalization_app_theme_provider_impl.h",
    "web_applications/personalization_app/personalization_app_user_provider_impl.cc",
    "web_applications/personalization_app/personalization_app_user_provider_impl.h",
    "web_applications/personalization_app/personalization_app_utils.cc",
    "web_applications/personalization_app/personalization_app_utils.h",
    "web_applications/personalization_app/personalization_app_wallpaper_provider_impl.cc",
    "web_applications/personalization_app/personalization_app_wallpaper_provider_impl.h",
    "web_applications/personalization_app/personalization_system_app_delegate.cc",
    "web_applications/personalization_app/personalization_system_app_delegate.h",
    "web_applications/print_management_web_app_info.cc",
    "web_applications/print_management_web_app_info.h",
    "web_applications/projector_app/untrusted_projector_annotator_ui_config.cc",
    "web_applications/projector_app/untrusted_projector_annotator_ui_config.h",
    "web_applications/projector_app/untrusted_projector_ui_config.cc",
    "web_applications/projector_app/untrusted_projector_ui_config.h",
    "web_applications/projector_system_web_app_info.cc",
    "web_applications/projector_system_web_app_info.h",
    "web_applications/scanning_system_web_app_info.cc",
    "web_applications/scanning_system_web_app_info.h",
    "web_applications/shimless_rma_system_web_app_info.cc",
    "web_applications/shimless_rma_system_web_app_info.h",
    "web_applications/shortcut_customization_system_web_app_info.cc",
    "web_applications/shortcut_customization_system_web_app_info.h",
    "web_applications/system_web_app_install_utils.cc",
    "web_applications/system_web_app_install_utils.h",
    "web_applications/terminal_source.cc",
    "web_applications/terminal_source.h",
    "web_applications/terminal_system_web_app_info.cc",
    "web_applications/terminal_system_web_app_info.h",
    "web_applications/terminal_ui.cc",
    "web_applications/terminal_ui.h",
    "wilco_dtc_supportd/fake_wilco_dtc_supportd_client.cc",
    "wilco_dtc_supportd/fake_wilco_dtc_supportd_client.h",
    "wilco_dtc_supportd/wilco_dtc_supportd_bridge.cc",
    "wilco_dtc_supportd/wilco_dtc_supportd_bridge.h",
    "wilco_dtc_supportd/wilco_dtc_supportd_client.cc",
    "wilco_dtc_supportd/wilco_dtc_supportd_client.h",
    "wilco_dtc_supportd/wilco_dtc_supportd_manager.cc",
    "wilco_dtc_supportd/wilco_dtc_supportd_manager.h",
    "wilco_dtc_supportd/wilco_dtc_supportd_messaging.cc",
    "wilco_dtc_supportd/wilco_dtc_supportd_messaging.h",
    "wilco_dtc_supportd/wilco_dtc_supportd_network_context.cc",
    "wilco_dtc_supportd/wilco_dtc_supportd_notification_controller.cc",
    "wilco_dtc_supportd/wilco_dtc_supportd_notification_controller.h",
    "wilco_dtc_supportd/wilco_dtc_supportd_web_request_service.cc",
    "wilco_dtc_supportd/wilco_dtc_supportd_web_request_service.h",
    "window_throttle_observer_base.cc",
    "window_throttle_observer_base.h",
  ]

  allow_circular_includes_from = [
    "//chrome/browser/apps/platform_apps/api",
    "//chrome/browser/ash/crosapi",
    "//chrome/browser/ash/system_web_apps",
    "//chrome/browser/chromeos",
    "//chrome/browser/extensions",
    "//chrome/browser/google",
    "//chrome/browser/policy:onc",
    "//chrome/browser/ui/ash/system_web_apps",
    "//chrome/browser/web_applications",
  ]

  public_deps = [
    ":device_configuration_proto",
    ":lock_unlock_event_proto",
    ":login_logout_event_proto",
    ":print_job_info_proto",
    ":screen_brightness_event_proto",
    ":user_activity_event_proto",
    "//ash",
    "//ash/components/arc",
    "//ash/components/arc:arc_base",
    "//ash/components/arc:arc_base_utils",
    "//ash/components/arc:arc_metrics_constants",
    "//ash/components/arc:prefs",
    "//ash/components/arc/enterprise",
    "//ash/components/arc/mojom",
    "//ash/components/arc/mojom:media",
    "//ash/components/arc/mojom:oemcrypto",
    "//ash/components/arc/session",
    "//ash/components/arc/session:arc_base_enums",
    "//ash/components/arc/session:connection_holder",
    "//ash/components/phonehub",
    "//ash/components/phonehub/proto",
    "//ash/constants",
    "//ash/public/cpp",
    "//ash/public/cpp/external_arc",
    "//ash/public/mojom",
    "//ash/quick_pair/common",
    "//ash/services/device_sync/proto",
    "//ash/services/device_sync/public/cpp",
    "//ash/services/ime/public/cpp:structs",
    "//ash/services/ime/public/mojom",
    "//ash/services/multidevice_setup/public/cpp",
    "//ash/services/multidevice_setup/public/cpp:android_sms_app_helper_delegate",
    "//ash/services/multidevice_setup/public/cpp:android_sms_pairing_state_tracker",
    "//ash/services/multidevice_setup/public/cpp:auth_token_validator",
    "//ash/services/secure_channel/public/cpp/client",
    "//ash/services/secure_channel/public/mojom",
    "//ash/style",
    "//ash/webui/camera_app_ui",
    "//ash/webui/connectivity_diagnostics",
    "//ash/webui/eche_app_ui",
    "//ash/webui/file_manager:file_manager_ui",
    "//ash/webui/files_internals",
    "//ash/webui/guest_os_installer/mojom",
    "//ash/webui/help_app_ui",
    "//ash/webui/media_app_ui",
    "//ash/webui/os_feedback_ui/backend",
    "//ash/webui/personalization_app",
    "//ash/webui/personalization_app/mojom",
    "//ash/webui/print_management/mojom",
    "//ash/webui/projector_app",
    "//ash/webui/scanning",
    "//ash/webui/scanning/mojom",
    "//ash/webui/shimless_rma",
    "//ash/webui/shimless_rma/backend",
    "//ash/webui/shortcut_customization_ui",
    "//base",
    "//base:i18n",
    "//build:chromeos_buildflags",
    "//chrome/browser:browser_process",
    "//chrome/browser/ash/arc/input_overlay/db/proto",
    "//chrome/browser/ash/crosapi",
    "//chrome/browser/ash/crosapi:browser_util",
    "//chrome/browser/ash/crostini:crostini_installer_types_mojom",
    "//chrome/browser/ash/guest_os:guest_os_diagnostics_mojom",
    "//chrome/browser/ash/login/oobe_quick_start",
    "//chrome/browser/ash/power/ml/smart_dim",
    "//chrome/browser/ash/system_web_apps/types",
    "//chrome/browser/chromeos",
    "//chrome/browser/extensions",
    "//chrome/browser/image_decoder",
    "//chrome/browser/policy/messaging_layer/proto:crd_event_proto",
    "//chrome/browser/profiles:profile",
    "//chrome/browser/resource_coordinator:tab_metrics_event_proto",
    "//chrome/browser/safe_browsing",
    "//chrome/browser/ui/webui/ash/crostini_upgrader:mojo_bindings_headers",
    "//chrome/browser/ui/webui/bluetooth_internals:mojo_bindings",
    "//chrome/browser/web_applications",
    "//chrome/common",
    "//chrome/common:buildflags",
    "//chrome/common:chrome_features",
    "//chrome/common:constants",
    "//chrome/common/extensions/api",
    "//chrome/services/file_util/public/cpp",
    "//chrome/services/keymaster/public/mojom",
    "//chrome/services/printing/public/mojom",
    "//chrome/services/wilco_dtc_supportd/public/mojom",
    "//chromeos:chromeos_export",
    "//chromeos/ash/components/attestation",
    "//chromeos/ash/components/audio",
    "//chromeos/ash/components/browser_context_helper",
    "//chromeos/ash/components/cryptohome",
    "//chromeos/ash/components/dbus:metrics_event_proto",
    "//chromeos/ash/components/dbus:vm_applications_apps_proto",
    "//chromeos/ash/components/dbus:vm_launch_proto",
    "//chromeos/ash/components/dbus/anomaly_detector",
    "//chromeos/ash/components/dbus/anomaly_detector:proto",
    "//chromeos/ash/components/dbus/attestation",
    "//chromeos/ash/components/dbus/attestation:attestation_proto",
    "//chromeos/ash/components/dbus/authpolicy",
    "//chromeos/ash/components/dbus/authpolicy:authpolicy_proto",
    "//chromeos/ash/components/dbus/chunneld",
    "//chromeos/ash/components/dbus/cicerone",
    "//chromeos/ash/components/dbus/cicerone:cicerone_proto",
    "//chromeos/ash/components/dbus/concierge",
    "//chromeos/ash/components/dbus/concierge:concierge_proto",
    "//chromeos/ash/components/dbus/constants",
    "//chromeos/ash/components/dbus/cros_disks",
    "//chromeos/ash/components/dbus/cryptohome:cryptohome_proto",
    "//chromeos/ash/components/dbus/debug_daemon",
    "//chromeos/ash/components/dbus/dlcservice",
    "//chromeos/ash/components/dbus/fusebox:proto",
    "//chromeos/ash/components/dbus/gnubby",
    "//chromeos/ash/components/dbus/hermes",
    "//chromeos/ash/components/dbus/kerberos:kerberos_proto",
    "//chromeos/ash/components/dbus/lorgnette_manager",
    "//chromeos/ash/components/dbus/lorgnette_manager:lorgnette_proto",
    "//chromeos/ash/components/dbus/os_install",
    "//chromeos/ash/components/dbus/resourced",
    "//chromeos/ash/components/dbus/seneschal",
    "//chromeos/ash/components/dbus/seneschal:seneschal_proto",
    "//chromeos/ash/components/dbus/services",
    "//chromeos/ash/components/dbus/session_manager",
    "//chromeos/ash/components/dbus/session_manager:login_manager_proto",
    "//chromeos/ash/components/dbus/smbprovider",
    "//chromeos/ash/components/dbus/system_clock",
    "//chromeos/ash/components/dbus/system_proxy:system_proxy_proto",
    "//chromeos/ash/components/dbus/update_engine",
    "//chromeos/ash/components/dbus/userdataauth",
    "//chromeos/ash/components/dbus/userdataauth:userdataauth_proto",
    "//chromeos/ash/components/dbus/vm_plugin_dispatcher",
    "//chromeos/ash/components/dbus/vm_plugin_dispatcher:proto",
    "//chromeos/ash/components/disks",
    "//chromeos/ash/components/drivefs",
    "//chromeos/ash/components/drivefs/mojom",
    "//chromeos/ash/components/enhanced_network_tts/mojom",
    "//chromeos/ash/components/feature_usage",
    "//chromeos/ash/components/geolocation",
    "//chromeos/ash/components/hid_detection",
    "//chromeos/ash/components/install_attributes",
    "//chromeos/ash/components/login/auth",
    "//chromeos/ash/components/login/auth/public:authpublic",
    "//chromeos/ash/components/login/auth/public:challenge_response_key",
    "//chromeos/ash/components/login/session",
    "//chromeos/ash/components/memory",
    "//chromeos/ash/components/mojo_service_manager/mojom",
    "//chromeos/ash/components/multidevice",
    "//chromeos/ash/components/network",
    "//chromeos/ash/components/network/portal_detector",
    "//chromeos/ash/components/policy",
    "//chromeos/ash/components/proximity_auth",
    "//chromeos/ash/components/scanning",
    "//chromeos/ash/components/settings",
    "//chromeos/ash/components/smbfs",
    "//chromeos/ash/components/tether",
    "//chromeos/ash/components/timezone",
    "//chromeos/ash/components/trash_service/public/cpp",
    "//chromeos/ash/services/cros_healthd/public/cpp",
    "//chromeos/ash/services/cros_healthd/public/mojom",
    "//chromeos/ash/services/nearby/public/cpp",
    "//chromeos/ash/services/nearby/public/mojom",
    "//chromeos/ash/services/quick_pair/public/mojom:mojom_headers",
    "//chromeos/ash/services/rollback_network_config/public/mojom",
    "//chromeos/components/onc",
    "//chromeos/components/remote_apps/mojom",
    "//chromeos/components/sensors:buildflags",
    "//chromeos/components/sensors/mojom",
    "//chromeos/components/sharesheet:constants",
    "//chromeos/crosapi/mojom",
    "//chromeos/dbus/common",
    "//chromeos/dbus/dlp:dlp_proto",
    "//chromeos/dbus/missive",
    "//chromeos/dbus/power",
    "//chromeos/dbus/power:power_manager_proto",
    "//chromeos/dbus/tpm_manager",
    "//chromeos/dbus/tpm_manager:tpm_manager_proto",
    "//chromeos/login/login_state",
    "//chromeos/metrics",
    "//chromeos/printing",
    "//chromeos/services/machine_learning/public/mojom",
    "//chromeos/services/network_config/public/cpp",
    "//chromeos/services/network_config/public/mojom",
    "//chromeos/services/network_health",
    "//chromeos/services/network_health/public/mojom",
    "//chromeos/system",
    "//chromeos/ui/base",
    "//components/account_id",
    "//components/account_manager_core",
    "//components/app_restore",
    "//components/arc",
    "//components/arc/common",
    "//components/autofill/core/browser",
    "//components/captive_portal/core",
    "//components/content_settings/core/browser",
    "//components/download/content/public",
    "//components/download/public/background_service:public",
    "//components/drive",
    "//components/exo",
    "//components/feedback",
    "//components/flags_ui",
    "//components/gcm_driver",
    "//components/gcm_driver/instance_id",
    "//components/guest_os",
    "//components/history/core/browser",
    "//components/invalidation/public",
    "//components/keep_alive_registry",
    "//components/keyed_service/content",
    "//components/keyed_service/core",
    "//components/leveldb_proto",
    "//components/login",
    "//components/metrics",
    "//components/onc",
    "//components/ownership",
    "//components/policy/core/browser",
    "//components/policy/core/common",
    "//components/policy/core/common:common_constants",
    "//components/policy/core/common:policy_namespace",
    "//components/policy/proto",
    "//components/pref_registry",
    "//components/prefs",
    "//components/printing/common:mojo_interfaces",
    "//components/quirks",
    "//components/reporting/client:report_queue",
    "//components/reporting/client:report_queue_configuration",
    "//components/reporting/client:report_queue_provider",
    "//components/reporting/metrics:metrics_data_collection",
    "//components/reporting/proto:metric_data_proto",
    "//components/reporting/proto:record_constants",
    "//components/reporting/proto:record_proto",
    "//components/reporting/resources:resource_interface",
    "//components/reporting/storage_selector",
    "//components/services/app_service/public/cpp:app_types",
    "//components/services/app_service/public/cpp:app_update",
    "//components/services/app_service/public/cpp:icon_types",
    "//components/services/app_service/public/cpp:instance_update",
    "//components/services/app_service/public/cpp:intents",
    "//components/services/app_service/public/mojom",
    "//components/services/app_service/public/mojom:types_headers",
    "//components/services/unzip/public/cpp",
    "//components/session_manager/core",
    "//components/signin/core/browser",
    "//components/signin/public/identity_manager",
    "//components/soda",
    "//components/storage_monitor",
    "//components/sync/driver",
    "//components/sync/model",
    "//components/sync/protocol",
    "//components/sync_preferences",
    "//components/user_manager",
    "//components/version_info",
    "//components/viz/common",
    "//components/web_modal",
    "//content/public/browser",
    "//crypto",
    "//dbus",
    "//device/bluetooth",
    "//extensions/browser",
    "//extensions/browser/api/automation_internal",
    "//extensions/browser/api/file_handlers",
    "//extensions/browser/api/messaging:native_messaging",
    "//extensions/common",
    "//extensions/common/api",
    "//google_apis",
    "//google_apis/common",
    "//google_apis/drive",
    "//gpu/command_buffer/client",
    "//media:media_buildflags",
    "//media/capture:capture_lib",
    "//media/capture/video/chromeos/mojom:cros_camera_headers",
    "//mojo/public/c/system:headers",
    "//mojo/public/cpp/base",
    "//mojo/public/cpp/bindings",
    "//mojo/public/cpp/platform",
    "//mojo/public/cpp/system",
    "//net",
    "//net/traffic_annotation",
    "//printing",
    "//printing:printing_base",
    "//printing/backend",
    "//remoting/host/chromeos:enterprise_support",
    "//remoting/host/chromeos:host_event_reporter_impl",
    "//remoting/host/mojom",
    "//services/accessibility:buildflags",
    "//services/accessibility/public/mojom",
    "//services/data_decoder/public/cpp",
    "//services/device/public/mojom",
    "//services/device/public/mojom:usb",
    "//services/media_session/public/mojom",
    "//services/metrics/public/cpp:metrics_cpp",
    "//services/network/public/cpp",
    "//services/network/public/cpp:cpp_base",
    "//services/network/public/mojom",
    "//services/network/public/mojom:cookies_mojom",
    "//services/network/public/mojom:url_loader_base",
    "//services/tracing/public/cpp",
    "//services/video_capture/public/mojom",
    "//services/viz/public/mojom",
    "//skia",
    "//storage/browser",
    "//storage/common",
    "//third_party/abseil-cpp:absl",
    "//third_party/blink/public/mojom:mojom_platform",
    "//third_party/boringssl",
    "//third_party/icu",
    "//third_party/metrics_proto",
    "//third_party/private_membership:private_membership_proto",
    "//third_party/shell-encryption:shell_encryption",
    "//ui/accessibility",
    "//ui/accessibility:ax_base",
    "//ui/accessibility:ax_enums_mojo_headers",
    "//ui/aura",
    "//ui/base",
    "//ui/base:features",
    "//ui/base:ui_data_pack",
    "//ui/base/idle",
    "//ui/base/ime",
    "//ui/base/ime:ime_types",
    "//ui/base/ime/ash",
    "//ui/base/metadata",
    "//ui/chromeos/events",
    "//ui/chromeos/styles:cros_styles_views",
    "//ui/compositor",
    "//ui/display",
    "//ui/display/types",
    "//ui/events",
    "//ui/events:dom_keycode_converter",
    "//ui/events:events_base",
    "//ui/events/devices",
    "//ui/events/types:headers",
    "//ui/gfx",
    "//ui/gfx:native_widget_types",
    "//ui/gfx/geometry",
    "//ui/gfx/range",
    "//ui/message_center/public/cpp",
    "//ui/shell_dialogs",
    "//ui/snapshot",
    "//ui/views",
    "//ui/views/controls/webview",
    "//ui/web_dialogs",
    "//ui/webui",
    "//ui/wm/public",
    "//url",
  ]

  deps = [
    ":add_remove_user_event_proto",
    ":attestation_proto",
    ":device_policy_remover_generated",
    ":key_permissions_proto",
    "//apps",
    "//ash/components/arc:arc_features",
    "//ash/components/arc/input_overlay/resources",
    "//ash/components/arc/media_session",
    "//ash/components/arc/mojom:notifications",
    "//ash/components/arc/mojom:protected_buffer_manager",
    "//ash/components/fwupd",
    "//ash/components/peripheral_notification",
    "//ash/keyboard/ui",
    "//ash/public/cpp/resources:ash_public_unscaled_resources",
    "//ash/quick_pair/feature_status_tracker",
    "//ash/resources/vector_icons",
    "//ash/services/device_sync",
    "//ash/services/device_sync:stub_device_sync",
    "//ash/services/ime:constants",
    "//ash/services/multidevice_setup",
    "//ash/services/multidevice_setup/public/cpp:oobe_completion_tracker",
    "//ash/services/multidevice_setup/public/cpp:prefs",
    "//ash/services/multidevice_setup/public/mojom",
    "//ash/services/secure_channel",
    "//ash/services/secure_channel/public/cpp/shared",
    "//ash/strings",
    "//ash/webui/camera_app_ui:document_scanning",
    "//ash/webui/camera_app_ui/resources/strings",
    "//ash/webui/demo_mode_app_ui",
    "//ash/webui/diagnostics_ui",
    "//ash/webui/face_ml_app_ui",
    "//ash/webui/file_manager:constants",
    "//ash/webui/file_manager:file_manager_untrusted_ui",
    "//ash/webui/file_manager/resources:file_manager_swa_resources",
    "//ash/webui/firmware_update_ui",
    "//ash/webui/guest_os_installer",
    "//ash/webui/media_app_ui:buildflags",
    "//ash/webui/os_feedback_ui",
    "//ash/webui/os_feedback_ui/mojom",
    "//ash/webui/personalization_app/proto",
    "//ash/webui/print_management",
    "//ash/webui/print_management/resources:resources",
    "//ash/webui/projector_app/public/cpp",
    "//ash/webui/resources:camera_app_resources",
    "//ash/webui/resources:connectivity_diagnostics_resources",
    "//ash/webui/resources:demo_mode_app_resources",
    "//ash/webui/resources:diagnostics_app_resources",
    "//ash/webui/resources:eche_bundle_resources",
    "//ash/webui/resources:face_ml_app_resources",
    "//ash/webui/resources:firmware_update_app_resources",
    "//ash/webui/resources:help_app_resources",
    "//ash/webui/resources:media_app_bundle_resources",
    "//ash/webui/resources:media_app_resources",
    "//ash/webui/resources:os_feedback_resources",
    "//ash/webui/resources:personalization_app_resources",
    "//ash/webui/resources:projector_app_trusted_resources",
    "//ash/webui/resources:scanning_app_resources",
    "//ash/webui/resources:shimless_rma_resources",
    "//ash/webui/resources:shortcut_customization_app_resources",
    "//build:branding_buildflags",
    "//build/config/chromebox_for_meetings:buildflags",
    "//cc/base",
    "//cc/paint",
    "//chrome/app:chromium_strings",
    "//chrome/app:command_ids",
    "//chrome/app:generated_resources",
    "//chrome/app/resources:locale_settings",
    "//chrome/app/theme:chrome_unscaled_resources",
    "//chrome/app/theme:theme_resources",
    "//chrome/app/vector_icons",
    "//chrome/browser:browser_themes",
    "//chrome/browser:resources",
    "//chrome/browser:theme_properties",
    "//chrome/browser/apps/platform_apps",
    "//chrome/browser/apps/platform_apps/api",
    "//chrome/browser/ash/fusebox:fusebox_staging_proto",
    "//chrome/browser/ash/mojo_service_manager",
    "//chrome/browser/ash/nearby:bluetooth_adapter_manager",
    "//chrome/browser/ash/power/ml:user_activity_ukm_logger_helpers",
    "//chrome/browser/ash/system_web_apps",
    "//chrome/browser/ash/wilco_dtc_supportd:mojo_utils",
    "//chrome/browser/browsing_data:constants",
    "//chrome/browser/devtools",
    "//chrome/browser/favicon",
    "//chrome/browser/google",
    "//chrome/browser/metrics/structured",
    "//chrome/browser/nearby_sharing/common",
    "//chrome/browser/nearby_sharing/logging",
    "//chrome/browser/policy:onc",
    "//chrome/browser/profiles",
    "//chrome/browser/resources:component_extension_resources",
    "//chrome/browser/resources/chromeos:app_icon_resources",
    "//chrome/browser/resources/settings/chromeos:resources",
    "//chrome/browser/supervised_user/supervised_user_features",
    "//chrome/browser/ui/ash/system_web_apps",
    "//chrome/browser/ui/webui/ash/crostini_upgrader:mojo_bindings",
    "//chrome/browser/ui/webui/settings/chromeos/constants:mojom",
    "//chrome/browser/webshare:storage",
    "//chrome/common:channel_info",
    "//chrome/common:non_code_constants",
    "//chrome/common/apps/platform_apps/api",
    "//chrome/common/net",
    "//chromeos/ash/components/account_manager",
    "//chromeos/ash/components/assistant:buildflags",
    "//chromeos/ash/components/dbus",
    "//chromeos/ash/components/dbus:plugin_vm_service_proto",
    "//chromeos/ash/components/dbus:vm_disk_management_proto",
    "//chromeos/ash/components/dbus:vm_permission_service_proto",
    "//chromeos/ash/components/dbus:vm_sk_forwarding_proto",
    "//chromeos/ash/components/dbus/arc",
    "//chromeos/ash/components/dbus/audio",
    "//chromeos/ash/components/dbus/biod",
    "//chromeos/ash/components/dbus/biod:biod_proto",
    "//chromeos/ash/components/dbus/cdm_factory_daemon",
    "//chromeos/ash/components/dbus/cec_service",
    "//chromeos/ash/components/dbus/cros_healthd",
    "//chromeos/ash/components/dbus/cryptohome:attestation_proto",
    "//chromeos/ash/components/dbus/cups_proxy",
    "//chromeos/ash/components/dbus/dlcservice:dlcservice_proto",
    "//chromeos/ash/components/dbus/easy_unlock",
    "//chromeos/ash/components/dbus/federated",
    "//chromeos/ash/components/dbus/fusebox",
    "//chromeos/ash/components/dbus/fwupd",
    "//chromeos/ash/components/dbus/human_presence",
    "//chromeos/ash/components/dbus/image_burner",
    "//chromeos/ash/components/dbus/image_loader",
    "//chromeos/ash/components/dbus/ip_peripheral",
    "//chromeos/ash/components/dbus/kerberos",
    "//chromeos/ash/components/dbus/media_analytics",
    "//chromeos/ash/components/dbus/oobe_config",
    "//chromeos/ash/components/dbus/patchpanel",
    "//chromeos/ash/components/dbus/pciguard",
    "//chromeos/ash/components/dbus/rgbkbd",
    "//chromeos/ash/components/dbus/rmad",
    "//chromeos/ash/components/dbus/runtime_probe",
    "//chromeos/ash/components/dbus/shill",
    "//chromeos/ash/components/dbus/spaced",
    "//chromeos/ash/components/dbus/system_proxy",
    "//chromeos/ash/components/dbus/typecd",
    "//chromeos/ash/components/dbus/update_engine:proto",
    "//chromeos/ash/components/dbus/upstart",
    "//chromeos/ash/components/dbus/virtual_file_provider",
    "//chromeos/ash/components/device_activity",
    "//chromeos/ash/components/hibernate:buildflags",
    "//chromeos/ash/components/local_search_service/public/cpp",
    "//chromeos/ash/components/mojo_service_manager",
    "//chromeos/ash/components/multidevice:stub_multidevice_util",
    "//chromeos/ash/components/multidevice/logging",
    "//chromeos/ash/components/power",
    "//chromeos/ash/components/sync_wifi",
    "//chromeos/ash/components/tpm",
    "//chromeos/ash/components/tpm:buildflags",
    "//chromeos/ash/services/assistant/public/cpp",
    "//chromeos/ash/services/bluetooth_config:in_process_bluetooth_config",
    "//chromeos/ash/services/cros_healthd/private/cpp",
    "//chromeos/ash/services/quick_pair/public/mojom",
    "//chromeos/components/cdm_factory_daemon:cdm_factory_daemon_browser",
    "//chromeos/components/cdm_factory_daemon/mojom",
    "//chromeos/components/certificate_provider",
    "//chromeos/components/disks:prefs",
    "//chromeos/components/mojo_bootstrap",
    "//chromeos/components/sensors",
    "//chromeos/constants",
    "//chromeos/crosapi/cpp",
    "//chromeos/dbus/constants",
    "//chromeos/dbus/dlp",
    "//chromeos/dbus/init",
    "//chromeos/dbus/machine_learning",
    "//chromeos/dbus/permission_broker",
    "//chromeos/dbus/u2f",
    "//chromeos/ime:gencode",
    "//chromeos/services/machine_learning/public/cpp",
    "//chromeos/services/network_config:in_process_instance",
    "//chromeos/strings",
    "//chromeos/ui/vector_icons",
    "//chromeos/utils",
    "//chromeos/version",
    "//components/app_constants",
    "//components/arc/common:arc_intent_helper_constants",
    "//components/component_updater",
    "//components/consent_auditor",
    "//components/constrained_window",
    "//components/content_settings/core/common",
    "//components/country_codes",
    "//components/crash/core/app",
    "//components/crash/core/common",
    "//components/crash/core/common:crash_key_lib",
    "//components/crx_file",
    "//components/device_event_log",
    "//components/download/public/common:public",
    "//components/embedder_support:browser_util",
    "//components/enterprise",
    "//components/exo/server",
    "//components/favicon/core",
    "//components/favicon_base",
    "//components/feedback/content",
    "//components/google/core/common",
    "//components/guest_os:prefs",
    "//components/image_fetcher/core",
    "//components/invalidation/impl",
    "//components/language/core/browser",
    "//components/language/core/common",
    "//components/live_caption:constants",
    "//components/metrics:serialization",
    "//components/metrics/structured:neutrino_logging",
    "//components/metrics/structured:neutrino_logging_util",
    "//components/omnibox/browser:location_bar",
    "//components/password_manager/core/browser",
    "//components/password_manager/core/browser:hash_password_manager",
    "//components/permissions",
    "//components/policy:generated",
    "//components/proxy_config",
    "//components/reporting/client:report_queue_factory",
    "//components/reporting/proto:interface_proto",
    "//components/reporting/util:status",
    "//components/reporting/util:status_proto",
    "//components/safe_browsing/core/common:safe_browsing_prefs",
    "//components/services/app_service/public/cpp:app_file_handling",
    "//components/services/app_service/public/cpp:types",
    "//components/services/app_service/public/mojom:types",
    "//components/services/filesystem/public/mojom",
    "//components/services/unzip/content",
    "//components/services/unzip/public/mojom",
    "//components/session_manager:base",
    "//components/signin/public/base",
    "//components/spellcheck/browser",
    "//components/startup_metric_utils/browser",
    "//components/strings:components_strings",
    "//components/sync/base",
    "//components/sync/chromeos",
    "//components/sync/engine",
    "//components/sync/protocol:util",
    "//components/sync_sessions",
    "//components/tracing:startup_tracing",
    "//components/translate/core/browser",
    "//components/ukm",
    "//components/ukm:ukm_recorder",
    "//components/unified_consent",
    "//components/user_prefs",
    "//components/variations",
    "//components/vector_icons",
    "//components/version_info:channel",
    "//components/viz/host",
    "//components/web_resource",
    "//components/webapps/browser",
    "//components/webapps/browser:constants",
    "//content/public/common",
    "//content/public/common:main_function_params",
    "//device/bluetooth/public/cpp",
    "//extensions:extensions_browser_resources",
    "//extensions/browser/api",
    "//extensions/browser/api/feedback_private",
    "//extensions/browser/api/messaging",
    "//extensions/browser/api/runtime",
    "//extensions/browser/api/virtual_keyboard_private",
    "//extensions/browser/api/virtual_keyboard_private:virtual_keyboard_delegate",
    "//extensions/common:common_constants",
    "//extensions/common:mojom",
    "//gpu/command_buffer/client:gles2_interface",
    "//gpu/command_buffer/common",
    "//gpu/command_buffer/service",
    "//gpu/config",
    "//gpu/ipc/common",
    "//gpu/ipc/common:memory_stats_sources",
    "//ipc:message_support",
    "//media",
    "//media/capture:capture_switches",
    "//media/capture/video/chromeos/mojom:cros_camera",
    "//media/capture/video/chromeos/public",
    "//mojo/public/cpp/bindings:struct_traits",
    "//mojo/public/mojom/base",
    "//pdf:buildflags",
    "//printing/buildflags",
    "//printing/mojom",
    "//remoting/host/chromeos:features",
    "//remoting/host/chromeos:remoting_service",
    "//rlz/buildflags",
    "//sandbox/policy",
    "//services/audio/public/cpp",
    "//services/device/public/cpp/usb",
    "//services/metrics/public/cpp:gen_ukm_builders",
    "//services/network:network_service",
    "//services/preferences/public/cpp",
    "//services/service_manager/public/cpp",
    "//services/tracing/public/mojom",
    "//third_party/blink/public/common:headers",
    "//third_party/libipp",
    "//third_party/private_membership",
    "//third_party/protobuf:protobuf_lite",
    "//third_party/re2",
    "//third_party/securemessage/proto",
    "//third_party/xdg_shared_mime_info",
    "//third_party/zlib",
    "//third_party/zlib/google:compression_utils",
    "//third_party/zlib/google:zip",
    "//ui/accessibility:ax_enums_mojo",
    "//ui/base/clipboard",
    "//ui/base/clipboard:clipboard_types",
    "//ui/base/clipboard:file_info",
    "//ui/base/data_transfer_policy",
    "//ui/base/ime:text_input_types",
    "//ui/chromeos",
    "//ui/chromeos/resources",
    "//ui/chromeos/strings",
    "//ui/chromeos/styles:cros_tokens_color_mappings",
    "//ui/color",
    "//ui/color:color_headers",
    "//ui/color:mixers",
    "//ui/content_accelerators",
    "//ui/display/manager",
    "//ui/events:event_constants",
    "//ui/events/blink",
    "//ui/file_manager:resources",
    "//ui/gfx:color_utils",
    "//ui/gfx:gfx_switches",
    "//ui/gfx:memory_buffer",
    "//ui/gfx/codec",
    "//ui/gfx/geometry:geometry_skia",
    "//ui/gl",
    "//ui/message_center",
    "//ui/native_theme",
    "//ui/ozone",
    "//ui/strings:ui_strings",
    "//ui/wm",
  ]

  data_deps = [ ":mojo_service_manager_policy" ]

  if (enable_hibernate) {
    deps += [ "//chromeos/ash/components/dbus/hiberman" ]
  }

  if (enable_rlz) {
    deps += [ "//components/rlz" ]
  }

  if (is_cfm) {
    sources += [
      "chromebox_for_meetings/browser/cfm_browser_service.cc",
      "chromebox_for_meetings/browser/cfm_browser_service.h",
      "chromebox_for_meetings/browser/cfm_memory_details.cc",
      "chromebox_for_meetings/browser/cfm_memory_details.h",
      "chromebox_for_meetings/cfm_chrome_services.cc",
      "chromebox_for_meetings/cfm_chrome_services.h",
      "chromebox_for_meetings/device_info/device_info_service.cc",
      "chromebox_for_meetings/device_info/device_info_service.h",
      "chromebox_for_meetings/diagnostics/diagnostics_service.cc",
      "chromebox_for_meetings/diagnostics/diagnostics_service.h",
      "chromebox_for_meetings/external_display_brightness/external_display_brightness_service.cc",
      "chromebox_for_meetings/external_display_brightness/external_display_brightness_service.h",
      "chromebox_for_meetings/logger/cfm_logger_service.cc",
      "chromebox_for_meetings/logger/cfm_logger_service.h",
      "chromebox_for_meetings/logger/reporting_pipeline.cc",
      "chromebox_for_meetings/logger/reporting_pipeline.h",
      "chromebox_for_meetings/network_settings/network_settings_service.cc",
      "chromebox_for_meetings/network_settings/network_settings_service.h",
      "chromebox_for_meetings/service_adaptor.cc",
      "chromebox_for_meetings/service_adaptor.h",
    ]
    public_deps += [
      "//chromeos/ash/components/dbus/chromebox_for_meetings",
      "//chromeos/ash/services/chromebox_for_meetings/public/cpp",
      "//chromeos/ash/services/chromebox_for_meetings/public/mojom",
    ]
    deps += [
      "//chromeos/ash/components/chromebox_for_meetings",
      "//components/variations/field_trial_config",
      "//extensions/buildflags",
    ]
  }

  if (!is_official_build) {
    sources += [
      "web_applications/sample_system_web_app_info.cc",
      "web_applications/sample_system_web_app_info.h",
    ]
    deps += [
      "//ash/webui/resources:sample_system_web_app_resources",
      "//ash/webui/sample_system_web_app_ui",
    ]
  }

  if (use_cups) {
    sources += [
      "printing/cups_print_job_manager_impl.cc",
      "printing/cups_print_job_manager_utils.cc",
      "printing/cups_print_job_manager_utils.h",
      "printing/cups_proxy_service_delegate_impl.cc",
      "printing/cups_proxy_service_delegate_impl.h",
      "printing/cups_proxy_service_manager.cc",
      "printing/cups_proxy_service_manager.h",
      "printing/cups_proxy_service_manager_factory.cc",
      "printing/cups_proxy_service_manager_factory.h",
      "printing/printer_info_cups.cc",
    ]
    public_deps += [ "//chrome/services/cups_proxy" ]
  } else {
    sources += [
      "printing/fake_cups_print_job_manager.cc",
      "printing/fake_cups_print_job_manager.h",
      "printing/printer_info_stub.cc",
    ]
  }
}

copy("mojo_service_manager_policy") {
  sources = [ "net/network_health/network_health_service_policy.json" ]
  outputs = [ "$root_out_dir/mojo_service_manager/{{source_file_part}}" ]
}

static_library("arc_test_support") {
  testonly = true

  sources = [
    "arc/test/arc_data_removed_waiter.cc",
    "arc/test/arc_data_removed_waiter.h",
    "arc/test/test_arc_session_manager.cc",
    "arc/test/test_arc_session_manager.h",
  ]

  deps = [
    ":ash",
    "//base",
  ]
}

static_library("user_event_reporter_helper_test_support") {
  testonly = true

  sources = [
    "policy/reporting/user_event_reporter_helper_testing.cc",
    "policy/reporting/user_event_reporter_helper_testing.h",
  ]

  deps = [ ":ash" ]
}

proto_library("add_remove_user_event_proto") {
  sources =
      [ "../policy/messaging_layer/proto/synced/add_remove_user_event.proto" ]
  deps = [
    "//chrome/browser/policy/messaging_layer/proto:session_affiliated_user",
  ]
}

proto_library("attestation_proto") {
  sources = [ "attestation/attestation_key_payload.proto" ]
}

proto_library("device_configuration_proto") {
  sources = [ "login/screens/recommend_apps/device_configuration.proto" ]
  generate_python = false
}

proto_library("key_permissions_proto") {
  sources = [ "//third_party/cros_system_api/dbus/chaps/key_permissions.proto" ]
  generate_python = false

  proto_out_dir = "chrome/browser/ash/platform_keys/key_permissions"
}

proto_library("login_logout_event_proto") {
  sources =
      [ "../policy/messaging_layer/proto/synced/login_logout_event.proto" ]
  deps = [
    "//chrome/browser/policy/messaging_layer/proto:session_affiliated_user",
  ]
}

proto_library("lock_unlock_event_proto") {
  sources = [ "../policy/messaging_layer/proto/synced/lock_unlock_event.proto" ]
  deps = [
    "//chrome/browser/policy/messaging_layer/proto:session_affiliated_user",
  ]
}
proto_library("print_job_info_proto") {
  sources = [ "printing/history/print_job_info.proto" ]
}

proto_library("screen_brightness_event_proto") {
  sources = [ "power/ml/screen_brightness_event.proto" ]
}

proto_library("user_activity_event_proto") {
  sources = [ "power/ml/user_activity_event.proto" ]
}

device_policy_remover_path = "$target_gen_dir/device_policy_remover.cc"

action("device_policy_remover_generate") {
  script = "../ash/policy/tools/generate_device_policy_remover.py"
  descriptor_pool_path = "//third_party/protobuf/python"
  symbol_database_path = "$root_out_dir/pyproto"

  # This is provided by //components/policy/proto listed in public_deps.
  # The containing directory is in a separate variable because that's what
  # the script expects as an argument.
  chrome_device_policy_pb2_dir = "$root_out_dir/pyproto/components/policy/proto"
  chrome_device_policy_pb2_path =
      "$chrome_device_policy_pb2_dir/chrome_device_policy_pb2.py"

  sources = [
    # It's important to explicitly list which files provided by this action's
    # dependencies are actually used by this action, because the action is not
    # automatically re-run on changes in one of the public_deps. See
    # https://crbug.com/933359 for more information.
    chrome_device_policy_pb2_path,
  ]

  outputs = [ device_policy_remover_path ]

  args = [
    # generated file name
    rebase_path(device_policy_remover_path, root_build_dir),

    # directories for PATH variable to compile generated file
    rebase_path(descriptor_pool_path, root_build_dir),
    rebase_path(symbol_database_path, root_build_dir),
    rebase_path(chrome_device_policy_pb2_dir, root_build_dir),
  ]

  public_deps = [
    "//components/policy/proto",
    "//third_party/protobuf:py_proto",
  ]
}

static_library("device_policy_remover_generated") {
  sources = [ device_policy_remover_path ]

  public_deps = [ ":device_policy_remover_generate" ]
}

fuzzer_test("smb_url_fuzzer") {
  sources = [
    "smb_client/smb_constants.cc",
    "smb_client/smb_constants.h",
    "smb_client/smb_url.cc",
    "smb_client/smb_url.h",
    "smb_client/smb_url_fuzzer.cc",
  ]

  deps = [
    "//base",
    "//base:i18n",
    "//url",
  ]

  dict = "smb_client/fuzzer_data/smb_url_fuzzer.dict"

  seed_corpus = "smb_client/fuzzer_data/smb_url_corpus"
}

fuzzer_test("zeroconf_printer_detector_fuzzer") {
  sources = [ "printing/zeroconf_printer_detector_fuzzer.cc" ]
  deps = [
    ":ash",
    "//base",
    "//base/test:test_support",
    "//chrome/browser",
  ]
}

if (use_libfuzzer) {
  fuzzer_test("policy_fuzzer") {
    sources = [ "policy/fuzzer/policy_fuzzer.cc" ]

    deps = [
      ":policy_fuzzer_proto",

      # :policy_fuzzer_proto should be the first dependency to avoid duplicate
      # symbols when linking.
      ":ash",
      "//base",
      "//base:i18n",
      "//base/test:test_support",
      "//chrome/browser",
      "//chrome/common:constants",
      "//chromeos/ash/components/install_attributes",
      "//components/policy:generated",
      "//components/policy/core/browser",
      "//components/policy/core/common",
      "//components/policy/core/common:common_constants",
      "//components/prefs",
      "//third_party/libprotobuf-mutator",
      "//ui/base",
    ]
  }

  fuzzable_proto_library("policy_fuzzer_proto") {
    sources = [ "policy/fuzzer/policy_fuzzer.proto" ]

    import_dirs = [
      # Add the fuzzable (full-protobuf) .pb.h files into include directories.
      # This item should come first, so that regular (lite-protobuf) .pb.h
      # analogs don't get included, as this would cause compilation issues due
      # to missing symbols.
      "//components/policy/proto/fuzzer",

      # For imports of proto files from the source tree.
      "//components/policy/proto",

      # For imports of autogenerated proto files.
      "$root_gen_dir/components/policy/proto",
    ]

    proto_deps = [ "//components/policy/proto/fuzzer" ]

    link_deps = [ "//components/policy/proto/fuzzer" ]
  }

  fuzzer_test("policy_single_install_event_log_fuzzer") {
    sources = [ "policy/reporting/single_install_event_log_fuzzer.cc" ]

    deps = [
      ":ash",
      "//base",
      "//chrome/browser",
    ]
  }

  fuzzer_test("policy_remote_commands_fuzzer") {
    sources = [ "policy/remote_commands/remote_commands_fuzzer.cc" ]

    deps = [
      ":ash",
      "//base",
      "//base:i18n",
      "//chrome/browser",
      "//components/policy/proto",
    ]
  }
}