summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/browser/chromeos/BUILD.gn
blob: de048af49af1266aebb478f57e3134db4459bb40 (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
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/config/features.gni")
import("//build/config/ui.gni")
import("//extensions/buildflags/buildflags.gni")
import("//media/media_options.gni")
import("//printing/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")
import("//ui/ozone/ozone.gni")

assert(is_chromeos)
assert(use_ozone)

source_set("chromeos") {
  assert(enable_extensions, "ChromeOS Chrome has to be built with extensions")

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

  public_deps = [
    "//ash/strings",
    "//chrome:extra_resources",
    "//chrome:resources",
    "//chrome:strings",
    "//chrome/app/resources:platform_locale_settings",
    "//chrome/app/theme:chrome_unscaled_resources",
    "//chrome/app/theme:theme_resources",
    "//chrome/browser/chromeos/power/ml:user_activity_ukm_logger_helpers",
    "//chromeos/dbus:cicerone_proto",
    "//chromeos/dbus:concierge_proto",
    "//chromeos/dbus:runtime_probe_proto",
    "//chromeos/dbus:seneschal_proto",
    "//chromeos/dbus:vm_applications_apps_proto",
    "//chromeos/dbus/power:power_manager_proto",
    "//chromeos/services/assistant/public/mojom",
    "//chromeos/strings",
    "//components/policy/proto",
    "//components/signin/core/browser",
    "//content/app/resources",
    "//mojo/public/cpp/bindings",
    "//ui/accessibility/mojom",
    "//ui/chromeos/resources",
    "//ui/chromeos/strings",
    "//ui/resources",
    "//ui/strings",
  ]

  deps = [
    ":attestation_proto",
    ":backdrop_wallpaper_proto",
    ":device_configuration_proto",
    ":device_policy_remover_generated",
    ":print_job_info_proto",
    ":screen_brightness_event_proto",
    ":user_activity_event_proto",
    "crostini:crostini_installer_types_mojom",
    "//apps",
    "//ash",
    "//ash/public/cpp",
    "//ash/system/message_center/arc",
    "//build:branding_buildflags",
    "//chrome/app:command_ids",
    "//chrome/app/vector_icons",
    "//chrome/browser/apps/platform_apps",
    "//chrome/browser/apps/platform_apps/api",
    "//chrome/browser/chromeos/power/ml/smart_dim",
    "//chrome/browser/devtools",
    "//chrome/browser/extensions",
    "//chrome/browser/resource_coordinator:tab_metrics_event_proto",
    "//chrome/browser/ssl:proto",
    "//chrome/browser/ui/webui/bluetooth_internals:mojo_bindings",
    "//chrome/browser/web_applications",
    "//chrome/browser/web_applications:web_applications_on_extensions",
    "//chrome/browser/web_applications/components",
    "//chrome/browser/web_applications/extensions:extensions",
    "//chrome/common",
    "//chrome/common/extensions/api",
    "//chrome/services/app_service:lib",
    "//chrome/services/app_service/public/cpp:app_update",
    "//chrome/services/file_util/public/cpp",
    "//chrome/services/wilco_dtc_supportd/public/mojom",
    "//chromeos",
    "//chromeos/assistant:buildflags",
    "//chromeos/attestation",
    "//chromeos/audio",
    "//chromeos/components/account_manager",
    "//chromeos/components/drivefs",
    "//chromeos/components/drivefs/mojom",
    "//chromeos/components/multidevice",
    "//chromeos/components/multidevice/logging",
    "//chromeos/components/power",
    "//chromeos/components/proximity_auth",
    "//chromeos/components/tether",
    "//chromeos/cryptohome",
    "//chromeos/dbus",
    "//chromeos/dbus:metrics_event_proto",
    "//chromeos/dbus:oobe_config_proto",
    "//chromeos/dbus:plugin_vm_service_proto",
    "//chromeos/dbus:update_engine_proto",
    "//chromeos/dbus:vm_plugin_dispatcher_proto",
    "//chromeos/dbus/audio",
    "//chromeos/dbus/auth_policy",
    "//chromeos/dbus/auth_policy:authpolicy_proto",
    "//chromeos/dbus/biod",
    "//chromeos/dbus/constants",
    "//chromeos/dbus/cros_healthd",
    "//chromeos/dbus/cryptohome",
    "//chromeos/dbus/cryptohome:attestation_proto",
    "//chromeos/dbus/cryptohome:cryptohome_proto",
    "//chromeos/dbus/cryptohome:cryptohome_signkey_proto",
    "//chromeos/dbus/cups_proxy",
    "//chromeos/dbus/dlcservice",
    "//chromeos/dbus/dlcservice:dlcservice_proto",
    "//chromeos/dbus/kerberos",
    "//chromeos/dbus/kerberos:kerberos_proto",
    "//chromeos/dbus/machine_learning",
    "//chromeos/dbus/media_analytics",
    "//chromeos/dbus/media_analytics:media_perception_proto",
    "//chromeos/dbus/permission_broker",
    "//chromeos/dbus/power",
    "//chromeos/dbus/services:services",
    "//chromeos/dbus/session_manager",
    "//chromeos/dbus/session_manager:login_manager_proto",
    "//chromeos/dbus/system_clock",
    "//chromeos/dbus/upstart",
    "//chromeos/disks",
    "//chromeos/geolocation",
    "//chromeos/login/auth",
    "//chromeos/login/login_state",
    "//chromeos/login/session",
    "//chromeos/network",
    "//chromeos/services/assistant/public/cpp:prefs",
    "//chromeos/services/cros_healthd/public/cpp",
    "//chromeos/services/cros_healthd/public/mojom",
    "//chromeos/services/device_sync",
    "//chromeos/services/device_sync/public/cpp",
    "//chromeos/services/ime:constants",
    "//chromeos/services/ime/public/cpp:buildflags",
    "//chromeos/services/ime/public/mojom",
    "//chromeos/services/machine_learning/public/cpp",
    "//chromeos/services/machine_learning/public/mojom",
    "//chromeos/services/multidevice_setup/public/cpp",
    "//chromeos/services/multidevice_setup/public/cpp:android_sms_app_helper_delegate",
    "//chromeos/services/multidevice_setup/public/cpp:android_sms_pairing_state_tracker",
    "//chromeos/services/multidevice_setup/public/cpp:auth_token_validator",
    "//chromeos/services/multidevice_setup/public/cpp:oobe_completion_tracker",
    "//chromeos/services/multidevice_setup/public/cpp:prefs",
    "//chromeos/services/secure_channel",
    "//chromeos/services/secure_channel/public/cpp/client",
    "//chromeos/settings",
    "//chromeos/system",
    "//chromeos/timezone",
    "//chromeos/tpm",
    "//components/arc",
    "//components/arc/media_session",
    "//components/arc/mojom:mojom_traits",
    "//components/browser_sync",
    "//components/captive_portal",
    "//components/component_updater:crl_set_remover",
    "//components/consent_auditor:consent_auditor",
    "//components/constrained_window",
    "//components/content_settings/core/browser",
    "//components/crash/content/app",
    "//components/crx_file",
    "//components/device_event_log",
    "//components/download/content/public",
    "//components/drive",
    "//components/drive:drive_chromeos",
    "//components/exo",
    "//components/feedback",
    "//components/flags_ui",
    "//components/gcm_driver",
    "//components/google/core/common",
    "//components/guest_os",
    "//components/guest_os:prefs",
    "//components/guest_view/browser",
    "//components/image_fetcher/core",
    "//components/invalidation/impl",
    "//components/keep_alive_registry",
    "//components/keyed_service/content",
    "//components/keyed_service/core",
    "//components/language/core/browser",
    "//components/language/core/common",
    "//components/login",
    "//components/metrics:serialization",
    "//components/omnibox/browser",
    "//components/onc",
    "//components/ownership",
    "//components/password_manager/core/browser",
    "//components/password_manager/core/browser:hash_password_manager",
    "//components/policy:generated",
    "//components/policy/core/browser",
    "//components/policy/core/common",
    "//components/policy/core/common:common_constants",
    "//components/pref_registry",
    "//components/printing/common:mojo_interfaces",
    "//components/proxy_config",
    "//components/quirks",
    "//components/rappor",
    "//components/renderer_context_menu",
    "//components/rlz",
    "//components/safe_browsing:csd_proto",
    "//components/safe_browsing/db:metadata_proto",
    "//components/session_manager/core",
    "//components/signin/public/identity_manager",
    "//components/signin/public/webdata",
    "//components/storage_monitor",
    "//components/strings",
    "//components/sync",
    "//components/sync_device_info",
    "//components/sync_preferences",
    "//components/tracing:startup_tracing",
    "//components/translate/core/browser",
    "//components/ukm/content",
    "//components/user_manager",
    "//components/vector_icons",

    # This depends directly on the variations target, rather than just
    # transitively via the common target because the proto sources need to
    # be generated before code in this target can start building.
    "//components/variations",
    "//components/viz/host",
    "//components/web_modal",
    "//components/web_resource",
    "//components/webdata/common",
    "//components/zoom",
    "//content/public/browser",
    "//content/public/common",
    "//crypto",
    "//dbus",
    "//device/bluetooth",
    "//extensions/browser",
    "//extensions/browser/kiosk",
    "//extensions/common",
    "//google_apis/drive",
    "//gpu",
    "//gpu/ipc/host",
    "//gpu/ipc/service",
    "//media",
    "//media/mojo/mojom",
    "//mojo/public/cpp/platform",
    "//mojo/public/cpp/system",
    "//net",

    # TODO: care about enable_basic_printing and enable_print_preview.
    "//ash/keyboard/ui",
    "//printing",
    "//remoting/host/it2me:chrome_os_host",
    "//services/audio/public/cpp",
    "//services/data_decoder/public/cpp",
    "//services/device/public/cpp/usb",
    "//services/device/public/mojom",
    "//services/device/public/mojom:usb",
    "//services/identity/public/cpp:cpp_types",
    "//services/identity/public/mojom",
    "//services/metrics/public/cpp:ukm_builders",
    "//services/preferences/public/mojom",
    "//services/resource_coordinator/public/cpp:resource_coordinator_cpp",
    "//services/service_manager/public/cpp",
    "//skia",
    "//storage/browser",
    "//storage/common",
    "//third_party/blink/public/common",
    "//third_party/cacheinvalidation",
    "//third_party/icu",
    "//third_party/libipp",
    "//third_party/metrics_proto",
    "//third_party/protobuf:protobuf_lite",
    "//third_party/protobuf:protoc($host_toolchain)",
    "//third_party/re2",
    "//third_party/zlib",
    "//third_party/zlib/google:compression_utils",
    "//ui/accessibility",
    "//ui/aura",
    "//ui/base",
    "//ui/base/idle",
    "//ui/base/ime/chromeos",
    "//ui/chromeos",
    "//ui/chromeos/events",
    "//ui/compositor",
    "//ui/content_accelerators",
    "//ui/display",
    "//ui/display/manager",
    "//ui/events:dom_keycode_converter",
    "//ui/events/blink",
    "//ui/events/devices",
    "//ui/events/platform",
    "//ui/file_manager",
    "//ui/gfx:gfx_switches",
    "//ui/message_center",
    "//ui/message_center/public/cpp",
    "//ui/ozone",
    "//ui/shell_dialogs",
    "//ui/snapshot",
    "//ui/views",
    "//ui/views/controls/webview",
    "//ui/web_dialogs",
    "//ui/wm",
    "//ui/wm/public",
    "//url",
  ]
  data_deps = [
    ":dbus_service_files",
  ]

  allow_circular_includes_from = [
    "//chrome/browser/extensions",
    "//chrome/browser/apps/platform_apps/api",
    "//chrome/browser/web_applications",
    "//chrome/browser/web_applications/components",
  ]

  sources = [
    "accessibility/accessibility_extension_loader.cc",
    "accessibility/accessibility_extension_loader.h",
    "accessibility/accessibility_input_method_observer.cc",
    "accessibility/accessibility_input_method_observer.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_chromeos.cc",
    "accessibility/dictation_chromeos.h",
    "accessibility/event_handler_common.cc",
    "accessibility/event_handler_common.h",
    "accessibility/magnification_manager.cc",
    "accessibility/magnification_manager.h",
    "accessibility/magnifier_type.h",
    "accessibility/select_to_speak_event_handler_delegate.cc",
    "accessibility/select_to_speak_event_handler_delegate.h",
    "accessibility/spoken_feedback_event_rewriter_delegate.cc",
    "accessibility/spoken_feedback_event_rewriter_delegate.h",
    "accessibility/switch_access_event_handler_delegate.cc",
    "accessibility/switch_access_event_handler_delegate.h",
    "accessibility/switch_access_panel.cc",
    "accessibility/switch_access_panel.h",
    "account_manager/account_manager_migrator.cc",
    "account_manager/account_manager_migrator.h",
    "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_util.cc",
    "account_manager/account_manager_util.h",
    "account_manager/account_migration_runner.cc",
    "account_manager/account_migration_runner.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",
    "android_sms/pairing_lost_notifier.cc",
    "android_sms/pairing_lost_notifier.h",
    "app_mode/app_launch_utils.cc",
    "app_mode/app_launch_utils.h",
    "app_mode/app_session.cc",
    "app_mode/app_session.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_external_loader.cc",
    "app_mode/kiosk_app_external_loader.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_manager.cc",
    "app_mode/kiosk_app_manager.h",
    "app_mode/kiosk_app_manager_observer.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_diagnosis_runner.cc",
    "app_mode/kiosk_diagnosis_runner.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/kiosk_session_plugin_handler.cc",
    "app_mode/kiosk_session_plugin_handler.h",
    "app_mode/kiosk_session_plugin_handler_delegate.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/startup_app_launcher_update_checker.cc",
    "app_mode/startup_app_launcher_update_checker.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",
    "apps/intent_helper/chromeos_apps_navigation_throttle.cc",
    "apps/intent_helper/chromeos_apps_navigation_throttle.h",
    "apps/intent_helper/common_apps_navigation_throttle.cc",
    "apps/intent_helper/common_apps_navigation_throttle.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_info_data.h",
    "arc/accessibility/arc_accessibility_util.cc",
    "arc/accessibility/arc_accessibility_util.h",
    "arc/accessibility/ax_tree_source_arc.cc",
    "arc/accessibility/ax_tree_source_arc.h",
    "arc/app_shortcuts/arc_app_shortcut_item.cc",
    "arc/app_shortcuts/arc_app_shortcut_item.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_app_id_provider_impl.cc",
    "arc/arc_app_id_provider_impl.h",
    "arc/arc_migration_constants.h",
    "arc/arc_migration_guide_notification.cc",
    "arc/arc_migration_guide_notification.h",
    "arc/arc_optin_uma.cc",
    "arc/arc_optin_uma.h",
    "arc/arc_support_host.cc",
    "arc/arc_support_host.h",
    "arc/arc_util.cc",
    "arc/arc_util.h",
    "arc/arc_web_contents_data.cc",
    "arc/arc_web_contents_data.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/cast_receiver/arc_cast_receiver_service.cc",
    "arc/cast_receiver/arc_cast_receiver_service.h",
    "arc/enterprise/arc_enterprise_reporting_service.cc",
    "arc/enterprise/arc_enterprise_reporting_service.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/arc_cert_store_bridge.cc",
    "arc/enterprise/cert_store/arc_cert_store_bridge.h",
    "arc/enterprise/cert_store/arc_smart_card_manager_bridge.cc",
    "arc/enterprise/cert_store/arc_smart_card_manager_bridge.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/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_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_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/icon_decode_request.cc",
    "arc/icon_decode_request.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/input_connection_impl.cc",
    "arc/input_method_manager/input_connection_impl.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/intent_helper/arc_external_protocol_dialog.cc",
    "arc/intent_helper/arc_external_protocol_dialog.h",
    "arc/intent_helper/arc_intent_picker_app_fetcher.cc",
    "arc/intent_helper/arc_intent_picker_app_fetcher.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/open_with_menu.cc",
    "arc/intent_helper/open_with_menu.h",
    "arc/intent_helper/start_smart_selection_action_menu.cc",
    "arc/intent_helper/start_smart_selection_action_menu.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/notification/arc_boot_error_notification.cc",
    "arc/notification/arc_boot_error_notification.h",
    "arc/notification/arc_provision_notification_service.cc",
    "arc/notification/arc_provision_notification_service.h",
    "arc/notification/arc_supervision_transition_notification.cc",
    "arc/notification/arc_supervision_transition_notification.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_util.cc",
    "arc/policy/arc_policy_util.h",
    "arc/print/arc_print_service.cc",
    "arc/print/arc_print_service.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/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/arc_play_store_enabled_preference_handler.cc",
    "arc/session/arc_play_store_enabled_preference_handler.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/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",
    "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/enrollment_certificate_uploader.h",
    "attestation/enrollment_certificate_uploader_impl.cc",
    "attestation/enrollment_certificate_uploader_impl.h",
    "attestation/enrollment_policy_observer.cc",
    "attestation/enrollment_policy_observer.h",
    "attestation/machine_certificate_uploader.h",
    "attestation/machine_certificate_uploader_impl.cc",
    "attestation/machine_certificate_uploader_impl.h",
    "attestation/platform_verification_dialog.cc",
    "attestation/platform_verification_dialog.h",
    "attestation/platform_verification_flow.cc",
    "attestation/platform_verification_flow.h",
    "attestation/tpm_challenge_key.cc",
    "attestation/tpm_challenge_key.h",
    "authpolicy/auth_policy_credentials_manager.cc",
    "authpolicy/auth_policy_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",
    "backdrop_wallpaper_handlers/backdrop_wallpaper_handlers.cc",
    "backdrop_wallpaper_handlers/backdrop_wallpaper_handlers.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",
    "camera_detector.cc",
    "camera_detector.h",
    "camera_presence_notifier.cc",
    "camera_presence_notifier.h",
    "certificate_provider/certificate_info.cc",
    "certificate_provider/certificate_info.h",
    "certificate_provider/certificate_provider.h",
    "certificate_provider/certificate_provider_service.cc",
    "certificate_provider/certificate_provider_service.h",
    "certificate_provider/certificate_provider_service_factory.cc",
    "certificate_provider/certificate_provider_service_factory.h",
    "certificate_provider/certificate_requests.cc",
    "certificate_provider/certificate_requests.h",
    "certificate_provider/pin_dialog_manager.cc",
    "certificate_provider/pin_dialog_manager.h",
    "certificate_provider/security_token_pin_dialog_host.h",
    "certificate_provider/security_token_pin_dialog_host_popup_impl.cc",
    "certificate_provider/security_token_pin_dialog_host_popup_impl.h",
    "certificate_provider/sign_requests.cc",
    "certificate_provider/sign_requests.h",
    "certificate_provider/thread_safe_certificate_map.cc",
    "certificate_provider/thread_safe_certificate_map.h",
    "child_accounts/child_policy_observer.cc",
    "child_accounts/child_policy_observer.h",
    "child_accounts/consumer_status_reporting_service.cc",
    "child_accounts/consumer_status_reporting_service.h",
    "child_accounts/consumer_status_reporting_service_factory.cc",
    "child_accounts/consumer_status_reporting_service_factory.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/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/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",
    "chrome_browser_main_chromeos.cc",
    "chrome_browser_main_chromeos.h",
    "chrome_content_browser_client_chromeos_part.cc",
    "chrome_content_browser_client_chromeos_part.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_util.cc",
    "crostini/ansible/ansible_management_util.h",
    "crostini/ansible/pending_software_changes.cc",
    "crostini/ansible/pending_software_changes.h",
    "crostini/ansible/software_config.cc",
    "crostini/ansible/software_config.h",
    "crostini/crostini_export_import.cc",
    "crostini/crostini_export_import.h",
    "crostini/crostini_export_import_notification.cc",
    "crostini/crostini_export_import_notification.h",
    "crostini/crostini_features.cc",
    "crostini/crostini_features.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_manager.cc",
    "crostini/crostini_manager.h",
    "crostini/crostini_manager_factory.cc",
    "crostini/crostini_manager_factory.h",
    "crostini/crostini_mime_types_service.cc",
    "crostini/crostini_mime_types_service.h",
    "crostini/crostini_mime_types_service_factory.cc",
    "crostini/crostini_mime_types_service_factory.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_pref_names.cc",
    "crostini/crostini_pref_names.h",
    "crostini/crostini_registry_service.cc",
    "crostini/crostini_registry_service.h",
    "crostini/crostini_registry_service_factory.cc",
    "crostini/crostini_registry_service_factory.h",
    "crostini/crostini_remover.cc",
    "crostini/crostini_remover.h",
    "crostini/crostini_reporting_util.cc",
    "crostini/crostini_reporting_util.h",
    "crostini/crostini_simple_types.h",
    "crostini/crostini_terminal.cc",
    "crostini/crostini_terminal.h",
    "crostini/crostini_unsupported_action_notifier.cc",
    "crostini/crostini_unsupported_action_notifier.h",
    "crostini/crostini_util.cc",
    "crostini/crostini_util.h",
    "crostini/crosvm_metrics.cc",
    "crostini/crosvm_metrics.h",
    "crostini/crosvm_process_list.cc",
    "crostini/crosvm_process_list.h",
    "crostini/fake_crostini_installer_ui_delegate.cc",
    "crostini/fake_crostini_installer_ui_delegate.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/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/dbus_helper.cc",
    "dbus/dbus_helper.h",
    "dbus/drive_file_stream_service_provider.cc",
    "dbus/drive_file_stream_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/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/plugin_vm_service_provider.cc",
    "dbus/plugin_vm_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/virtual_file_request_service_provider.cc",
    "dbus/virtual_file_request_service_provider.h",
    "dbus/vm_applications_service_provider.cc",
    "dbus/vm_applications_service_provider.h",
    "device_sync/device_sync_client_factory.cc",
    "device_sync/device_sync_client_factory.h",
    "display/quirks_manager_delegate_impl.cc",
    "display/quirks_manager_delegate_impl.h",
    "drive/debug_info_collector.cc",
    "drive/debug_info_collector.h",
    "drive/download_handler.cc",
    "drive/download_handler.h",
    "drive/drive_integration_service.cc",
    "drive/drive_integration_service.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",
    "drive/write_on_cache_file.cc",
    "drive/write_on_cache_file.h",
    "eol_notification.cc",
    "eol_notification.h",
    "events/event_rewriter_delegate_impl.cc",
    "events/event_rewriter_delegate_impl.h",
    "extensions/active_tab_permission_granter_delegate_chromeos.cc",
    "extensions/active_tab_permission_granter_delegate_chromeos.h",
    "extensions/default_app_order.cc",
    "extensions/default_app_order.h",
    "extensions/default_web_app_ids.h",
    "extensions/device_local_account_external_policy_loader.cc",
    "extensions/device_local_account_external_policy_loader.h",
    "extensions/device_local_account_management_policy_provider.cc",
    "extensions/device_local_account_management_policy_provider.h",
    "extensions/dictionary_event_router.cc",
    "extensions/dictionary_event_router.h",
    "extensions/extension_tab_util_delegate_chromeos.cc",
    "extensions/extension_tab_util_delegate_chromeos.h",
    "extensions/external_cache.cc",
    "extensions/external_cache.h",
    "extensions/external_cache_delegate.h",
    "extensions/external_cache_impl.cc",
    "extensions/external_cache_impl.h",
    "extensions/gfx_utils.cc",
    "extensions/gfx_utils.h",
    "extensions/ime_menu_event_router.cc",
    "extensions/ime_menu_event_router.h",
    "extensions/info_private_api.cc",
    "extensions/info_private_api.h",
    "extensions/input_method_event_router.cc",
    "extensions/input_method_event_router.h",
    "extensions/install_limiter.cc",
    "extensions/install_limiter.h",
    "extensions/install_limiter_factory.cc",
    "extensions/install_limiter_factory.h",
    "extensions/launcher_search_provider.cc",
    "extensions/launcher_search_provider.h",
    "extensions/media_player_event_router.cc",
    "extensions/media_player_event_router.h",
    "extensions/permissions_updater_delegate_chromeos.cc",
    "extensions/permissions_updater_delegate_chromeos.h",
    "extensions/public_session_permission_helper.cc",
    "extensions/public_session_permission_helper.h",
    "extensions/signin_screen_policy_provider.cc",
    "extensions/signin_screen_policy_provider.h",
    "external_metrics.cc",
    "external_metrics.h",
    "external_protocol_dialog.cc",
    "external_protocol_dialog.h",
    "file_manager/app_id.h",
    "file_manager/arc_file_tasks.cc",
    "file_manager/arc_file_tasks.h",
    "file_manager/crostini_file_tasks.cc",
    "file_manager/crostini_file_tasks.h",
    "file_manager/documents_provider_root_manager.cc",
    "file_manager/documents_provider_root_manager.h",
    "file_manager/file_browser_handlers.cc",
    "file_manager/file_browser_handlers.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/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/select_file_dialog_util.cc",
    "file_manager/select_file_dialog_util.h",
    "file_manager/snapshot_manager.cc",
    "file_manager/snapshot_manager.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/web_file_tasks.cc",
    "file_manager/web_file_tasks.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",
    "fileapi/external_file_resolver.cc",
    "fileapi/external_file_resolver.h",
    "fileapi/external_file_url_loader_factory.cc",
    "fileapi/external_file_url_loader_factory.h",
    "fileapi/external_file_url_util.cc",
    "fileapi/external_file_url_util.h",
    "fileapi/file_access_permissions.cc",
    "fileapi/file_access_permissions.h",
    "fileapi/file_system_backend.cc",
    "fileapi/file_system_backend.h",
    "fileapi/file_system_backend_delegate.h",
    "fileapi/mtp_file_system_backend_delegate.cc",
    "fileapi/mtp_file_system_backend_delegate.h",
    "fileapi/mtp_watcher_manager.cc",
    "fileapi/mtp_watcher_manager.h",
    "fileapi/recent_arc_media_source.cc",
    "fileapi/recent_arc_media_source.h",
    "fileapi/recent_disk_source.cc",
    "fileapi/recent_disk_source.h",
    "fileapi/recent_drive_source.cc",
    "fileapi/recent_drive_source.h",
    "fileapi/recent_file.cc",
    "fileapi/recent_file.h",
    "fileapi/recent_model.cc",
    "fileapi/recent_model.h",
    "fileapi/recent_model_factory.cc",
    "fileapi/recent_model_factory.h",
    "fileapi/recent_source.cc",
    "fileapi/recent_source.h",
    "first_run/drive_first_run_controller.cc",
    "first_run/drive_first_run_controller.h",
    "first_run/first_run.cc",
    "first_run/first_run.h",
    "first_run/first_run_controller.cc",
    "first_run/first_run_controller.h",
    "first_run/first_run_view.cc",
    "first_run/first_run_view.h",
    "first_run/goodies_displayer.cc",
    "first_run/goodies_displayer.h",
    "first_run/step.cc",
    "first_run/step.h",
    "first_run/step_names.cc",
    "first_run/step_names.h",
    "first_run/steps/app_list_step.cc",
    "first_run/steps/app_list_step.h",
    "first_run/steps/tray_step.cc",
    "first_run/steps/tray_step.h",
    "guest_os/guest_os_pref_names.cc",
    "guest_os/guest_os_pref_names.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",
    "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/browser_state_monitor.cc",
    "input_method/browser_state_monitor.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_impl.cc",
    "input_method/component_extension_ime_manager_impl.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_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_syncer.cc",
    "input_method/input_method_syncer.h",
    "kerberos/kerberos_credentials_manager.cc",
    "kerberos/kerberos_credentials_manager.h",
    "kerberos/kerberos_ticket_expiry_notification.cc",
    "kerberos/kerberos_ticket_expiry_notification.h",
    "language_preferences.cc",
    "language_preferences.h",
    "launcher_search_provider/error_reporter.cc",
    "launcher_search_provider/error_reporter.h",
    "launcher_search_provider/launcher_search_provider_service.cc",
    "launcher_search_provider/launcher_search_provider_service.h",
    "launcher_search_provider/launcher_search_provider_service_factory.cc",
    "launcher_search_provider/launcher_search_provider_service_factory.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_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/app_launch_controller.cc",
    "login/app_launch_controller.h",
    "login/app_launch_signin_screen.cc",
    "login/app_launch_signin_screen.h",
    "login/arc_kiosk_controller.cc",
    "login/arc_kiosk_controller.h",
    "login/auth/auth_prewarmer.cc",
    "login/auth/auth_prewarmer.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/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/demo_mode/demo_app_launcher.cc",
    "login/demo_mode/demo_app_launcher.h",
    "login/demo_mode/demo_extensions_external_loader.cc",
    "login/demo_mode/demo_extensions_external_loader.h",
    "login/demo_mode/demo_mode_detector.cc",
    "login/demo_mode/demo_mode_detector.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_screenlock_state_handler.cc",
    "login/easy_unlock/easy_unlock_screenlock_state_handler.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_chromeos.cc",
    "login/easy_unlock/easy_unlock_service_signin_chromeos.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/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/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_screen_extensions_lifetime_manager.cc",
    "login/login_screen_extensions_lifetime_manager.h",
    "login/login_screen_extensions_storage_cleaner.cc",
    "login/login_screen_extensions_storage_cleaner.h",
    "login/login_wizard.h",
    "login/mojo_system_info_dispatcher.cc",
    "login/mojo_system_info_dispatcher.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/fingerprint_storage.cc",
    "login/quick_unlock/fingerprint_storage.h",
    "login/quick_unlock/pin_backend.cc",
    "login/quick_unlock/pin_backend.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/saml/in_session_password_change_manager.cc",
    "login/saml/in_session_password_change_manager.h",
    "login/saml/password_expiry_notification.cc",
    "login/saml/password_expiry_notification.h",
    "login/saml/public_saml_url_fetcher.cc",
    "login/saml/public_saml_url_fetcher.h",
    "login/saml/saml_offline_signin_limiter.cc",
    "login/saml/saml_offline_signin_limiter.h",
    "login/saml/saml_offline_signin_limiter_factory.cc",
    "login/saml/saml_offline_signin_limiter_factory.h",
    "login/saml/saml_profile_prefs.cc",
    "login/saml/saml_profile_prefs.h",
    "login/screen_manager.cc",
    "login/screen_manager.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/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/discover_screen.cc",
    "login/screens/discover_screen.h",
    "login/screens/enable_debugging_screen.cc",
    "login/screens/enable_debugging_screen.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/fingerprint_setup_screen.cc",
    "login/screens/fingerprint_setup_screen.h",
    "login/screens/gaia_screen.cc",
    "login/screens/gaia_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/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/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/supervision_transition_screen.cc",
    "login/screens/supervision_transition_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/update_required_screen.cc",
    "login/screens/update_required_screen.h",
    "login/screens/update_screen.cc",
    "login/screens/update_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_ash_impl.cc",
    "login/security_token_pin_dialog_host_ash_impl.h",
    "login/session/chrome_session_manager.cc",
    "login/session/chrome_session_manager.h",
    "login/session/user_session_manager.cc",
    "login/session/user_session_manager.h",
    "login/signin/auth_sync_observer.cc",
    "login/signin/auth_sync_observer.h",
    "login/signin/auth_sync_observer_factory.cc",
    "login/signin/auth_sync_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/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_screen_controller.cc",
    "login/signin_screen_controller.h",
    "login/signin_specifics.h",
    "login/startup_utils.cc",
    "login/startup_utils.h",
    "login/supervised/supervised_user_authentication.cc",
    "login/supervised/supervised_user_authentication.h",
    "login/supervised/supervised_user_constants.cc",
    "login/supervised/supervised_user_constants.h",
    "login/supervised/supervised_user_login_flow.cc",
    "login/supervised/supervised_user_login_flow.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/login_screen_extension_ui_create_options.cc",
    "login/ui/login_screen_extension_ui/login_screen_extension_ui_create_options.h",
    "login/ui/login_screen_extension_ui/login_screen_extension_ui_dialog_delegate.cc",
    "login/ui/login_screen_extension_ui/login_screen_extension_ui_dialog_delegate.h",
    "login/ui/login_screen_extension_ui/login_screen_extension_ui_web_dialog_view.cc",
    "login/ui/login_screen_extension_ui/login_screen_extension_ui_web_dialog_view.h",
    "login/ui/login_screen_extension_ui/login_screen_extension_ui_window.cc",
    "login/ui/login_screen_extension_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/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/users/affiliation.cc",
    "login/users/affiliation.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/user_manager_interface.h",
    "login/version_info_updater.cc",
    "login/version_info_updater.h",
    "login/version_updater/version_updater.cc",
    "login/version_updater/version_updater.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/oobe_completion_tracker_factory.cc",
    "multidevice_setup/oobe_completion_tracker_factory.h",
    "net/client_cert_filter_chromeos.cc",
    "net/client_cert_filter_chromeos.h",
    "net/client_cert_store_chromeos.cc",
    "net/client_cert_store_chromeos.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_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/shill_error.cc",
    "net/shill_error.h",
    "net/wake_on_wifi_connection_observer.cc",
    "net/wake_on_wifi_connection_observer.h",
    "net/wake_on_wifi_manager.cc",
    "net/wake_on_wifi_manager.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",
    "ownership/fake_owner_settings_service.cc",
    "ownership/fake_owner_settings_service.h",
    "ownership/owner_settings_service_chromeos.cc",
    "ownership/owner_settings_service_chromeos.h",
    "ownership/owner_settings_service_chromeos_factory.cc",
    "ownership/owner_settings_service_chromeos_factory.h",
    "platform_keys/key_permissions.cc",
    "platform_keys/key_permissions.h",
    "platform_keys/key_permissions_policy_handler.cc",
    "platform_keys/key_permissions_policy_handler.h",
    "platform_keys/platform_keys.cc",
    "platform_keys/platform_keys.h",
    "platform_keys/platform_keys_nss.cc",
    "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",
    "plugin_vm/plugin_vm_engagement_metrics_service.cc",
    "plugin_vm/plugin_vm_engagement_metrics_service.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_image_manager.cc",
    "plugin_vm/plugin_vm_image_manager.h",
    "plugin_vm/plugin_vm_image_manager_factory.cc",
    "plugin_vm/plugin_vm_image_manager_factory.h",
    "plugin_vm/plugin_vm_manager.cc",
    "plugin_vm/plugin_vm_manager.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_util.cc",
    "plugin_vm/plugin_vm_util.h",
    "policy/active_directory_join_delegate.h",
    "policy/active_directory_policy_manager.cc",
    "policy/active_directory_policy_manager.h",
    "policy/affiliated_cloud_policy_invalidator.cc",
    "policy/affiliated_cloud_policy_invalidator.h",
    "policy/affiliated_invalidation_service_provider.cc",
    "policy/affiliated_invalidation_service_provider.h",
    "policy/affiliated_invalidation_service_provider_impl.cc",
    "policy/affiliated_invalidation_service_provider_impl.h",
    "policy/android_management_client.cc",
    "policy/android_management_client.h",
    "policy/app_install_event_log.cc",
    "policy/app_install_event_log.h",
    "policy/app_install_event_log_collector.cc",
    "policy/app_install_event_log_collector.h",
    "policy/app_install_event_log_manager.cc",
    "policy/app_install_event_log_manager.h",
    "policy/app_install_event_log_manager_wrapper.cc",
    "policy/app_install_event_log_manager_wrapper.h",
    "policy/app_install_event_log_uploader.cc",
    "policy/app_install_event_log_uploader.h",
    "policy/app_install_event_log_util.cc",
    "policy/app_install_event_log_util.h",
    "policy/app_install_event_logger.cc",
    "policy/app_install_event_logger.h",
    "policy/auto_enrollment_client.h",
    "policy/auto_enrollment_client_impl.cc",
    "policy/auto_enrollment_client_impl.h",
    "policy/bluetooth_policy_handler.cc",
    "policy/bluetooth_policy_handler.h",
    "policy/browser_policy_connector_chromeos.cc",
    "policy/browser_policy_connector_chromeos.h",
    "policy/cached_policy_key_loader_chromeos.cc",
    "policy/cached_policy_key_loader_chromeos.h",
    "policy/cloud_external_data_manager_base.cc",
    "policy/cloud_external_data_manager_base.h",
    "policy/cloud_external_data_policy_observer.cc",
    "policy/cloud_external_data_policy_observer.h",
    "policy/cloud_external_data_store.cc",
    "policy/cloud_external_data_store.h",
    "policy/component_active_directory_policy_retriever.cc",
    "policy/component_active_directory_policy_retriever.h",
    "policy/component_active_directory_policy_service.cc",
    "policy/component_active_directory_policy_service.h",
    "policy/configuration_policy_handler_chromeos.cc",
    "policy/configuration_policy_handler_chromeos.h",
    "policy/device_account_initializer.cc",
    "policy/device_account_initializer.h",
    "policy/device_auto_update_time_restrictions_decoder.cc",
    "policy/device_auto_update_time_restrictions_decoder.h",
    "policy/device_auto_update_time_restrictions_utils.cc",
    "policy/device_auto_update_time_restrictions_utils.h",
    "policy/device_cloud_external_data_policy_observer.cc",
    "policy/device_cloud_external_data_policy_observer.h",
    "policy/device_cloud_policy_initializer.cc",
    "policy/device_cloud_policy_initializer.h",
    "policy/device_cloud_policy_manager_chromeos.cc",
    "policy/device_cloud_policy_manager_chromeos.h",
    "policy/device_cloud_policy_store_chromeos.cc",
    "policy/device_cloud_policy_store_chromeos.h",
    "policy/device_cloud_policy_validator.cc",
    "policy/device_cloud_policy_validator.h",
    "policy/device_dock_mac_address_source_handler.cc",
    "policy/device_dock_mac_address_source_handler.h",
    "policy/device_local_account.cc",
    "policy/device_local_account.h",
    "policy/device_local_account_extension_tracker.cc",
    "policy/device_local_account_extension_tracker.h",
    "policy/device_local_account_external_data_manager.cc",
    "policy/device_local_account_external_data_manager.h",
    "policy/device_local_account_external_data_service.cc",
    "policy/device_local_account_external_data_service.h",
    "policy/device_local_account_policy_provider.cc",
    "policy/device_local_account_policy_provider.h",
    "policy/device_local_account_policy_service.cc",
    "policy/device_local_account_policy_service.h",
    "policy/device_local_account_policy_store.cc",
    "policy/device_local_account_policy_store.h",
    "policy/device_network_configuration_updater.cc",
    "policy/device_network_configuration_updater.h",
    "policy/device_policy_cloud_external_data_manager.cc",
    "policy/device_policy_cloud_external_data_manager.h",
    "policy/device_policy_decoder_chromeos.cc",
    "policy/device_policy_decoder_chromeos.h",
    "policy/device_policy_remover.h",
    "policy/device_wifi_allowed_handler.cc",
    "policy/device_wifi_allowed_handler.h",
    "policy/display_resolution_handler.cc",
    "policy/display_resolution_handler.h",
    "policy/display_rotation_default_handler.cc",
    "policy/display_rotation_default_handler.h",
    "policy/display_settings_handler.cc",
    "policy/display_settings_handler.h",
    "policy/dm_token_storage.cc",
    "policy/dm_token_storage.h",
    "policy/enrollment_config.cc",
    "policy/enrollment_config.h",
    "policy/enrollment_handler_chromeos.cc",
    "policy/enrollment_handler_chromeos.h",
    "policy/enrollment_status_chromeos.cc",
    "policy/enrollment_status_chromeos.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/device_cloud_external_data_policy_handler.cc",
    "policy/external_data_handlers/device_cloud_external_data_policy_handler.h",
    "policy/external_data_handlers/device_native_printers_external_data_handler.cc",
    "policy/external_data_handlers/device_native_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/native_printers_external_data_handler.cc",
    "policy/external_data_handlers/native_printers_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/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/fake_auto_enrollment_client.cc",
    "policy/fake_auto_enrollment_client.h",
    "policy/heartbeat_scheduler.cc",
    "policy/heartbeat_scheduler.h",
    "policy/hostname_handler.cc",
    "policy/hostname_handler.h",
    "policy/lock_to_single_user_manager.cc",
    "policy/lock_to_single_user_manager.h",
    "policy/login_profile_policy_provider.cc",
    "policy/login_profile_policy_provider.h",
    "policy/minimum_version_policy_handler.cc",
    "policy/minimum_version_policy_handler.h",
    "policy/network_configuration_updater.cc",
    "policy/network_configuration_updater.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/policy_cert_service.cc",
    "policy/policy_cert_service.h",
    "policy/policy_cert_service_factory.cc",
    "policy/policy_cert_service_factory.h",
    "policy/policy_oauth2_token_fetcher.cc",
    "policy/policy_oauth2_token_fetcher.h",
    "policy/pre_signin_policy_fetcher.cc",
    "policy/pre_signin_policy_fetcher.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/device_command_fetch_status_job.cc",
    "policy/remote_commands/device_command_fetch_status_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_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_chromeos.cc",
    "policy/remote_commands/device_commands_factory_chromeos.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_chromeos.cc",
    "policy/remote_commands/user_commands_factory_chromeos.h",
    "policy/rsu/lookup_key_uploader.cc",
    "policy/rsu/lookup_key_uploader.h",
    "policy/scheduled_update_checker/device_scheduled_update_checker.cc",
    "policy/scheduled_update_checker/device_scheduled_update_checker.h",
    "policy/scheduled_update_checker/os_and_policies_update_checker.cc",
    "policy/scheduled_update_checker/os_and_policies_update_checker.h",
    "policy/scheduled_update_checker/scoped_wake_lock.cc",
    "policy/scheduled_update_checker/scoped_wake_lock.h",
    "policy/scheduled_update_checker/task_executor_with_retries.cc",
    "policy/scheduled_update_checker/task_executor_with_retries.h",
    "policy/secondary_google_account_signin_policy_handler.cc",
    "policy/secondary_google_account_signin_policy_handler.h",
    "policy/server_backed_device_state.cc",
    "policy/server_backed_device_state.h",
    "policy/server_backed_state_keys_broker.cc",
    "policy/server_backed_state_keys_broker.h",
    "policy/single_app_install_event_log.cc",
    "policy/single_app_install_event_log.h",
    "policy/status_collector/activity_storage.cc",
    "policy/status_collector/activity_storage.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/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_uploader.cc",
    "policy/status_uploader.h",
    "policy/system_log_uploader.cc",
    "policy/system_log_uploader.h",
    "policy/tpm_auto_update_mode_policy_handler.cc",
    "policy/tpm_auto_update_mode_policy_handler.h",
    "policy/upload_job.h",
    "policy/upload_job_impl.cc",
    "policy/upload_job_impl.h",
    "policy/user_cloud_external_data_manager.cc",
    "policy/user_cloud_external_data_manager.h",
    "policy/user_cloud_policy_manager_chromeos.cc",
    "policy/user_cloud_policy_manager_chromeos.h",
    "policy/user_cloud_policy_store_chromeos.cc",
    "policy/user_cloud_policy_store_chromeos.h",
    "policy/user_cloud_policy_token_forwarder.cc",
    "policy/user_cloud_policy_token_forwarder.h",
    "policy/user_cloud_policy_token_forwarder_factory.cc",
    "policy/user_cloud_policy_token_forwarder_factory.h",
    "policy/user_network_configuration_updater.cc",
    "policy/user_network_configuration_updater.h",
    "policy/user_network_configuration_updater_factory.cc",
    "policy/user_network_configuration_updater_factory.h",
    "policy/user_policy_manager_builder_chromeos.cc",
    "policy/user_policy_manager_builder_chromeos.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",
    "policy/wildcard_login_checker.cc",
    "policy/wildcard_login_checker.h",
    "power/auto_screen_brightness/adapter.cc",
    "power/auto_screen_brightness/adapter.h",
    "power/auto_screen_brightness/als_reader.h",
    "power/auto_screen_brightness/als_reader_impl.cc",
    "power/auto_screen_brightness/als_reader_impl.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_als_reader.cc",
    "power/auto_screen_brightness/fake_als_reader.h",
    "power/auto_screen_brightness/fake_brightness_monitor.cc",
    "power/auto_screen_brightness/fake_brightness_monitor.h",
    "power/auto_screen_brightness/fake_model_config_loader.cc",
    "power/auto_screen_brightness/fake_model_config_loader.h",
    "power/auto_screen_brightness/gaussian_trainer.cc",
    "power/auto_screen_brightness/gaussian_trainer.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",
    "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_printers_manager.cc",
    "printing/cups_printers_manager.h",
    "printing/cups_printers_manager_factory.cc",
    "printing/cups_printers_manager_factory.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/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_server.cc",
    "printing/print_server.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_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/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",
    "profiles/profile_helper.cc",
    "profiles/profile_helper.h",
    "profiles/profile_util.cc",
    "profiles/profile_util.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",
    "reset/metrics.h",
    "resource_reporter/resource_reporter.cc",
    "resource_reporter/resource_reporter.h",
    "scheduler_configuration_manager.cc",
    "scheduler_configuration_manager.h",
    "secure_channel/secure_channel_client_provider.cc",
    "secure_channel/secure_channel_client_provider.h",
    "session_length_limiter.cc",
    "session_length_limiter.h",
    "set_time_dialog.cc",
    "set_time_dialog.h",
    "settings/cros_settings.cc",
    "settings/cros_settings.h",
    "settings/device_identity_provider.cc",
    "settings/device_identity_provider.h",
    "settings/device_oauth2_token_service.cc",
    "settings/device_oauth2_token_service.h",
    "settings/device_oauth2_token_service_factory.cc",
    "settings/device_oauth2_token_service_factory.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/owner_flags_storage.cc",
    "settings/owner_flags_storage.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",
    "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/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_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_task_queue.cc",
    "smb_client/smb_task_queue.h",
    "smb_client/smb_url.cc",
    "smb_client/smb_url.h",
    "smb_client/temp_file_manager.cc",
    "smb_client/temp_file_manager.h",
    "startup_settings_cache.cc",
    "startup_settings_cache.h",
    "system/automatic_reboot_manager.cc",
    "system/automatic_reboot_manager.h",
    "system/automatic_reboot_manager_observer.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/command_line_log_source.cc",
    "system_logs/command_line_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/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/touch_log_source.cc",
    "system_logs/touch_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",
    "ui/echo_dialog_listener.h",
    "ui/echo_dialog_view.cc",
    "ui/echo_dialog_view.h",
    "ui/gnubby_notification.cc",
    "ui/gnubby_notification.h",
    "ui/idle_app_name_notification_view.cc",
    "ui/idle_app_name_notification_view.h",
    "ui/kiosk_external_update_notification.cc",
    "ui/kiosk_external_update_notification.h",
    "ui/low_disk_notification.cc",
    "ui/low_disk_notification.h",
    "ui/passphrase_textfield.cc",
    "ui/passphrase_textfield.h",
    "ui/request_pin_view.cc",
    "ui/request_pin_view.h",
    "ui/screen_capture_notification_ui_chromeos.cc",
    "ui/screen_capture_notification_ui_chromeos.h",
    "ui/tpm_auto_update_notification.cc",
    "ui/tpm_auto_update_notification.h",
    "usb/cros_usb_detector.cc",
    "usb/cros_usb_detector.h",
    "virtual_machines/virtual_machines_util.cc",
    "virtual_machines/virtual_machines_util.h",
    "wilco_dtc_supportd/mojo_utils.cc",
    "wilco_dtc_supportd/mojo_utils.h",
    "wilco_dtc_supportd/wilco_dtc_supportd_bridge.cc",
    "wilco_dtc_supportd/wilco_dtc_supportd_bridge.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_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",

    # Extension API implementations.
    "extensions/autotest_private/autotest_private_api.cc",
    "extensions/autotest_private/autotest_private_api.h",
    "extensions/echo_private_api.cc",
    "extensions/echo_private_api.h",
    "extensions/file_manager/device_event_router.cc",
    "extensions/file_manager/device_event_router.h",
    "extensions/file_manager/drivefs_event_router.cc",
    "extensions/file_manager/drivefs_event_router.h",
    "extensions/file_manager/event_router.cc",
    "extensions/file_manager/event_router.h",
    "extensions/file_manager/event_router_factory.cc",
    "extensions/file_manager/event_router_factory.h",
    "extensions/file_manager/file_browser_handler_api.cc",
    "extensions/file_manager/file_browser_handler_api.h",
    "extensions/file_manager/file_manager_private_api_functions.h",
    "extensions/file_manager/file_stream_md5_digester.cc",
    "extensions/file_manager/file_stream_md5_digester.h",
    "extensions/file_manager/private_api_base.cc",
    "extensions/file_manager/private_api_base.h",
    "extensions/file_manager/private_api_dialog.cc",
    "extensions/file_manager/private_api_dialog.h",
    "extensions/file_manager/private_api_drive.cc",
    "extensions/file_manager/private_api_drive.h",
    "extensions/file_manager/private_api_file_system.cc",
    "extensions/file_manager/private_api_file_system.h",
    "extensions/file_manager/private_api_misc.cc",
    "extensions/file_manager/private_api_misc.h",
    "extensions/file_manager/private_api_mount.cc",
    "extensions/file_manager/private_api_mount.h",
    "extensions/file_manager/private_api_strings.cc",
    "extensions/file_manager/private_api_strings.h",
    "extensions/file_manager/private_api_tasks.cc",
    "extensions/file_manager/private_api_tasks.h",
    "extensions/file_manager/private_api_util.cc",
    "extensions/file_manager/private_api_util.h",
    "extensions/file_manager/select_file_dialog_extension_user_data.cc",
    "extensions/file_manager/select_file_dialog_extension_user_data.h",
    "extensions/file_system_provider/file_system_provider_api.cc",
    "extensions/file_system_provider/file_system_provider_api.h",
    "extensions/file_system_provider/provider_function.cc",
    "extensions/file_system_provider/provider_function.h",
    "extensions/input_method_api.cc",
    "extensions/input_method_api.h",
    "extensions/login_screen/login/login_api.cc",
    "extensions/login_screen/login/login_api.h",
    "extensions/login_screen/login_screen_storage/login_screen_storage_api.cc",
    "extensions/login_screen/login_screen_storage/login_screen_storage_api.h",
    "extensions/login_screen/login_screen_ui/login_screen_extension_ui_handler.cc",
    "extensions/login_screen/login_screen_ui/login_screen_extension_ui_handler.h",
    "extensions/login_screen/login_screen_ui/login_screen_ui_api.cc",
    "extensions/login_screen/login_screen_ui/login_screen_ui_api.h",
    "extensions/login_screen/login_state/login_state_api.cc",
    "extensions/login_screen/login_state/login_state_api.h",
    "extensions/login_screen/login_state/session_state_changed_event_dispatcher.cc",
    "extensions/login_screen/login_state/session_state_changed_event_dispatcher.h",
    "extensions/media_player_api.cc",
    "extensions/media_player_api.h",
    "extensions/printing_metrics/print_job_finished_event_dispatcher.cc",
    "extensions/printing_metrics/print_job_finished_event_dispatcher.h",
    "extensions/printing_metrics/print_job_info_idl_conversions.cc",
    "extensions/printing_metrics/print_job_info_idl_conversions.h",
    "extensions/printing_metrics/printing_metrics_api.cc",
    "extensions/printing_metrics/printing_metrics_api.h",
    "extensions/quick_unlock_private/quick_unlock_private_api.cc",
    "extensions/quick_unlock_private/quick_unlock_private_api.h",
    "extensions/users_private/users_private_api.cc",
    "extensions/users_private/users_private_api.h",
    "extensions/users_private/users_private_delegate.cc",
    "extensions/users_private/users_private_delegate.h",
    "extensions/users_private/users_private_delegate_factory.cc",
    "extensions/users_private/users_private_delegate_factory.h",
    "extensions/wallpaper_api.cc",
    "extensions/wallpaper_api.h",
    "extensions/wallpaper_function_base.cc",
    "extensions/wallpaper_function_base.h",
    "extensions/wallpaper_private_api.cc",
    "extensions/wallpaper_private_api.h",
  ]

  if (use_cups) {
    deps += [
      "//chrome/services/cups_proxy",
      "//chrome/services/cups_proxy/public/mojom",
    ]
    sources += [
      "printing/cups_print_job_manager_impl.cc",
      "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",
    ]
  } else {
    sources += [
      "printing/fake_cups_print_job_manager.cc",
      "printing/fake_cups_print_job_manager.h",
      "printing/printer_info_stub.cc",
    ]
  }

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

copy("dbus_service_files") {
  sources = [
    "dbus/org.chromium.ChromeFeaturesService.conf",
    "dbus/org.chromium.ComponentUpdaterService.conf",
    "dbus/org.chromium.CryptohomeKeyDelegate.conf",
    "dbus/org.chromium.DriveFileStreamService.conf",
    "dbus/org.chromium.KioskAppService.conf",
    "dbus/org.chromium.LibvdaService.conf",
    "dbus/org.chromium.MachineLearningDecisionService.conf",
    "dbus/org.chromium.MetricsEventService.conf",
    "dbus/org.chromium.NetworkProxyService.conf",
    "dbus/org.chromium.PluginVmService.conf",
    "dbus/org.chromium.ScreenLockService.conf",
    "dbus/org.chromium.VirtualFileRequestService.conf",
    "dbus/org.chromium.VmApplicationsService.conf",
  ]
  outputs = [
    "$root_out_dir/dbus/{{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",
  ]

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

static_library("test_support") {
  testonly = true

  sources = [
    "android_sms/fake_android_sms_app_manager.cc",
    "android_sms/fake_android_sms_app_manager.h",
    "android_sms/fake_android_sms_app_setup_controller.cc",
    "android_sms/fake_android_sms_app_setup_controller.h",
    "android_sms/fake_connection_establisher.cc",
    "android_sms/fake_connection_establisher.h",
    "app_mode/test_kiosk_extension_builder.cc",
    "app_mode/test_kiosk_extension_builder.h",
    "attestation/mock_enrollment_certificate_uploader.cc",
    "attestation/mock_enrollment_certificate_uploader.h",
    "attestation/mock_machine_certificate_uploader.cc",
    "attestation/mock_machine_certificate_uploader.h",
    "certificate_provider/test_certificate_provider_extension.cc",
    "certificate_provider/test_certificate_provider_extension.h",
    "crostini/crostini_test_helper.cc",
    "crostini/crostini_test_helper.h",
    "crostini/fake_crostini_features.cc",
    "crostini/fake_crostini_features.h",
    "drive/drivefs_test_support.cc",
    "drive/drivefs_test_support.h",
    "extensions/test_external_cache.cc",
    "extensions/test_external_cache.h",
    "file_manager/mount_test_util.cc",
    "file_manager/mount_test_util.h",
    "lock_screen_apps/fake_lock_screen_profile_creator.cc",
    "lock_screen_apps/fake_lock_screen_profile_creator.h",
    "login/demo_mode/demo_mode_test_helper.cc",
    "login/demo_mode/demo_mode_test_helper.h",
    "login/enrollment/enterprise_enrollment_helper_mock.cc",
    "login/enrollment/enterprise_enrollment_helper_mock.h",
    "login/enrollment/mock_enrollment_screen.cc",
    "login/enrollment/mock_enrollment_screen.h",
    "login/mock_network_state_helper.cc",
    "login/mock_network_state_helper.h",
    "login/screens/mock_error_screen.cc",
    "login/screens/mock_error_screen.h",
    "login/screens/mock_network_screen.cc",
    "login/screens/mock_network_screen.h",
    "login/screens/mock_update_screen.cc",
    "login/screens/mock_update_screen.h",
    "login/screens/mock_welcome_screen.cc",
    "login/screens/mock_welcome_screen.h",
    "login/screens/recommend_apps/fake_recommend_apps_fetcher_delegate.cc",
    "login/screens/recommend_apps/fake_recommend_apps_fetcher_delegate.h",
    "login/test/dialog_window_waiter.cc",
    "login/test/dialog_window_waiter.h",
    "login/test/scoped_help_app_for_test.cc",
    "login/test/scoped_help_app_for_test.h",
    "login/test/test_condition_waiter.h",
    "login/test/test_predicate_waiter.cc",
    "login/test/test_predicate_waiter.h",
    "login/version_updater/mock_version_updater_delegate.cc",
    "login/version_updater/mock_version_updater_delegate.h",
    "printing/printing_stubs.cc",
    "printing/printing_stubs.h",
    "scoped_set_running_on_chromeos_for_testing.cc",
    "scoped_set_running_on_chromeos_for_testing.h",
    "settings/scoped_testing_cros_settings.cc",
    "settings/scoped_testing_cros_settings.h",
  ]

  deps = [
    ":chromeos",
    "//chrome/test:test_support",
    "//chromeos",
    "//chromeos/components/drivefs",
    "//chromeos/components/drivefs:test_support",
    "//chromeos/dbus:test_support",
    "//chromeos/services/multidevice_setup/public/cpp:test_support",
    "//chromeos/settings",
    "//components/crx_file",
    "//components/drive",
    "//components/policy/proto",
    "//crypto:platform",
    "//google_apis",
    "//google_apis/drive:test_support",
    "//skia",
    "//testing/gmock",
    "//testing/gtest",
    "//ui/file_manager/file_manager/test:create_test_main",
  ]
}

source_set("unit_tests") {
  testonly = true
  check_includes = false

  sources = [
    # TODO(lukasza): Move Drive tests outside of CrOS (crbug.com/498951).
    "../download/notification/download_item_notification_unittest.cc",
    "../extensions/api/enterprise_platform_keys/enterprise_platform_keys_api_unittest.cc",
    "../extensions/api/enterprise_platform_keys_private/enterprise_platform_keys_private_api_unittest.cc",
    "../extensions/updater/local_extension_cache_unittest.cc",
    "../memory/memory_kills_monitor_unittest.cc",
    "../metrics/chromeos_metrics_provider_unittest.cc",
    "../metrics/perf/cpu_identity_unittest.cc",
    "../metrics/perf/random_selector_unittest.cc",
    "../policy/default_geolocation_policy_handler_unittest.cc",
    "../resources/chromeos/zip_archiver/test/char_coding_test.cc",
    "../ui/browser_finder_chromeos_unittest.cc",
    "accessibility/switch_access_panel_unittest.cc",
    "account_manager/account_migration_runner_unittest.cc",
    "android_sms/android_sms_app_manager_impl_unittest.cc",
    "android_sms/android_sms_app_setup_controller_impl_unittest.cc",
    "android_sms/connection_manager_unittest.cc",
    "android_sms/fcm_connection_establisher_unittest.cc",
    "android_sms/pairing_lost_notifier_unittest.cc",
    "app_mode/startup_app_launcher_unittest.cc",
    "apps/apk_web_app_installer_unittest.cc",
    "apps/intent_helper/chromeos_apps_navigation_throttle_unittest.cc",
    "arc/accessibility/arc_accessibility_helper_bridge_unittest.cc",
    "arc/accessibility/ax_tree_source_arc_unittest.cc",
    "arc/app_shortcuts/arc_app_shortcuts_menu_builder_unittest.cc",
    "arc/app_shortcuts/arc_app_shortcuts_request_unittest.cc",
    "arc/arc_migration_guide_notification_unittest.cc",
    "arc/arc_support_host_unittest.cc",
    "arc/arc_util_unittest.cc",
    "arc/bluetooth/arc_bluetooth_bridge_unittest.cc",
    "arc/bluetooth/arc_bluetooth_task_queue_unittest.cc",
    "arc/boot_phase_monitor/arc_boot_phase_monitor_bridge_unittest.cc",
    "arc/enterprise/cert_store/arc_cert_installer_unittest.cc",
    "arc/enterprise/cert_store/arc_cert_installer_utils_unittest.cc",
    "arc/enterprise/cert_store/arc_smart_card_manager_bridge_unittest.cc",
    "arc/extensions/arc_support_message_host_unittest.cc",
    "arc/file_system_watcher/arc_file_system_watcher_service_unittest.cc",
    "arc/fileapi/arc_content_file_system_async_file_util_unittest.cc",
    "arc/fileapi/arc_content_file_system_file_stream_reader_unittest.cc",
    "arc/fileapi/arc_content_file_system_file_stream_writer_unittest.cc",
    "arc/fileapi/arc_content_file_system_url_util_unittest.cc",
    "arc/fileapi/arc_documents_provider_root_unittest.cc",
    "arc/fileapi/arc_documents_provider_util_unittest.cc",
    "arc/fileapi/arc_file_system_bridge_unittest.cc",
    "arc/fileapi/arc_file_system_operation_runner_unittest.cc",
    "arc/fileapi/arc_select_files_handler_unittest.cc",
    "arc/fileapi/arc_select_files_util_unittest.cc",
    "arc/fileapi/chrome_content_provider_url_util_unittest.cc",
    "arc/fileapi/file_stream_forwarder_unittest.cc",
    "arc/input_method_manager/arc_input_method_manager_service_unittest.cc",
    "arc/input_method_manager/input_connection_impl_unittest.cc",
    "arc/input_method_manager/test_input_method_manager_bridge.cc",
    "arc/input_method_manager/test_input_method_manager_bridge.h",
    "arc/instance_throttle/arc_active_window_throttle_observer_unittest.cc",
    "arc/instance_throttle/arc_app_launch_throttle_observer_unittest.cc",
    "arc/instance_throttle/arc_boot_phase_throttle_observer_unittest.cc",
    "arc/instance_throttle/arc_instance_throttle_unittest.cc",
    "arc/intent_helper/arc_external_protocol_dialog_unittest.cc",
    "arc/intent_helper/arc_intent_picker_app_fetcher_unittest.cc",
    "arc/intent_helper/arc_settings_service_unittest.cc",
    "arc/intent_helper/open_with_menu_unittest.cc",
    "arc/kiosk/arc_kiosk_bridge_unittest.cc",
    "arc/notification/arc_provision_notification_service_unittest.cc",
    "arc/notification/arc_supervision_transition_notification_unittest.cc",
    "arc/optin/arc_terms_of_service_default_negotiator_unittest.cc",
    "arc/pip/arc_pip_bridge_unittest.cc",
    "arc/policy/arc_policy_bridge_unittest.cc",
    "arc/process/arc_process_unittest.cc",
    "arc/session/arc_play_store_enabled_preference_handler_unittest.cc",
    "arc/session/arc_session_manager_unittest.cc",
    "arc/tracing/arc_app_performance_tracing_unittest.cc",
    "arc/tracing/arc_cpu_event_unittest.cc",
    "arc/tracing/arc_graphics_jank_detector_unittest.cc",
    "arc/tracing/arc_system_model_unittest.cc",
    "arc/tracing/arc_system_stat_collector_unittest.cc",
    "arc/tracing/arc_tracing_event_matcher_unittest.cc",
    "arc/tracing/arc_tracing_model_unittest.cc",
    "arc/tracing/arc_value_event_unittest.cc",
    "arc/tts/arc_tts_service_unittest.cc",
    "arc/wallpaper/arc_wallpaper_service_unittest.cc",
    "assistant/assistant_util_unittest.cc",
    "attestation/attestation_ca_client_unittest.cc",
    "attestation/attestation_policy_observer_unittest.cc",
    "attestation/enrollment_certificate_uploader_impl_unittest.cc",
    "attestation/enrollment_policy_observer_unittest.cc",
    "attestation/fake_certificate.cc",
    "attestation/fake_certificate.h",
    "attestation/machine_certificate_uploader_impl_unittest.cc",
    "attestation/mock_tpm_challenge_key.cc",
    "attestation/mock_tpm_challenge_key.h",
    "attestation/platform_verification_flow_unittest.cc",
    "attestation/tpm_challenge_key_unittest.cc",
    "authpolicy/auth_policy_credentials_manager_unittest.cc",
    "authpolicy/authpolicy_helper.unittest.cc",
    "base/file_flusher_unittest.cc",
    "certificate_provider/certificate_provider_service_unittest.cc",
    "child_accounts/event_based_status_reporting_service_unittest.cc",
    "child_accounts/parent_access_code/authenticator_unittest.cc",
    "child_accounts/parent_access_code/parent_access_test_utils.cc",
    "child_accounts/parent_access_code/parent_access_test_utils.h",
    "child_accounts/time_limit_notifier_unittest.cc",
    "child_accounts/time_limit_test_utils.cc",
    "child_accounts/usage_time_limit_processor_unittest.cc",
    "child_accounts/usage_time_state_notifier_unittest.cc",
    "chrome_content_browser_client_chromeos_part_unittest.cc",
    "concierge_helper_service_unittest.cc",
    "crostini/ansible/ansible_management_service_unittest.cc",
    "crostini/ansible/pending_software_changes_unittest.cc",
    "crostini/ansible/software_config_unittest.cc",
    "crostini/crostini_export_import_unittest.cc",
    "crostini/crostini_features_unittest.cc",
    "crostini/crostini_force_close_watcher_unittest.cc",
    "crostini/crostini_installer_unittest.cc",
    "crostini/crostini_manager_unittest.cc",
    "crostini/crostini_mime_types_service_unittest.cc",
    "crostini/crostini_package_notification_unittest.cc",
    "crostini/crostini_package_service_unittest.cc",
    "crostini/crostini_registry_service_unittest.cc",
    "crostini/crostini_reporting_util_unittest.cc",
    "crostini/crostini_unsupported_action_notifier_unittest.cc",
    "crostini/crosvm_metrics_unittest.cc",
    "crostini/crosvm_process_list_unittest.cc",
    "crostini/throttle/crostini_active_window_throttle_observer_unittest.cc",
    "crostini/throttle/crostini_throttle_unittest.cc",
    "cryptauth/client_app_metadata_provider_service_unittest.cc",
    "customization/customization_document_unittest.cc",
    "dbus/proxy_resolution_service_provider_unittest.cc",
    "drive/download_handler_unittest.cc",
    "drive/drive_integration_service_unittest.cc",
    "drive/file_system_util_unittest.cc",
    "drive/write_on_cache_file_unittest.cc",
    "eol_notification_unittest.cc",
    "events/event_rewriter_unittest.cc",
    "extensions/active_tab_permission_granter_delegate_chromeos_unittest.cc",
    "extensions/default_app_order_unittest.cc",
    "extensions/device_local_account_external_policy_loader_unittest.cc",
    "extensions/device_local_account_management_policy_provider_unittest.cc",
    "extensions/extension_tab_util_delegate_chromeos_unittest.cc",
    "extensions/external_cache_impl_unittest.cc",
    "extensions/file_manager/device_event_router_unittest.cc",
    "extensions/file_manager/drivefs_event_router_unittest.cc",
    "extensions/file_manager/event_router_unittest.cc",
    "extensions/gfx_utils_unittest.cc",
    "extensions/install_limiter_unittest.cc",
    "extensions/login_screen/login/login_api_unittest.cc",
    "extensions/login_screen/login_screen_ui/login_screen_extension_ui_handler_unittest.cc",
    "extensions/login_screen/login_state/login_state_api_unittest.cc",
    "extensions/login_screen/login_state/session_state_changed_event_dispatcher_unittest.cc",
    "extensions/permissions_updater_delegate_chromeos_unittest.cc",
    "extensions/printing_metrics/print_job_finished_event_dispatcher_unittest.cc",
    "extensions/printing_metrics/print_job_info_idl_conversions_unittest.cc",
    "extensions/printing_metrics/printing_metrics_api_unittest.cc",
    "extensions/public_session_permission_helper_unittest.cc",
    "extensions/quick_unlock_private/quick_unlock_private_api_unittest.cc",
    "extensions/signin_screen_policy_provider_unittest.cc",
    "extensions/wallpaper_private_api_unittest.cc",
    "external_metrics_unittest.cc",
    "file_manager/documents_provider_root_manager_unittest.cc",
    "file_manager/file_tasks_notifier_unittest.cc",
    "file_manager/file_tasks_unittest.cc",
    "file_manager/file_watcher_unittest.cc",
    "file_manager/fileapi_util_unittest.cc",
    "file_manager/path_util_unittest.cc",
    "file_manager/url_util_unittest.cc",
    "file_manager/volume_manager_unittest.cc",
    "file_manager/web_file_tasks_unittest.cc",
    "file_system_provider/fake_extension_provider.cc",
    "file_system_provider/fake_extension_provider.h",
    "file_system_provider/fake_provided_file_system.cc",
    "file_system_provider/fake_provided_file_system.h",
    "file_system_provider/fake_registry.cc",
    "file_system_provider/fake_registry.h",
    "file_system_provider/fileapi/buffering_file_stream_reader_unittest.cc",
    "file_system_provider/fileapi/buffering_file_stream_writer_unittest.cc",
    "file_system_provider/fileapi/file_stream_reader_unittest.cc",
    "file_system_provider/fileapi/file_stream_writer_unittest.cc",
    "file_system_provider/fileapi/provider_async_file_util_unittest.cc",
    "file_system_provider/logging_observer.cc",
    "file_system_provider/logging_observer.h",
    "file_system_provider/mount_path_util_unittest.cc",
    "file_system_provider/operations/abort_unittest.cc",
    "file_system_provider/operations/add_watcher_unittest.cc",
    "file_system_provider/operations/close_file_unittest.cc",
    "file_system_provider/operations/configure_unittest.cc",
    "file_system_provider/operations/copy_entry_unittest.cc",
    "file_system_provider/operations/create_directory_unittest.cc",
    "file_system_provider/operations/create_file_unittest.cc",
    "file_system_provider/operations/delete_entry_unittest.cc",
    "file_system_provider/operations/execute_action_unittest.cc",
    "file_system_provider/operations/get_actions_unittest.cc",
    "file_system_provider/operations/get_metadata_unittest.cc",
    "file_system_provider/operations/move_entry_unittest.cc",
    "file_system_provider/operations/open_file_unittest.cc",
    "file_system_provider/operations/read_directory_unittest.cc",
    "file_system_provider/operations/read_file_unittest.cc",
    "file_system_provider/operations/remove_watcher_unittest.cc",
    "file_system_provider/operations/test_util.cc",
    "file_system_provider/operations/test_util.h",
    "file_system_provider/operations/truncate_unittest.cc",
    "file_system_provider/operations/unmount_unittest.cc",
    "file_system_provider/operations/write_file_unittest.cc",
    "file_system_provider/provided_file_system_unittest.cc",
    "file_system_provider/queue_unittest.cc",
    "file_system_provider/registry_unittest.cc",
    "file_system_provider/request_manager_unittest.cc",
    "file_system_provider/scoped_file_opener_unittest.cc",
    "file_system_provider/service_unittest.cc",
    "file_system_provider/throttled_file_system_unittest.cc",
    "fileapi/external_file_url_loader_factory_unittest.cc",
    "fileapi/external_file_url_util_unittest.cc",
    "fileapi/file_access_permissions_unittest.cc",
    "fileapi/file_system_backend_unittest.cc",
    "fileapi/recent_arc_media_source_unittest.cc",
    "fileapi/recent_disk_source_unittest.cc",
    "fileapi/recent_model_unittest.cc",
    "fileapi/test/fake_recent_source.cc",
    "guest_os/guest_os_share_path_unittest.cc",
    "hats/hats_finch_helper_unittest.cc",
    "hats/hats_notification_controller_unittest.cc",
    "input_method/input_method_configuration_unittest.cc",
    "input_method/input_method_engine_unittest.cc",
    "input_method/input_method_manager_impl_unittest.cc",
    "input_method/input_method_persistence_unittest.cc",
    "kerberos/kerberos_credentials_manager_test.cc",
    "kerberos/kerberos_ticket_expiry_notification_test.cc",
    "locale_change_guard_unittest.cc",
    "lock_screen_apps/app_manager_impl_unittest.cc",
    "lock_screen_apps/lock_screen_profile_creator_impl_unittest.cc",
    "lock_screen_apps/state_controller_unittest.cc",
    "login/auth/cryptohome_authenticator_unittest.cc",
    "login/demo_mode/demo_extensions_external_loader_unittest.cc",
    "login/demo_mode/demo_mode_detector_unittest.cc",
    "login/demo_mode/demo_mode_resources_remover_unittest.cc",
    "login/demo_mode/demo_resources_unittest.cc",
    "login/demo_mode/demo_session_unittest.cc",
    "login/demo_mode/demo_setup_controller_unittest.cc",
    "login/demo_mode/demo_setup_test_utils.cc",
    "login/demo_mode/demo_setup_test_utils.h",
    "login/easy_unlock/easy_unlock_challenge_wrapper_unittest.cc",
    "login/easy_unlock/easy_unlock_tpm_key_manager_unittest.cc",
    "login/enrollment/enrollment_screen_unittest.cc",
    "login/enterprise_user_session_metrics_unittest.cc",
    "login/error_screens_histogram_helper_unittest.cc",
    "login/existing_user_controller_auto_login_unittest.cc",
    "login/hwid_checker_unittest.cc",
    "login/lock/screen_locker_unittest.cc",
    "login/profile_auth_data_unittest.cc",
    "login/quick_unlock/fingerprint_storage_unittest.cc",
    "login/quick_unlock/pin_storage_prefs_unittest.cc",
    "login/quick_unlock/quick_unlock_storage_unittest.cc",
    "login/saml/in_session_password_change_manager_unittest.cc",
    "login/saml/password_expiry_notification_unittest.cc",
    "login/saml/saml_offline_signin_limiter_unittest.cc",
    "login/screens/multidevice_setup_screen_unittest.cc",
    "login/screens/network_screen_unittest.cc",
    "login/screens/recommend_apps/recommend_apps_fetcher_impl_unittest.cc",
    "login/screens/update_required_screen_unittest.cc",
    "login/screens/update_screen_unittest.cc",
    "login/session/user_session_manager_test.cc",
    "login/signin_partition_manager_unittest.cc",
    "login/supervised/supervised_user_authentication_unittest.cc",
    "login/ui/login_screen_extension_ui/login_screen_extension_ui_dialog_delegate_unittest.cc",
    "login/ui/login_screen_extension_ui/login_screen_extension_ui_web_dialog_view_unittest.cc",
    "login/ui/oobe_dialog_size_utils_unittest.cc",
    "login/users/affiliation_unittest.cc",
    "login/users/multi_profile_user_controller_unittest.cc",
    "login/users/user_manager_unittest.cc",
    "login/version_updater/version_updater_unittest.cc",
    "mobile/mobile_activator_unittest.cc",
    "net/client_cert_store_chromeos_unittest.cc",
    "net/network_portal_detector_impl_unittest.cc",
    "net/network_pref_state_observer_unittest.cc",
    "net/network_throttling_observer_unittest.cc",
    "net/wake_on_wifi_manager_unittest.cc",
    "network_change_manager_client_unittest.cc",
    "night_light/night_light_client_unittest.cc",
    "note_taking_helper_unittest.cc",
    "ownership/owner_settings_service_chromeos_unittest.cc",
    "plugin_vm/plugin_vm_files_unittest.cc",
    "plugin_vm/plugin_vm_image_manager_unittest.cc",
    "plugin_vm/plugin_vm_manager_unittest.cc",
    "plugin_vm/plugin_vm_test_helper.cc",
    "plugin_vm/plugin_vm_test_helper.h",
    "plugin_vm/plugin_vm_util_unittest.cc",
    "policy/active_directory_policy_manager_unittest.cc",
    "policy/affiliated_cloud_policy_invalidator_unittest.cc",
    "policy/affiliated_invalidation_service_provider_impl_unittest.cc",
    "policy/android_management_client_unittest.cc",
    "policy/app_install_event_log_collector_unittest.cc",
    "policy/app_install_event_log_manager_unittest.cc",
    "policy/app_install_event_log_manager_wrapper_unittest.cc",
    "policy/app_install_event_log_unittest.cc",
    "policy/app_install_event_log_uploader_unittest.cc",
    "policy/app_install_event_logger_unittest.cc",
    "policy/auto_enrollment_client_impl_unittest.cc",
    "policy/bluetooth_policy_handler_unittest.cc",
    "policy/cached_policy_key_loader_chromeos_unittest.cc",
    "policy/cloud_external_data_manager_base_unittest.cc",
    "policy/cloud_external_data_policy_observer_unittest.cc",
    "policy/cloud_external_data_store_unittest.cc",
    "policy/component_active_directory_policy_retriever_unittest.cc",
    "policy/component_active_directory_policy_service_unittest.cc",
    "policy/configuration_policy_handler_chromeos_unittest.cc",
    "policy/device_auto_update_time_restrictions_decoder_unittest.cc",
    "policy/device_auto_update_time_restrictions_utils_unittest.cc",
    "policy/device_cloud_policy_initializer_unittest.cc",
    "policy/device_cloud_policy_manager_chromeos_unittest.cc",
    "policy/device_cloud_policy_store_chromeos_unittest.cc",
    "policy/device_dock_mac_address_source_handler_unittest.cc",
    "policy/device_local_account_policy_service_unittest.cc",
    "policy/device_policy_decoder_chromeos_unittest.cc",
    "policy/dm_token_storage_unittest.cc",
    "policy/extension_cache_unittest.cc",
    "policy/external_data_handlers/device_native_printers_external_data_handler_unittest.cc",
    "policy/fake_affiliated_invalidation_service_provider.cc",
    "policy/fake_affiliated_invalidation_service_provider.h",
    "policy/heartbeat_scheduler_unittest.cc",
    "policy/hostname_handler_unittest.cc",
    "policy/lock_to_single_user_manager_unittest.cc",
    "policy/network_configuration_updater_unittest.cc",
    "policy/off_hours/device_off_hours_controller_unittest.cc",
    "policy/off_hours/off_hours_policy_applier_unittest.cc",
    "policy/off_hours/off_hours_proto_parser_unittest.cc",
    "policy/pre_signin_policy_fetcher_unittest.cc",
    "policy/remote_commands/device_command_remote_powerwash_job_unittest.cc",
    "policy/remote_commands/device_command_screenshot_job_unittest.cc",
    "policy/remote_commands/device_command_set_volume_job_unittest.cc",
    "policy/remote_commands/device_command_start_crd_session_unittest.cc",
    "policy/remote_commands/device_command_wipe_users_job_unittest.cc",
    "policy/remote_commands/user_command_arc_job_unittest.cc",
    "policy/rsu/lookup_key_uploader_unittest.cc",
    "policy/scheduled_update_checker/device_scheduled_update_checker_unittest.cc",
    "policy/secondary_google_account_signin_policy_handler_unittest.cc",
    "policy/server_backed_state_keys_broker_unittest.cc",
    "policy/single_app_install_event_log_unittest.cc",
    "policy/status_uploader_unittest.cc",
    "policy/system_log_uploader_unittest.cc",
    "policy/tpm_auto_update_mode_policy_handler_unittest.cc",
    "policy/upload_job_unittest.cc",
    "policy/user_cloud_policy_manager_chromeos_unittest.cc",
    "policy/user_cloud_policy_store_chromeos_unittest.cc",
    "policy/user_cloud_policy_token_forwarder_unittest.cc",
    "power/auto_screen_brightness/adapter_unittest.cc",
    "power/auto_screen_brightness/als_reader_impl_unittest.cc",
    "power/auto_screen_brightness/als_samples_unittest.cc",
    "power/auto_screen_brightness/brightness_monitor_impl_unittest.cc",
    "power/auto_screen_brightness/gaussian_trainer_unittest.cc",
    "power/auto_screen_brightness/metrics_reporter_unittest.cc",
    "power/auto_screen_brightness/model_config_loader_impl_unittest.cc",
    "power/auto_screen_brightness/modeller_impl_unittest.cc",
    "power/auto_screen_brightness/monotone_cubic_spline_unittest.cc",
    "power/cpu_data_collector_unittest.cc",
    "power/extension_event_observer_unittest.cc",
    "power/ml/adaptive_screen_brightness_manager_unittest.cc",
    "power/ml/adaptive_screen_brightness_ukm_logger_impl_unittest.cc",
    "power/ml/boot_clock_unittest.cc",
    "power/ml/idle_event_notifier_unittest.cc",
    "power/ml/recent_events_counter_unittest.cc",
    "power/ml/smart_dim/model_unittest.cc",
    "power/ml/user_activity_manager_unittest.cc",
    "power/ml/user_activity_ukm_logger_helpers_unittest.cc",
    "power/ml/user_activity_ukm_logger_unittest.cc",
    "power/power_data_collector_unittest.cc",
    "power/power_metrics_reporter_unittest.cc",
    "power/process_data_collector_unittest.cc",
    "power/renderer_freezer_unittest.cc",
    "preferences_unittest.cc",
    "printing/automatic_usb_printer_configurer_unittest.cc",
    "printing/bulk_printers_calculator_unittest.cc",
    "printing/cups_printers_manager_unittest.cc",
    "printing/history/mock_print_job_history_service.cc",
    "printing/history/mock_print_job_history_service.h",
    "printing/history/print_job_database_impl_unittest.cc",
    "printing/history/print_job_history_cleaner_unittest.cc",
    "printing/history/print_job_history_service_impl_unittest.cc",
    "printing/history/print_job_info_proto_conversions_unittest.cc",
    "printing/history/test_print_job_database.cc",
    "printing/history/test_print_job_database.h",
    "printing/history/test_print_job_history_service_observer.cc",
    "printing/history/test_print_job_history_service_observer.h",
    "printing/ppd_resolution_state_unittest.cc",
    "printing/ppd_resolution_tracker_unittest.cc",
    "printing/print_servers_provider_unittest.cc",
    "printing/printer_detector_test_util.h",
    "printing/printer_event_tracker_unittest.cc",
    "printing/printers_map_unittest.cc",
    "printing/printers_sync_bridge_unittest.cc",
    "printing/specifics_translation_unittest.cc",
    "printing/synced_printers_manager_unittest.cc",
    "printing/test_cups_print_job_manager.cc",
    "printing/test_cups_print_job_manager.h",
    "printing/usb_printer_detector_unittest.cc",
    "printing/zeroconf_printer_detector_unittest.cc",
    "proxy_config_service_impl_unittest.cc",
    "release_notes/release_notes_notification_unittest.cc",
    "release_notes/release_notes_storage_unittest.cc",
    "resource_reporter/resource_reporter_unittest.cc",
    "scheduler_configuration_manager_unittest.cc",
    "session_length_limiter_unittest.cc",
    "settings/cros_settings_unittest.cc",
    "settings/device_oauth2_token_service_unittest.cc",
    "settings/device_settings_cache_unittest.cc",
    "settings/device_settings_provider_unittest.cc",
    "settings/device_settings_service_unittest.cc",
    "settings/session_manager_operation_unittest.cc",
    "settings/shutdown_policy_handler_unittest.cc",
    "settings/stats_reporting_controller_unittest.cc",
    "settings/stub_cros_settings_provider_unittest.cc",
    "smb_client/discovery/fake_netbios_client.cc",
    "smb_client/discovery/fake_netbios_client.h",
    "smb_client/discovery/in_memory_host_locator_unittest.cc",
    "smb_client/discovery/mdns_host_locator_unittest.cc",
    "smb_client/discovery/netbios_host_locator_unittest.cc",
    "smb_client/discovery/network_scanner_unittest.cc",
    "smb_client/smb_errors_unittest.cc",
    "smb_client/smb_file_system_id_test.cc",
    "smb_client/smb_file_system_unittest.cc",
    "smb_client/smb_service_helper_unittest.cc",
    "smb_client/smb_service_unittest.cc",
    "smb_client/smb_share_finder_unittest.cc",
    "smb_client/smb_task_queue_unittest.cc",
    "smb_client/smb_url_unittest.cc",
    "smb_client/temp_file_manager_unittest.cc",
    "startup_settings_cache_unittest.cc",
    "system/automatic_reboot_manager_unittest.cc",
    "system/device_disabling_manager_unittest.cc",
    "system/procfs_util_unittest.cc",
    "system/user_removal_manager_unittest.cc",
    "system_logs/single_debug_daemon_log_source_unittest.cc",
    "system_logs/single_log_file_log_source_unittest.cc",
    "tether/tether_service_unittest.cc",
    "throttle_observer_unittest.cc",
    "throttle_service_unittest.cc",
    "tpm_firmware_update_unittest.cc",
    "ui/gnubby_notification_unittest.cc",
    "ui/idle_app_name_notification_view_unittest.cc",
    "ui/low_disk_notification_unittest.cc",
    "usb/cros_usb_detector_unittest.cc",
    "wilco_dtc_supportd/testing_wilco_dtc_supportd_bridge_wrapper.cc",
    "wilco_dtc_supportd/testing_wilco_dtc_supportd_bridge_wrapper.h",
    "wilco_dtc_supportd/wilco_dtc_supportd_bridge_unittest.cc",
    "wilco_dtc_supportd/wilco_dtc_supportd_manager_unittest.cc",
    "wilco_dtc_supportd/wilco_dtc_supportd_messaging_unittest.cc",
    "wilco_dtc_supportd/wilco_dtc_supportd_notification_controller_unittest.cc",
    "wilco_dtc_supportd/wilco_dtc_supportd_web_request_service_unittest.cc",

    # TODO(zturner): Enable this on Windows. See
    # BrowserWithTestWindowTest::SetUp() for a comment explaining why this is
    # broken.
    "../../common/extensions/api/file_browser_handlers/file_browser_handler_manifest_unittest.cc",
    "../../common/extensions/api/file_system_provider/file_system_provider_handler_unittest.cc",
    "../ui/views/frame/immersive_mode_controller_ash_unittest.cc",
    "../ui/views/select_file_dialog_extension_unittest.cc",
    "../ui/webui/chromeos/login/encryption_migration_screen_handler_unittest.cc",
    "../ui/webui/chromeos/login/l10n_util_test_util.cc",
    "../ui/webui/chromeos/login/l10n_util_test_util.h",
    "../ui/webui/chromeos/login/l10n_util_unittest.cc",
    "../ui/webui/chromeos/login/oobe_display_chooser_unittest.cc",
    "../ui/webui/chromeos/login/signin_userlist_unittest.cc",
    "../ui/webui/settings/chromeos/device_keyboard_handler_unittest.cc",
    "../ui/webui/settings/chromeos/internet_handler_unittest.cc",
    "../ui/webui/settings/chromeos/multidevice_handler_unittest.cc",
    "//components/drive/about_resource_loader_unittest.cc",
    "//components/drive/change_list_loader_unittest.cc",
    "//components/drive/change_list_processor_unittest.cc",
    "//components/drive/chromeos/file_cache_unittest.cc",
    "//components/drive/directory_loader_unittest.cc",
    "//components/drive/drive_file_util_unittest.cc",
    "//components/drive/drive_notification_manager_unittest.cc",
    "//components/drive/drive_operation_queue_unittest.cc",
    "//components/drive/fake_file_system_unittest.cc",
    "//components/drive/file_change_unittest.cc",
    "//components/drive/file_system/copy_operation_unittest.cc",
    "//components/drive/file_system/create_directory_operation_unittest.cc",
    "//components/drive/file_system/create_file_operation_unittest.cc",
    "//components/drive/file_system/download_operation_unittest.cc",
    "//components/drive/file_system/get_file_for_saving_operation_unittest.cc",
    "//components/drive/file_system/move_operation_unittest.cc",
    "//components/drive/file_system/open_file_operation_unittest.cc",
    "//components/drive/file_system/operation_test_base.cc",
    "//components/drive/file_system/operation_test_base.h",
    "//components/drive/file_system/remove_operation_unittest.cc",
    "//components/drive/file_system/search_operation_unittest.cc",
    "//components/drive/file_system/set_property_operation_unittest.cc",
    "//components/drive/file_system/touch_operation_unittest.cc",
    "//components/drive/file_system/truncate_operation_unittest.cc",
    "//components/drive/file_system_core_util_unittest.cc",
    "//components/drive/file_system_unittest.cc",
    "//components/drive/file_write_watcher_unittest.cc",
    "//components/drive/job_queue_unittest.cc",
    "//components/drive/job_scheduler_unittest.cc",
    "//components/drive/local_file_reader_unittest.cc",
    "//components/drive/remove_stale_cache_files_unittest.cc",
    "//components/drive/resource_entry_conversion_unittest.cc",
    "//components/drive/resource_metadata_storage_unittest.cc",
    "//components/drive/resource_metadata_unittest.cc",
    "//components/drive/search_metadata_unittest.cc",
    "//components/drive/start_page_token_loader_unittest.cc",
    "//components/drive/sync/entry_revert_performer_unittest.cc",
    "//components/drive/sync/entry_update_performer_unittest.cc",
    "//components/drive/sync/remove_performer_unittest.cc",
    "//components/drive/sync_client_unittest.cc",
    "//components/drive/team_drive_change_list_loader_unittest.cc",
    "//components/drive/team_drive_list_loader_unittest.cc",
  ]

  public_deps = [
    ":chromeos",
  ]
  deps = [
    ":arc_test_support",
    ":attestation_proto",
    ":test_support",
    ":user_activity_event_proto",
    "//ash",
    "//ash/public/cpp:test_support",
    "//ash/system/message_center/arc",
    "//ash/system/message_center/arc:test_support",
    "//base",
    "//chrome/app:command_ids",
    "//chrome/browser/resources/chromeos/zip_archiver:char_coding",
    "//chrome/browser/ui",
    "//chrome/browser/ui:ash_test_support",
    "//chrome/browser/web_applications/components",
    "//chrome/common",
    "//chrome/services/wilco_dtc_supportd/public/mojom",
    "//chrome/test:test_support",
    "//chrome/test:test_support_ui",
    "//chrome/test:test_support_unit",
    "//chromeos",
    "//chromeos/attestation:test_support",
    "//chromeos/audio",
    "//chromeos/components/multidevice:test_support",
    "//chromeos/components/proximity_auth",
    "//chromeos/components/proximity_auth:test_support",
    "//chromeos/components/tether:test_support",
    "//chromeos/constants",
    "//chromeos/cryptohome:test_support",
    "//chromeos/dbus:test_support",
    "//chromeos/dbus/auth_policy",
    "//chromeos/dbus/cryptohome",
    "//chromeos/dbus/cryptohome:attestation_proto",
    "//chromeos/dbus/dlcservice:test_support",
    "//chromeos/dbus/power",
    "//chromeos/dbus/services:test_support",
    "//chromeos/dbus/session_manager",
    "//chromeos/dbus/system_clock",
    "//chromeos/dbus/upstart",
    "//chromeos/disks:test_support",
    "//chromeos/ime:gencode",
    "//chromeos/login/auth",
    "//chromeos/login/login_state",
    "//chromeos/login/login_state:test_support",
    "//chromeos/network",
    "//chromeos/network:test_support",
    "//chromeos/services/device_sync:test_support",
    "//chromeos/services/device_sync/public/cpp:test_support",
    "//chromeos/services/multidevice_setup/public/cpp:prefs",
    "//chromeos/services/multidevice_setup/public/cpp:test_support",
    "//chromeos/services/secure_channel/public/cpp/client",
    "//chromeos/services/secure_channel/public/cpp/client:test_support",
    "//chromeos/settings",
    "//chromeos/system",
    "//chromeos/tpm",
    "//chromeos/tpm:test_support",
    "//components/arc",
    "//components/arc:arc_test_support",
    "//components/arc:notification_test_support",
    "//components/component_updater:test_support",
    "//components/content_settings/core/browser",
    "//components/crx_file",
    "//components/download/public/background_service/test:test_support",
    "//components/drive",
    "//components/drive:drive_chromeos",
    "//components/drive:test_support",
    "//components/drive:test_support_chromeos",
    "//components/exo",
    "//components/invalidation/impl:test_support",
    "//components/invalidation/public",
    "//components/keyed_service/content",
    "//components/language/core/browser",
    "//components/onc",
    "//components/policy:generated",
    "//components/policy/core/common:test_support",
    "//components/policy/proto",
    "//components/pref_registry",
    "//components/prefs:test_support",
    "//components/renderer_context_menu",
    "//components/resources",
    "//components/session_manager/core",
    "//components/signin/public/identity_manager:test_support",
    "//components/sync",
    "//components/sync_preferences",
    "//components/user_prefs",
    "//components/variations:test_support",
    "//content/test:test_support",
    "//crypto:platform",
    "//dbus",
    "//device/bluetooth",
    "//google_apis:test_support",
    "//google_apis/drive:test_support",
    "//mojo/public/cpp/bindings",
    "//mojo/public/cpp/system:system",
    "//services/data_decoder/public/cpp:test_support",
    "//services/device/public/cpp:test_support",
    "//services/service_manager/public/cpp/test:test_support",
    "//skia",
    "//storage/browser:test_support",
    "//testing/gmock",
    "//testing/gtest",
    "//third_party/blink/public:blink_headers",
    "//third_party/icu",
    "//third_party/leveldatabase",
    "//third_party/zlib/google:compression_utils",
    "//ui/base:test_support",
    "//ui/base/ime/chromeos",
    "//ui/base/ime/init",
    "//ui/chromeos/resources",
    "//ui/display:test_support",
    "//ui/events/devices:test_support",
    "//ui/shell_dialogs",
  ]
  data = [
    "//chromeos/test/data/",
  ]
}

proto_library("attestation_proto") {
  sources = [
    "attestation/attestation_key_payload.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",
  ]
}

proto_library("backdrop_wallpaper_proto") {
  sources = [
    "backdrop_wallpaper_handlers/backdrop_wallpaper.proto",
  ]
  generate_python = false
}

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

proto_library("print_job_info_proto") {
  sources = [
    "printing/history/print_job_info.proto",
  ]
}

device_policy_remover_path = "$target_gen_dir/device_policy_remover.cc"

action("device_policy_remover_generate") {
  script = "policy/tools/generate_device_policy_remover.py"
  descriptor_pool_path = "//third_party/protobuf/python"
  symbol_database_path = "$root_build_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_build_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:i18n",
    "//base/test:test_support",
    "//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 = [
    "//base/test:test_support",
    "//chrome/browser",
    "//chrome/browser/chromeos",
  ]
}

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

    deps = [
      ":policy_fuzzer_proto",
      "//chrome/browser",
      "//chrome/browser/chromeos",
      "//third_party/libprotobuf-mutator",
    ]
  }

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

    import_dirs = [ "//components/policy/proto" ]

    link_deps =
        [ "//components/policy/proto:chrome_device_policy_full_runtime_proto" ]
  }
}