OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 component("wm") { | 5 component("wm") { |
6 sources = [ | 6 sources = [ |
7 "core/accelerator_delegate.h", | 7 "core/accelerator_delegate.h", |
8 "core/accelerator_filter.cc", | 8 "core/accelerator_filter.cc", |
9 "core/accelerator_filter.h", | 9 "core/accelerator_filter.h", |
10 "core/base_focus_rules.cc", | 10 "core/base_focus_rules.cc", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 "core/shadow_controller.h", | 47 "core/shadow_controller.h", |
48 "core/shadow_types.cc", | 48 "core/shadow_types.cc", |
49 "core/shadow_types.h", | 49 "core/shadow_types.h", |
50 "core/transient_window_controller.cc", | 50 "core/transient_window_controller.cc", |
51 "core/transient_window_controller.h", | 51 "core/transient_window_controller.h", |
52 "core/transient_window_manager.cc", | 52 "core/transient_window_manager.cc", |
53 "core/transient_window_manager.h", | 53 "core/transient_window_manager.h", |
54 "core/transient_window_observer.h", | 54 "core/transient_window_observer.h", |
55 "core/transient_window_stacking_client.cc", | 55 "core/transient_window_stacking_client.cc", |
56 "core/transient_window_stacking_client.h", | 56 "core/transient_window_stacking_client.h", |
57 "core/user_activity_detector.cc", | |
58 "core/user_activity_detector.h", | |
59 "core/user_activity_observer.h", | |
60 "core/visibility_controller.cc", | 57 "core/visibility_controller.cc", |
61 "core/visibility_controller.h", | 58 "core/visibility_controller.h", |
62 "core/window_animations.cc", | 59 "core/window_animations.cc", |
63 "core/window_animations.h", | 60 "core/window_animations.h", |
64 "core/window_modality_controller.cc", | 61 "core/window_modality_controller.cc", |
65 "core/window_modality_controller.h", | 62 "core/window_modality_controller.h", |
66 "core/window_util.cc", | 63 "core/window_util.cc", |
67 "core/window_util.h", | 64 "core/window_util.h", |
68 "core/wm_core_switches.cc", | 65 "core/wm_core_switches.cc", |
69 "core/wm_core_switches.h", | 66 "core/wm_core_switches.h", |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 "core/capture_controller_unittest.cc", | 112 "core/capture_controller_unittest.cc", |
116 "core/compound_event_filter_unittest.cc", | 113 "core/compound_event_filter_unittest.cc", |
117 "core/cursor_manager_unittest.cc", | 114 "core/cursor_manager_unittest.cc", |
118 "core/focus_controller_unittest.cc", | 115 "core/focus_controller_unittest.cc", |
119 "core/input_method_event_filter_unittest.cc", | 116 "core/input_method_event_filter_unittest.cc", |
120 "core/image_grid_unittest.cc", | 117 "core/image_grid_unittest.cc", |
121 "core/nested_accelerator_controller_unittest.cc", | 118 "core/nested_accelerator_controller_unittest.cc", |
122 "core/shadow_controller_unittest.cc", | 119 "core/shadow_controller_unittest.cc", |
123 "core/transient_window_manager_unittest.cc", | 120 "core/transient_window_manager_unittest.cc", |
124 "core/transient_window_stacking_client_unittest.cc", | 121 "core/transient_window_stacking_client_unittest.cc", |
125 "core/user_activity_detector_unittest.cc", | |
126 "core/visibility_controller_unittest.cc", | 122 "core/visibility_controller_unittest.cc", |
127 "core/window_animations_unittest.cc", | 123 "core/window_animations_unittest.cc", |
128 ] | 124 ] |
129 | 125 |
130 deps = [ | 126 deps = [ |
131 ":test_support", | 127 ":test_support", |
132 ":wm", | 128 ":wm", |
133 "//base", | 129 "//base", |
134 "//base/test:test_support", | 130 "//base/test:test_support", |
135 "//skia", | 131 "//skia", |
136 "//testing/gtest", | 132 "//testing/gtest", |
137 "//ui/aura:test_support", | 133 "//ui/aura:test_support", |
138 "//ui/base:test_support", | 134 "//ui/base:test_support", |
139 "//ui/compositor:test_support", | 135 "//ui/compositor:test_support", |
140 "//ui/events:test_support", | 136 "//ui/events:test_support", |
141 "//ui/events/platform", | 137 "//ui/events/platform", |
142 "//ui/gfx", | 138 "//ui/gfx", |
143 "//ui/gfx/geometry", | 139 "//ui/gfx/geometry", |
144 "//ui/gl", | 140 "//ui/gl", |
145 ] | 141 ] |
146 } | 142 } |
OLD | NEW |