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", |
11 "core/base_focus_rules.h", | 11 "core/base_focus_rules.h", |
12 "core/capture_controller.cc", | 12 "core/capture_controller.cc", |
13 "core/capture_controller.h", | 13 "core/capture_controller.h", |
14 "core/compound_event_filter.cc", | 14 "core/compound_event_filter.cc", |
15 "core/compound_event_filter.h", | 15 "core/compound_event_filter.h", |
16 "core/coordinate_conversion.cc", | 16 "core/coordinate_conversion.cc", |
17 "core/coordinate_conversion.h", | 17 "core/coordinate_conversion.h", |
18 "core/cursor_manager.cc", | 18 "core/cursor_manager.cc", |
19 "core/cursor_manager.h", | 19 "core/cursor_manager.h", |
20 "core/default_activation_client.cc", | 20 "core/default_activation_client.cc", |
21 "core/default_activation_client.h", | 21 "core/default_activation_client.h", |
| 22 "core/default_screen_position_client.cc", |
| 23 "core/default_screen_position_client.h", |
22 "core/easy_resize_window_targeter.cc", | 24 "core/easy_resize_window_targeter.cc", |
23 "core/easy_resize_window_targeter.h", | 25 "core/easy_resize_window_targeter.h", |
24 "core/focus_controller.cc", | 26 "core/focus_controller.cc", |
25 "core/focus_controller.h", | 27 "core/focus_controller.h", |
26 "core/focus_rules.h", | 28 "core/focus_rules.h", |
27 "core/image_grid.cc", | 29 "core/image_grid.cc", |
28 "core/image_grid.h", | 30 "core/image_grid.h", |
29 "core/input_method_event_filter.cc", | 31 "core/input_method_event_filter.cc", |
30 "core/input_method_event_filter.h", | 32 "core/input_method_event_filter.h", |
31 "core/masked_window_targeter.cc", | 33 "core/masked_window_targeter.cc", |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 "//ui/aura:test_support", | 135 "//ui/aura:test_support", |
134 "//ui/base:test_support", | 136 "//ui/base:test_support", |
135 "//ui/compositor:test_support", | 137 "//ui/compositor:test_support", |
136 "//ui/events:test_support", | 138 "//ui/events:test_support", |
137 "//ui/events/platform", | 139 "//ui/events/platform", |
138 "//ui/gfx", | 140 "//ui/gfx", |
139 "//ui/gfx/geometry", | 141 "//ui/gfx/geometry", |
140 "//ui/gl", | 142 "//ui/gl", |
141 ] | 143 ] |
142 } | 144 } |
OLD | NEW |