forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.gn
2483 lines (2425 loc) · 95.9 KB
/
BUILD.gn
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
# 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("//chromeos/assistant/assistant.gni")
import("//mojo/public/tools/bindings/mojom.gni")
import("//services/catalog/public/tools/catalog.gni")
import("//services/service_manager/public/cpp/service.gni")
import("//services/service_manager/public/service_manifest.gni")
import("//testing/test.gni")
import("//tools/grit/repack.gni")
import("//ui/base/ui_features.gni")
# Historical note: Ash shipped on Windows for a couple years to support
# Windows 8 Metro mode. Windows support was removed in 2016.
assert(is_chromeos)
assert(use_aura)
assert(enable_hidpi)
# Chromebooks use ozone/DRM. linux-chromeos uses ozone/X11.
assert(use_ozone)
component("ash") {
# All targets in this file are allowed to access any the headers in ash.
friend = [ ":*" ]
public = [
# This is the only header that should be used externally.
"ash_service.h",
# TODO: move the following to source. Do NOT add new files here.
"accelerators/accelerator_controller.h",
"accessibility/accessibility_controller.h",
"accessibility/accessibility_delegate.h",
"accessibility/focus_ring_controller.h",
"app_list/app_list_controller_impl.h",
"detachable_base/detachable_base_handler.h",
"detachable_base/detachable_base_observer.h",
"display/display_prefs.h",
"display/screen_orientation_controller.h",
"events/event_rewriter_controller.h",
"focus_cycler.h",
"frame/caption_buttons/frame_back_button.h",
"frame/caption_buttons/frame_caption_button_container_view.h",
"frame/custom_frame_header.h",
"frame/default_frame_header.h",
"frame/frame_header_util.h",
"frame/header_view.h",
"frame/non_client_frame_view_ash.h",
"frame/wide_frame_view.h",
"login/ui/lock_window.h",
"magnifier/magnification_controller.h",
"new_window_controller.h",
"root_window_controller.h",
"screenshot_delegate.h",
"session/session_controller.h",
"shelf/shelf.h",
"shelf/shelf_widget.h",
"shell.h",
"shell_delegate.h",
"shell_init_params.h",
"shell_observer.h",
"sticky_keys/sticky_keys_controller.h",
"system/status_area_widget.h",
"system/status_area_widget_delegate.h",
"system/system_tray_focus_observer.h",
"system/tray/system_tray.h",
"system/tray/system_tray_notifier.h",
"system/unified/unified_system_tray.h",
"touch/touch_observer_hud.h",
"wm/client_controlled_state.h",
"wm/drag_window_resizer.h",
"wm/mru_window_tracker.h",
"wm/overview/window_selector_controller.h",
"wm/splitview/split_view_controller.h",
"wm/tablet_mode/tablet_mode_app_window_drag_controller.h",
"wm/tablet_mode/tablet_mode_controller.h",
"wm/tablet_mode/tablet_mode_observer.h",
"wm/window_finder.h",
"wm/window_positioner.h",
"wm/window_positioning_utils.h",
"wm/window_properties.h",
"wm/window_resizer.h",
"wm/window_state.h",
"wm/window_state_delegate.h",
"wm/window_state_observer.h",
"wm/window_util.h",
"wm/wm_event.h",
"wm/workspace/workspace_window_resizer.h",
]
sources = [
"accelerators/accelerator_commands.cc",
"accelerators/accelerator_commands.h",
"accelerators/accelerator_confirmation_dialog.cc",
"accelerators/accelerator_confirmation_dialog.h",
"accelerators/accelerator_controller.cc",
"accelerators/accelerator_delegate.cc",
"accelerators/accelerator_delegate.h",
"accelerators/accelerator_ids.h",
"accelerators/accelerator_router.cc",
"accelerators/accelerator_router.h",
"accelerators/accelerator_table.cc",
"accelerators/accelerator_table.h",
"accelerators/ash_focus_manager_factory.cc",
"accelerators/ash_focus_manager_factory.h",
"accelerators/debug_commands.cc",
"accelerators/debug_commands.h",
"accelerators/exit_warning_handler.cc",
"accelerators/exit_warning_handler.h",
"accelerators/key_hold_detector.cc",
"accelerators/key_hold_detector.h",
"accelerators/magnifier_key_scroller.cc",
"accelerators/magnifier_key_scroller.h",
"accelerators/spoken_feedback_toggler.cc",
"accelerators/spoken_feedback_toggler.h",
"accessibility/accessibility_controller.cc",
"accessibility/accessibility_cursor_ring_layer.cc",
"accessibility/accessibility_cursor_ring_layer.h",
"accessibility/accessibility_focus_ring.cc",
"accessibility/accessibility_focus_ring.h",
"accessibility/accessibility_focus_ring_controller.cc",
"accessibility/accessibility_focus_ring_controller.h",
"accessibility/accessibility_focus_ring_group.cc",
"accessibility/accessibility_focus_ring_group.h",
"accessibility/accessibility_focus_ring_layer.cc",
"accessibility/accessibility_focus_ring_layer.h",
"accessibility/accessibility_highlight_controller.cc",
"accessibility/accessibility_highlight_controller.h",
"accessibility/accessibility_highlight_layer.cc",
"accessibility/accessibility_highlight_layer.h",
"accessibility/accessibility_layer.cc",
"accessibility/accessibility_layer.h",
"accessibility/accessibility_observer.h",
"accessibility/accessibility_panel_layout_manager.cc",
"accessibility/accessibility_panel_layout_manager.h",
"accessibility/default_accessibility_delegate.cc",
"accessibility/default_accessibility_delegate.h",
"accessibility/focus_ring_controller.cc",
"accessibility/focus_ring_layer.cc",
"accessibility/focus_ring_layer.h",
"accessibility/key_accessibility_enabler.cc",
"accessibility/key_accessibility_enabler.h",
"accessibility/layer_animation_info.cc",
"accessibility/layer_animation_info.h",
"accessibility/spoken_feedback_enabler.cc",
"accessibility/spoken_feedback_enabler.h",
"accessibility/touch_accessibility_enabler.cc",
"accessibility/touch_accessibility_enabler.h",
"accessibility/touch_exploration_controller.cc",
"accessibility/touch_exploration_controller.h",
"accessibility/touch_exploration_manager.cc",
"accessibility/touch_exploration_manager.h",
"animation/animation_change_type.h",
"app_list/app_list_controller_impl.cc",
"app_list/app_list_presenter_delegate_impl.cc",
"app_list/app_list_presenter_delegate_impl.h",
"app_list/home_launcher_gesture_handler.cc",
"app_list/home_launcher_gesture_handler.h",
"ash_export.h",
"ash_service.cc",
"assistant/assistant_cache_controller.cc",
"assistant/assistant_cache_controller.h",
"assistant/assistant_controller.cc",
"assistant/assistant_controller.h",
"assistant/assistant_controller_observer.h",
"assistant/assistant_interaction_controller.cc",
"assistant/assistant_interaction_controller.h",
"assistant/assistant_notification_controller.cc",
"assistant/assistant_notification_controller.h",
"assistant/assistant_screen_context_controller.cc",
"assistant/assistant_screen_context_controller.h",
"assistant/assistant_setup_controller.cc",
"assistant/assistant_setup_controller.h",
"assistant/assistant_ui_controller.cc",
"assistant/assistant_ui_controller.h",
"assistant/model/assistant_cache_model.cc",
"assistant/model/assistant_cache_model.h",
"assistant/model/assistant_cache_model_observer.h",
"assistant/model/assistant_interaction_model.cc",
"assistant/model/assistant_interaction_model.h",
"assistant/model/assistant_interaction_model_observer.h",
"assistant/model/assistant_query.cc",
"assistant/model/assistant_query.h",
"assistant/model/assistant_response.cc",
"assistant/model/assistant_response.h",
"assistant/model/assistant_screen_context_model.cc",
"assistant/model/assistant_screen_context_model.h",
"assistant/model/assistant_screen_context_model_observer.h",
"assistant/model/assistant_ui_element.h",
"assistant/model/assistant_ui_model.cc",
"assistant/model/assistant_ui_model.h",
"assistant/model/assistant_ui_model_observer.h",
"assistant/ui/assistant_container_view.cc",
"assistant/ui/assistant_container_view.h",
"assistant/ui/assistant_main_view.cc",
"assistant/ui/assistant_main_view.h",
"assistant/ui/assistant_mini_view.cc",
"assistant/ui/assistant_mini_view.h",
"assistant/ui/assistant_scroll_view.cc",
"assistant/ui/assistant_scroll_view.h",
"assistant/ui/assistant_web_view.cc",
"assistant/ui/assistant_web_view.h",
"assistant/ui/caption_bar.cc",
"assistant/ui/caption_bar.h",
"assistant/ui/dialog_plate/action_view.cc",
"assistant/ui/dialog_plate/action_view.h",
"assistant/ui/dialog_plate/dialog_plate.cc",
"assistant/ui/dialog_plate/dialog_plate.h",
"assistant/ui/logo_view/base_logo_view.cc",
"assistant/ui/logo_view/base_logo_view.h",
"assistant/ui/main_stage/assistant_footer_view.cc",
"assistant/ui/main_stage/assistant_footer_view.h",
"assistant/ui/main_stage/assistant_header_view.cc",
"assistant/ui/main_stage/assistant_header_view.h",
"assistant/ui/main_stage/assistant_main_stage.cc",
"assistant/ui/main_stage/assistant_main_stage.h",
"assistant/ui/main_stage/assistant_opt_in_view.cc",
"assistant/ui/main_stage/assistant_opt_in_view.h",
"assistant/ui/main_stage/assistant_progress_indicator.cc",
"assistant/ui/main_stage/assistant_progress_indicator.h",
"assistant/ui/main_stage/assistant_query_view.cc",
"assistant/ui/main_stage/assistant_query_view.h",
"assistant/ui/main_stage/assistant_text_element_view.cc",
"assistant/ui/main_stage/assistant_text_element_view.h",
"assistant/ui/main_stage/suggestion_container_view.cc",
"assistant/ui/main_stage/suggestion_container_view.h",
"assistant/ui/main_stage/ui_element_container_view.cc",
"assistant/ui/main_stage/ui_element_container_view.h",
"assistant/util/animation_util.cc",
"assistant/util/animation_util.h",
"assistant/util/assistant_util.cc",
"assistant/util/assistant_util.h",
"assistant/util/deep_link_util.cc",
"assistant/util/deep_link_util.h",
"assistant/util/views_util.cc",
"assistant/util/views_util.h",
"autoclick/autoclick_controller.cc",
"autoclick/autoclick_controller.h",
"cancel_mode.cc",
"cancel_mode.h",
"cast_config_controller.cc",
"cast_config_controller.h",
"client_image_registry.cc",
"client_image_registry.h",
"dbus/ash_dbus_services.cc",
"dbus/ash_dbus_services.h",
"dbus/display_service_provider.cc",
"dbus/display_service_provider.h",
"dbus/liveness_service_provider.cc",
"dbus/liveness_service_provider.h",
"dbus/url_handler_service_provider.cc",
"dbus/url_handler_service_provider.h",
"debug.cc",
"debug.h",
"detachable_base/detachable_base_handler.cc",
"detachable_base/detachable_base_notification_controller.cc",
"detachable_base/detachable_base_notification_controller.h",
"detachable_base/detachable_base_pairing_status.h",
"disconnected_app_handler.cc",
"disconnected_app_handler.h",
"display/ash_display_controller.cc",
"display/ash_display_controller.h",
"display/cros_display_config.cc",
"display/cros_display_config.h",
"display/cursor_window_controller.cc",
"display/cursor_window_controller.h",
"display/display_animator.cc",
"display/display_animator.h",
"display/display_color_manager.cc",
"display/display_color_manager.h",
"display/display_configuration_controller.cc",
"display/display_configuration_controller.h",
"display/display_configuration_observer.cc",
"display/display_configuration_observer.h",
"display/display_error_observer.cc",
"display/display_error_observer.h",
"display/display_move_window_util.cc",
"display/display_move_window_util.h",
"display/display_output_protection.cc",
"display/display_output_protection.h",
"display/display_prefs.cc",
"display/display_shutdown_observer.cc",
"display/display_shutdown_observer.h",
"display/display_util.cc",
"display/display_util.h",
"display/event_transformation_handler.cc",
"display/event_transformation_handler.h",
"display/extended_mouse_warp_controller.cc",
"display/extended_mouse_warp_controller.h",
"display/mirror_window_controller.cc",
"display/mirror_window_controller.h",
"display/mouse_cursor_event_filter.cc",
"display/mouse_cursor_event_filter.h",
"display/mouse_warp_controller.h",
"display/null_mouse_warp_controller.cc",
"display/null_mouse_warp_controller.h",
"display/overscan_calibrator.cc",
"display/overscan_calibrator.h",
"display/persistent_window_controller.cc",
"display/persistent_window_controller.h",
"display/persistent_window_info.cc",
"display/persistent_window_info.h",
"display/projecting_observer.cc",
"display/projecting_observer.h",
"display/resolution_notification_controller.cc",
"display/resolution_notification_controller.h",
"display/root_window_transformers.cc",
"display/root_window_transformers.h",
"display/screen_ash.cc",
"display/screen_ash.h",
"display/screen_orientation_controller.cc",
"display/screen_position_controller.cc",
"display/screen_position_controller.h",
"display/shared_display_edge_indicator.cc",
"display/shared_display_edge_indicator.h",
"display/touch_calibrator_controller.cc",
"display/touch_calibrator_controller.h",
"display/touch_calibrator_view.cc",
"display/touch_calibrator_view.h",
"display/unified_mouse_warp_controller.cc",
"display/unified_mouse_warp_controller.h",
"display/window_tree_host_manager.cc",
"display/window_tree_host_manager.h",
"drag_drop/drag_drop_controller.cc",
"drag_drop/drag_drop_controller.h",
"drag_drop/drag_drop_tracker.cc",
"drag_drop/drag_drop_tracker.h",
"drag_drop/drag_image_view.cc",
"drag_drop/drag_image_view.h",
"events/event_rewriter_controller.cc",
"events/keyboard_driven_event_rewriter.cc",
"events/keyboard_driven_event_rewriter.h",
"events/spoken_feedback_event_rewriter.cc",
"events/spoken_feedback_event_rewriter.h",
"first_run/desktop_cleaner.cc",
"first_run/desktop_cleaner.h",
"first_run/first_run_helper.cc",
"first_run/first_run_helper.h",
"focus_cycler.cc",
"frame/caption_buttons/caption_button_types.h",
"frame/caption_buttons/frame_back_button.cc",
"frame/caption_buttons/frame_caption_button.cc",
"frame/caption_buttons/frame_caption_button.h",
"frame/caption_buttons/frame_caption_button_container_view.cc",
"frame/caption_buttons/frame_size_button.cc",
"frame/caption_buttons/frame_size_button.h",
"frame/caption_buttons/frame_size_button_delegate.h",
"frame/custom_frame_header.cc",
"frame/default_frame_header.cc",
"frame/detached_title_area_renderer.cc",
"frame/detached_title_area_renderer.h",
"frame/frame_header.cc",
"frame/frame_header.h",
"frame/frame_header_util.cc",
"frame/header_view.cc",
"frame/non_client_frame_view_ash.cc",
"frame/wide_frame_view.cc",
"high_contrast/high_contrast_controller.cc",
"high_contrast/high_contrast_controller.h",
"highlighter/highlighter_controller.cc",
"highlighter/highlighter_controller.h",
"highlighter/highlighter_gesture_util.cc",
"highlighter/highlighter_gesture_util.h",
"highlighter/highlighter_result_view.cc",
"highlighter/highlighter_result_view.h",
"highlighter/highlighter_view.cc",
"highlighter/highlighter_view.h",
"host/ash_window_tree_host.cc",
"host/ash_window_tree_host.h",
"host/ash_window_tree_host_init_params.h",
"host/ash_window_tree_host_mirroring_delegate.h",
"host/ash_window_tree_host_mirroring_unified.cc",
"host/ash_window_tree_host_mirroring_unified.h",
"host/ash_window_tree_host_platform.cc",
"host/ash_window_tree_host_platform.h",
"host/ash_window_tree_host_unified.cc",
"host/ash_window_tree_host_unified.h",
"host/root_window_transformer.h",
"host/transformer_helper.cc",
"host/transformer_helper.h",
"ime/ime_controller.cc",
"ime/ime_controller.h",
"ime/ime_focus_handler.cc",
"ime/ime_focus_handler.h",
"ime/ime_mode_indicator_view.cc",
"ime/ime_mode_indicator_view.h",
"ime/ime_switch_type.h",
"ime/mode_indicator_observer.cc",
"ime/mode_indicator_observer.h",
"keyboard/virtual_keyboard_container_layout_manager.cc",
"keyboard/virtual_keyboard_container_layout_manager.h",
"keyboard/virtual_keyboard_controller.cc",
"keyboard/virtual_keyboard_controller.h",
"laser/laser_pointer_controller.cc",
"laser/laser_pointer_controller.h",
"laser/laser_pointer_view.cc",
"laser/laser_pointer_view.h",
"laser/laser_segment_utils.cc",
"laser/laser_segment_utils.h",
"lock_screen_action/lock_screen_action_background_controller.cc",
"lock_screen_action/lock_screen_action_background_controller.h",
"lock_screen_action/lock_screen_action_background_controller_impl.cc",
"lock_screen_action/lock_screen_action_background_controller_impl.h",
"lock_screen_action/lock_screen_action_background_controller_stub.cc",
"lock_screen_action/lock_screen_action_background_controller_stub.h",
"lock_screen_action/lock_screen_action_background_observer.h",
"lock_screen_action/lock_screen_action_background_state.h",
"lock_screen_action/lock_screen_action_background_view.cc",
"lock_screen_action/lock_screen_action_background_view.h",
"lock_screen_action/lock_screen_note_display_state_handler.cc",
"lock_screen_action/lock_screen_note_display_state_handler.h",
"lock_screen_action/lock_screen_note_launcher.cc",
"lock_screen_action/lock_screen_note_launcher.h",
"login/login_screen_controller.cc",
"login/login_screen_controller.h",
"login/login_screen_controller_observer.cc",
"login/login_screen_controller_observer.h",
"login/ui/animated_rounded_image_view.cc",
"login/ui/animated_rounded_image_view.h",
"login/ui/animation_frame.h",
"login/ui/arrow_button_view.cc",
"login/ui/arrow_button_view.h",
"login/ui/horizontal_image_sequence_animation_decoder.cc",
"login/ui/horizontal_image_sequence_animation_decoder.h",
"login/ui/hover_notifier.cc",
"login/ui/hover_notifier.h",
"login/ui/image_parser.cc",
"login/ui/image_parser.h",
"login/ui/lock_contents_view.cc",
"login/ui/lock_contents_view.h",
"login/ui/lock_debug_view.cc",
"login/ui/lock_debug_view.h",
"login/ui/lock_screen.cc",
"login/ui/lock_screen.h",
"login/ui/lock_window.cc",
"login/ui/login_auth_user_view.cc",
"login/ui/login_auth_user_view.h",
"login/ui/login_base_bubble_view.cc",
"login/ui/login_base_bubble_view.h",
"login/ui/login_big_user_view.cc",
"login/ui/login_big_user_view.h",
"login/ui/login_bubble.cc",
"login/ui/login_bubble.h",
"login/ui/login_button.cc",
"login/ui/login_button.h",
"login/ui/login_data_dispatcher.cc",
"login/ui/login_data_dispatcher.h",
"login/ui/login_detachable_base_model.cc",
"login/ui/login_detachable_base_model.h",
"login/ui/login_expanded_public_account_view.cc",
"login/ui/login_expanded_public_account_view.h",
"login/ui/login_menu_view.cc",
"login/ui/login_menu_view.h",
"login/ui/login_password_view.cc",
"login/ui/login_password_view.h",
"login/ui/login_pin_view.cc",
"login/ui/login_pin_view.h",
"login/ui/login_public_account_user_view.cc",
"login/ui/login_public_account_user_view.h",
"login/ui/login_user_view.cc",
"login/ui/login_user_view.h",
"login/ui/non_accessible_view.cc",
"login/ui/non_accessible_view.h",
"login/ui/note_action_launch_button.cc",
"login/ui/note_action_launch_button.h",
"login/ui/pin_keyboard_animation.cc",
"login/ui/pin_keyboard_animation.h",
"login/ui/public_account_warning_dialog.cc",
"login/ui/public_account_warning_dialog.h",
"login/ui/scrollable_users_list_view.cc",
"login/ui/scrollable_users_list_view.h",
"login/ui/user_switch_flip_animation.cc",
"login/ui/user_switch_flip_animation.h",
"login/ui/views_utils.cc",
"login/ui/views_utils.h",
"login_status.h",
"magnifier/docked_magnifier_controller.cc",
"magnifier/docked_magnifier_controller.h",
"magnifier/magnification_controller.cc",
"magnifier/magnifier_scale_utils.cc",
"magnifier/magnifier_scale_utils.h",
"magnifier/partial_magnification_controller.cc",
"magnifier/partial_magnification_controller.h",
"media_controller.cc",
"media_controller.h",
"message_center/arc_notification_manager_delegate_impl.cc",
"message_center/arc_notification_manager_delegate_impl.h",
"message_center/ash_message_center_lock_screen_controller.cc",
"message_center/ash_message_center_lock_screen_controller.h",
"message_center/message_center_bubble.cc",
"message_center/message_center_bubble.h",
"message_center/message_center_button_bar.cc",
"message_center/message_center_button_bar.h",
"message_center/message_center_controller.cc",
"message_center/message_center_controller.h",
"message_center/message_center_scroll_bar.cc",
"message_center/message_center_scroll_bar.h",
"message_center/message_center_style.h",
"message_center/message_center_ui_controller.cc",
"message_center/message_center_ui_controller.h",
"message_center/message_center_ui_delegate.h",
"message_center/message_center_view.cc",
"message_center/message_center_view.h",
"message_center/message_list_view.cc",
"message_center/message_list_view.h",
"message_center/notifier_settings_view.cc",
"message_center/notifier_settings_view.h",
"metrics/demo_session_metrics_recorder.cc",
"metrics/demo_session_metrics_recorder.h",
"metrics/desktop_task_switch_metric_recorder.cc",
"metrics/desktop_task_switch_metric_recorder.h",
"metrics/gesture_action_type.h",
"metrics/login_metrics_recorder.cc",
"metrics/login_metrics_recorder.h",
"metrics/pointer_metrics_recorder.cc",
"metrics/pointer_metrics_recorder.h",
"metrics/task_switch_metrics_recorder.cc",
"metrics/task_switch_metrics_recorder.h",
"metrics/task_switch_source.h",
"metrics/task_switch_time_tracker.cc",
"metrics/task_switch_time_tracker.h",
"metrics/time_to_first_present_recorder.cc",
"metrics/time_to_first_present_recorder.h",
"metrics/user_metrics_action.h",
"metrics/user_metrics_recorder.cc",
"metrics/user_metrics_recorder.h",
"mojo_interface_factory.cc",
"mojo_interface_factory.h",
"multi_device_setup/multi_device_notification_presenter.cc",
"multi_device_setup/multi_device_notification_presenter.h",
"multi_profile_uma.cc",
"multi_profile_uma.h",
"network_connect_delegate_mus.cc",
"network_connect_delegate_mus.h",
"new_window_controller.cc",
"note_taking_controller.cc",
"note_taking_controller.h",
"pointer_watcher_adapter.cc",
"pointer_watcher_adapter.h",
"policy/policy_recommendation_restorer.cc",
"policy/policy_recommendation_restorer.h",
"root_window_controller.cc",
"root_window_settings.cc",
"root_window_settings.h",
"rotator/screen_rotation_animation.cc",
"rotator/screen_rotation_animation.h",
"rotator/screen_rotation_animator.cc",
"rotator/screen_rotation_animator.h",
"rotator/screen_rotation_animator_observer.h",
"rotator/window_rotation.cc",
"rotator/window_rotation.h",
"scoped_root_window_for_new_windows.cc",
"scoped_root_window_for_new_windows.h",
"screen_util.cc",
"screen_util.h",
"session/multiprofiles_intro_dialog.cc",
"session/multiprofiles_intro_dialog.h",
"session/session_aborted_dialog.cc",
"session/session_aborted_dialog.h",
"session/session_activation_observer_holder.cc",
"session/session_activation_observer_holder.h",
"session/session_controller.cc",
"session/session_observer.cc",
"session/session_observer.h",
"session/teleport_warning_dialog.cc",
"session/teleport_warning_dialog.h",
"shelf/app_list_button.cc",
"shelf/app_list_button.h",
"shelf/app_list_shelf_item_delegate.cc",
"shelf/app_list_shelf_item_delegate.h",
"shelf/assistant_overlay.cc",
"shelf/assistant_overlay.h",
"shelf/back_button.cc",
"shelf/back_button.h",
"shelf/ink_drop_button_listener.h",
"shelf/login_shelf_view.cc",
"shelf/login_shelf_view.h",
"shelf/overflow_bubble.cc",
"shelf/overflow_bubble.h",
"shelf/overflow_bubble_view.cc",
"shelf/overflow_bubble_view.h",
"shelf/overflow_button.cc",
"shelf/overflow_button.h",
"shelf/shelf.cc",
"shelf/shelf_application_menu_model.cc",
"shelf/shelf_application_menu_model.h",
"shelf/shelf_background_animator.cc",
"shelf/shelf_background_animator.h",
"shelf/shelf_background_animator_observer.h",
"shelf/shelf_bezel_event_handler.cc",
"shelf/shelf_bezel_event_handler.h",
"shelf/shelf_button.cc",
"shelf/shelf_button.h",
"shelf/shelf_button_pressed_metric_tracker.cc",
"shelf/shelf_button_pressed_metric_tracker.h",
"shelf/shelf_constants.h",
"shelf/shelf_context_menu_model.cc",
"shelf/shelf_context_menu_model.h",
"shelf/shelf_controller.cc",
"shelf/shelf_controller.h",
"shelf/shelf_layout_manager.cc",
"shelf/shelf_layout_manager.h",
"shelf/shelf_layout_manager_observer.h",
"shelf/shelf_locking_manager.cc",
"shelf/shelf_locking_manager.h",
"shelf/shelf_menu_model_adapter.cc",
"shelf/shelf_menu_model_adapter.h",
"shelf/shelf_observer.h",
"shelf/shelf_tooltip_bubble.cc",
"shelf/shelf_tooltip_bubble.h",
"shelf/shelf_tooltip_bubble_base.cc",
"shelf/shelf_tooltip_bubble_base.h",
"shelf/shelf_tooltip_manager.cc",
"shelf/shelf_tooltip_manager.h",
"shelf/shelf_tooltip_preview_bubble.cc",
"shelf/shelf_tooltip_preview_bubble.h",
"shelf/shelf_view.cc",
"shelf/shelf_view.h",
"shelf/shelf_widget.cc",
"shelf/shelf_window_targeter.cc",
"shelf/shelf_window_targeter.h",
"shelf/shelf_window_watcher.cc",
"shelf/shelf_window_watcher.h",
"shelf/shelf_window_watcher_item_delegate.cc",
"shelf/shelf_window_watcher_item_delegate.h",
"shelf/window_preview.cc",
"shelf/window_preview.h",
"shell.cc",
"shell_delegate_mash.cc",
"shell_delegate_mash.h",
"shell_init_params.cc",
"shell_state.cc",
"shell_state.h",
"shutdown_controller.cc",
"shutdown_controller.h",
"shutdown_reason.cc",
"shutdown_reason.h",
"sticky_keys/sticky_keys_controller.cc",
"sticky_keys/sticky_keys_overlay.cc",
"sticky_keys/sticky_keys_overlay.h",
"sticky_keys/sticky_keys_state.h",
"system/accessibility/dictation_button_tray.cc",
"system/accessibility/dictation_button_tray.h",
"system/accessibility/select_to_speak_tray.cc",
"system/accessibility/select_to_speak_tray.h",
"system/audio/audio_detailed_view.cc",
"system/audio/audio_detailed_view.h",
"system/audio/display_speaker_controller.cc",
"system/audio/display_speaker_controller.h",
"system/audio/tray_audio.cc",
"system/audio/tray_audio.h",
"system/audio/unified_audio_detailed_view_controller.cc",
"system/audio/unified_audio_detailed_view_controller.h",
"system/audio/unified_volume_slider_controller.cc",
"system/audio/unified_volume_slider_controller.h",
"system/audio/unified_volume_view.cc",
"system/audio/unified_volume_view.h",
"system/audio/volume_view.cc",
"system/audio/volume_view.h",
"system/bluetooth/bluetooth_detailed_view.cc",
"system/bluetooth/bluetooth_detailed_view.h",
"system/bluetooth/bluetooth_feature_pod_controller.cc",
"system/bluetooth/bluetooth_feature_pod_controller.h",
"system/bluetooth/bluetooth_notification_controller.cc",
"system/bluetooth/bluetooth_notification_controller.h",
"system/bluetooth/bluetooth_observer.h",
"system/bluetooth/bluetooth_power_controller.cc",
"system/bluetooth/bluetooth_power_controller.h",
"system/bluetooth/tray_bluetooth.cc",
"system/bluetooth/tray_bluetooth.h",
"system/bluetooth/tray_bluetooth_helper.cc",
"system/bluetooth/tray_bluetooth_helper.h",
"system/bluetooth/unified_bluetooth_detailed_view_controller.cc",
"system/bluetooth/unified_bluetooth_detailed_view_controller.h",
"system/brightness/brightness_controller_chromeos.cc",
"system/brightness/brightness_controller_chromeos.h",
"system/brightness/tray_brightness.cc",
"system/brightness/tray_brightness.h",
"system/brightness/unified_brightness_slider_controller.cc",
"system/brightness/unified_brightness_slider_controller.h",
"system/brightness/unified_brightness_view.cc",
"system/brightness/unified_brightness_view.h",
"system/brightness_control_delegate.h",
"system/caps_lock_notification_controller.cc",
"system/caps_lock_notification_controller.h",
"system/cast/cast_feature_pod_controller.cc",
"system/cast/cast_feature_pod_controller.h",
"system/cast/cast_notification_controller.cc",
"system/cast/cast_notification_controller.h",
"system/cast/tray_cast.cc",
"system/cast/tray_cast.h",
"system/cast/unified_cast_detailed_view_controller.cc",
"system/cast/unified_cast_detailed_view_controller.h",
"system/date/clock_observer.h",
"system/date/date_view.cc",
"system/date/date_view.h",
"system/date/system_info_default_view.cc",
"system/date/system_info_default_view.h",
"system/date/tray_system_info.cc",
"system/date/tray_system_info.h",
"system/display_scale/scale_detailed_view.cc",
"system/display_scale/scale_detailed_view.h",
"system/display_scale/scale_view.cc",
"system/display_scale/scale_view.h",
"system/display_scale/tray_scale.cc",
"system/display_scale/tray_scale.h",
"system/enterprise/enterprise_domain_observer.h",
"system/enterprise/tray_enterprise.cc",
"system/enterprise/tray_enterprise.h",
"system/flag_warning/flag_warning_tray.cc",
"system/flag_warning/flag_warning_tray.h",
"system/ime/ime_feature_pod_controller.cc",
"system/ime/ime_feature_pod_controller.h",
"system/ime/ime_observer.h",
"system/ime/tray_ime_chromeos.cc",
"system/ime/tray_ime_chromeos.h",
"system/ime/unified_ime_detailed_view_controller.cc",
"system/ime/unified_ime_detailed_view_controller.h",
"system/ime_menu/ime_list_view.cc",
"system/ime_menu/ime_list_view.h",
"system/ime_menu/ime_menu_tray.cc",
"system/ime_menu/ime_menu_tray.h",
"system/keyboard_brightness/keyboard_brightness_controller.cc",
"system/keyboard_brightness/keyboard_brightness_controller.h",
"system/keyboard_brightness/tray_keyboard_brightness.cc",
"system/keyboard_brightness/tray_keyboard_brightness.h",
"system/keyboard_brightness/unified_keyboard_brightness_slider_controller.cc",
"system/keyboard_brightness/unified_keyboard_brightness_slider_controller.h",
"system/keyboard_brightness_control_delegate.h",
"system/locale/locale_notification_controller.cc",
"system/locale/locale_notification_controller.h",
"system/media_security/multi_profile_media_tray_item.cc",
"system/media_security/multi_profile_media_tray_item.h",
"system/message_center/ash_popup_alignment_delegate.cc",
"system/message_center/ash_popup_alignment_delegate.h",
"system/message_center/fullscreen_notification_blocker.cc",
"system/message_center/fullscreen_notification_blocker.h",
"system/message_center/inactive_user_notification_blocker.cc",
"system/message_center/inactive_user_notification_blocker.h",
"system/message_center/notification_tray.cc",
"system/message_center/notification_tray.h",
"system/message_center/session_state_notification_blocker.cc",
"system/message_center/session_state_notification_blocker.h",
"system/model/clock_model.cc",
"system/model/clock_model.h",
"system/model/enterprise_domain_model.cc",
"system/model/enterprise_domain_model.h",
"system/model/session_length_limit_model.cc",
"system/model/session_length_limit_model.h",
"system/model/system_tray_model.cc",
"system/model/system_tray_model.h",
"system/model/tracing_model.cc",
"system/model/tracing_model.h",
"system/model/update_model.cc",
"system/model/update_model.h",
"system/network/auto_connect_notifier.cc",
"system/network/auto_connect_notifier.h",
"system/network/network_feature_pod_button.cc",
"system/network/network_feature_pod_button.h",
"system/network/network_feature_pod_controller.cc",
"system/network/network_feature_pod_controller.h",
"system/network/network_icon.cc",
"system/network/network_icon.h",
"system/network/network_icon_animation.cc",
"system/network/network_icon_animation.h",
"system/network/network_icon_animation_observer.h",
"system/network/network_info.cc",
"system/network/network_info.h",
"system/network/network_list.cc",
"system/network/network_list.h",
"system/network/network_observer.h",
"system/network/network_row_title_view.cc",
"system/network/network_row_title_view.h",
"system/network/network_state_list_detailed_view.cc",
"system/network/network_state_list_detailed_view.h",
"system/network/network_tray_view.cc",
"system/network/network_tray_view.h",
"system/network/sms_observer.cc",
"system/network/sms_observer.h",
"system/network/tray_network.cc",
"system/network/tray_network.h",
"system/network/tray_network_state_observer.cc",
"system/network/tray_network_state_observer.h",
"system/network/tray_vpn.cc",
"system/network/tray_vpn.h",
"system/network/unified_network_detailed_view_controller.cc",
"system/network/unified_network_detailed_view_controller.h",
"system/network/unified_vpn_detailed_view_controller.cc",
"system/network/unified_vpn_detailed_view_controller.h",
"system/network/vpn_feature_pod_controller.cc",
"system/network/vpn_feature_pod_controller.h",
"system/network/vpn_list.cc",
"system/network/vpn_list.h",
"system/network/vpn_list_view.cc",
"system/network/vpn_list_view.h",
"system/network/wifi_toggle_notification_controller.cc",
"system/network/wifi_toggle_notification_controller.h",
"system/night_light/night_light_controller.cc",
"system/night_light/night_light_controller.h",
"system/night_light/night_light_feature_pod_controller.cc",
"system/night_light/night_light_feature_pod_controller.h",
"system/night_light/night_light_toggle_button.cc",
"system/night_light/night_light_toggle_button.h",
"system/night_light/time_of_day.cc",
"system/night_light/time_of_day.h",
"system/night_light/tray_night_light.cc",
"system/night_light/tray_night_light.h",
"system/overview/overview_button_tray.cc",
"system/overview/overview_button_tray.h",
"system/palette/common_palette_tool.cc",
"system/palette/common_palette_tool.h",
"system/palette/palette_ids.cc",
"system/palette/palette_ids.h",
"system/palette/palette_tool.cc",
"system/palette/palette_tool.h",
"system/palette/palette_tool_manager.cc",
"system/palette/palette_tool_manager.h",
"system/palette/palette_tray.cc",
"system/palette/palette_tray.h",
"system/palette/palette_utils.cc",
"system/palette/palette_utils.h",
"system/palette/palette_welcome_bubble.cc",
"system/palette/palette_welcome_bubble.h",
"system/palette/tools/capture_region_mode.cc",
"system/palette/tools/capture_region_mode.h",
"system/palette/tools/capture_screen_action.cc",
"system/palette/tools/capture_screen_action.h",
"system/palette/tools/create_note_action.cc",
"system/palette/tools/create_note_action.h",
"system/palette/tools/laser_pointer_mode.cc",
"system/palette/tools/laser_pointer_mode.h",
"system/palette/tools/magnifier_mode.cc",
"system/palette/tools/magnifier_mode.h",
"system/palette/tools/metalayer_mode.cc",
"system/palette/tools/metalayer_mode.h",
"system/power/backlights_forced_off_setter.cc",
"system/power/backlights_forced_off_setter.h",
"system/power/battery_notification.cc",
"system/power/battery_notification.h",
"system/power/dual_role_notification.cc",
"system/power/dual_role_notification.h",
"system/power/peripheral_battery_notifier.cc",
"system/power/peripheral_battery_notifier.h",
"system/power/power_button_controller.cc",
"system/power/power_button_controller.h",
"system/power/power_button_display_controller.cc",
"system/power/power_button_display_controller.h",
"system/power/power_button_menu_item_view.cc",
"system/power/power_button_menu_item_view.h",
"system/power/power_button_menu_metrics_type.cc",
"system/power/power_button_menu_metrics_type.h",
"system/power/power_button_menu_screen_view.cc",
"system/power/power_button_menu_screen_view.h",
"system/power/power_button_menu_view.cc",
"system/power/power_button_menu_view.h",
"system/power/power_button_screenshot_controller.cc",
"system/power/power_button_screenshot_controller.h",
"system/power/power_event_observer.cc",
"system/power/power_event_observer.h",
"system/power/power_notification_controller.cc",
"system/power/power_notification_controller.h",
"system/power/power_prefs.cc",
"system/power/power_prefs.h",
"system/power/power_status.cc",
"system/power/power_status.h",
"system/power/power_status_view.cc",
"system/power/power_status_view.h",
"system/power/scoped_backlights_forced_off.cc",
"system/power/scoped_backlights_forced_off.h",
"system/power/tray_power.cc",
"system/power/tray_power.h",
"system/power/video_activity_notifier.cc",
"system/power/video_activity_notifier.h",
"system/rotation/rotation_lock_feature_pod_controller.cc",
"system/rotation/rotation_lock_feature_pod_controller.h",
"system/rotation/tray_rotation_lock.cc",
"system/rotation/tray_rotation_lock.h",
"system/screen_layout_observer.cc",
"system/screen_layout_observer.h",
"system/screen_security/screen_capture_observer.h",
"system/screen_security/screen_capture_tray_item.cc",
"system/screen_security/screen_capture_tray_item.h",
"system/screen_security/screen_security_notification_controller.cc",
"system/screen_security/screen_security_notification_controller.h",
"system/screen_security/screen_share_observer.h",
"system/screen_security/screen_share_tray_item.cc",
"system/screen_security/screen_share_tray_item.h",
"system/screen_security/screen_switch_check_controller.cc",
"system/screen_security/screen_switch_check_controller.h",
"system/screen_security/screen_tray_item.cc",
"system/screen_security/screen_tray_item.h",
"system/session/logout_button_tray.cc",
"system/session/logout_button_tray.h",
"system/session/logout_confirmation_controller.cc",
"system/session/logout_confirmation_controller.h",
"system/session/logout_confirmation_dialog.cc",
"system/session/logout_confirmation_dialog.h",
"system/session/session_limit_notification_controller.cc",
"system/session/session_limit_notification_controller.h",
"system/session/tray_session_length_limit.cc",
"system/session/tray_session_length_limit.h",
"system/status_area_layout_manager.cc",
"system/status_area_layout_manager.h",
"system/status_area_widget.cc",
"system/status_area_widget_delegate.cc",
"system/supervised/supervised_icon_string.cc",
"system/supervised/supervised_icon_string.h",
"system/supervised/supervised_notification_controller.cc",
"system/supervised/supervised_notification_controller.h",
"system/supervised/tray_supervised_user.cc",
"system/supervised/tray_supervised_user.h",
"system/system_notification_controller.cc",
"system/system_notification_controller.h",
"system/tiles/tiles_default_view.cc",
"system/tiles/tiles_default_view.h",
"system/tiles/tray_tiles.cc",
"system/tiles/tray_tiles.h",
"system/toast/toast_data.cc",
"system/toast/toast_data.h",
"system/toast/toast_manager.cc",
"system/toast/toast_manager.h",
"system/toast/toast_overlay.cc",
"system/toast/toast_overlay.h",
"system/tracing_notification_controller.cc",
"system/tracing_notification_controller.h",
"system/tray/actionable_view.cc",
"system/tray/actionable_view.h",
"system/tray/detailed_view_delegate.h",
"system/tray/hover_highlight_view.cc",
"system/tray/hover_highlight_view.h",
"system/tray/interacted_by_tap_recorder.cc",
"system/tray/interacted_by_tap_recorder.h",
"system/tray/label_tray_view.cc",
"system/tray/label_tray_view.h",
"system/tray/size_range_layout.cc",
"system/tray/size_range_layout.h",
"system/tray/system_menu_button.cc",
"system/tray/system_menu_button.h",
"system/tray/system_tray.cc",
"system/tray/system_tray_bubble.cc",
"system/tray/system_tray_bubble.h",
"system/tray/system_tray_item.cc",
"system/tray/system_tray_item.h",
"system/tray/system_tray_item_detailed_view_delegate.cc",
"system/tray/system_tray_item_detailed_view_delegate.h",
"system/tray/system_tray_item_uma_type.h",
"system/tray/system_tray_notifier.cc",
"system/tray/system_tray_view.cc",
"system/tray/system_tray_view.h",
"system/tray/time_to_click_recorder.cc",
"system/tray/time_to_click_recorder.h",
"system/tray/tray_background_view.cc",
"system/tray/tray_background_view.h",
"system/tray/tray_bubble_base.h",
"system/tray/tray_bubble_wrapper.cc",
"system/tray/tray_bubble_wrapper.h",
"system/tray/tray_constants.cc",
"system/tray/tray_constants.h",
"system/tray/tray_container.cc",
"system/tray/tray_container.h",
"system/tray/tray_detailed_view.cc",
"system/tray/tray_detailed_view.h",
"system/tray/tray_event_filter.cc",
"system/tray/tray_event_filter.h",
"system/tray/tray_image_item.cc",
"system/tray/tray_image_item.h",
"system/tray/tray_info_label.cc",
"system/tray/tray_info_label.h",
"system/tray/tray_item_more.cc",
"system/tray/tray_item_more.h",
"system/tray/tray_item_view.cc",
"system/tray/tray_item_view.h",
"system/tray/tray_popup_ink_drop_style.h",
"system/tray/tray_popup_item_style.cc",
"system/tray/tray_popup_item_style.h",
"system/tray/tray_popup_utils.cc",
"system/tray/tray_popup_utils.h",
"system/tray/tray_utils.cc",
"system/tray/tray_utils.h",
"system/tray/tri_view.cc",
"system/tray/tri_view.h",
"system/tray/view_click_listener.h",
"system/tray_accessibility.cc",
"system/tray_accessibility.h",
"system/tray_caps_lock.cc",
"system/tray_caps_lock.h",
"system/tray_drag_controller.cc",
"system/tray_drag_controller.h",
"system/tray_tracing.cc",
"system/tray_tracing.h",
"system/unified/accessibility_feature_pod_controller.cc",
"system/unified/accessibility_feature_pod_controller.h",
"system/unified/collapse_button.cc",
"system/unified/collapse_button.h",
"system/unified/detailed_view_controller.h",
"system/unified/feature_pod_button.cc",
"system/unified/feature_pod_button.h",
"system/unified/feature_pod_controller_base.cc",