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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 "//ui/aura:test_support", | 105 "//ui/aura:test_support", |
106 "//ui/base", | 106 "//ui/base", |
107 "//ui/events", | 107 "//ui/events", |
108 "//ui/events:events_base", | 108 "//ui/events:events_base", |
109 ] | 109 ] |
110 } | 110 } |
111 | 111 |
112 test("wm_unittests") { | 112 test("wm_unittests") { |
113 sources = [ | 113 sources = [ |
114 "test/run_all_unittests.cc", | 114 "test/run_all_unittests.cc", |
| 115 "core/capture_controller_unittest.cc", |
115 "core/compound_event_filter_unittest.cc", | 116 "core/compound_event_filter_unittest.cc", |
116 "core/cursor_manager_unittest.cc", | 117 "core/cursor_manager_unittest.cc", |
117 "core/focus_controller_unittest.cc", | 118 "core/focus_controller_unittest.cc", |
118 "core/input_method_event_filter_unittest.cc", | 119 "core/input_method_event_filter_unittest.cc", |
119 "core/image_grid_unittest.cc", | 120 "core/image_grid_unittest.cc", |
120 "core/nested_accelerator_controller_unittest.cc", | 121 "core/nested_accelerator_controller_unittest.cc", |
121 "core/shadow_controller_unittest.cc", | 122 "core/shadow_controller_unittest.cc", |
122 "core/transient_window_manager_unittest.cc", | 123 "core/transient_window_manager_unittest.cc", |
123 "core/transient_window_stacking_client_unittest.cc", | 124 "core/transient_window_stacking_client_unittest.cc", |
124 "core/user_activity_detector_unittest.cc", | 125 "core/user_activity_detector_unittest.cc", |
(...skipping 11 matching lines...) Expand all Loading... |
136 "//ui/aura:test_support", | 137 "//ui/aura:test_support", |
137 "//ui/base:test_support", | 138 "//ui/base:test_support", |
138 "//ui/compositor:test_support", | 139 "//ui/compositor:test_support", |
139 "//ui/events:test_support", | 140 "//ui/events:test_support", |
140 "//ui/events/platform", | 141 "//ui/events/platform", |
141 "//ui/gfx", | 142 "//ui/gfx", |
142 "//ui/gfx/geometry", | 143 "//ui/gfx/geometry", |
143 "//ui/gl", | 144 "//ui/gl", |
144 ] | 145 ] |
145 } | 146 } |
OLD | NEW |