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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("wm") { | 8 component("wm") { |
9 sources = [ | 9 sources = [ |
| 10 "android/android_focus_rules.cc", |
| 11 "android/android_focus_rules.h", |
| 12 "android/window_tree_host_manager.cc", |
| 13 "android/window_tree_host_manager.h", |
10 "core/accelerator_delegate.h", | 14 "core/accelerator_delegate.h", |
11 "core/accelerator_filter.cc", | 15 "core/accelerator_filter.cc", |
12 "core/accelerator_filter.h", | 16 "core/accelerator_filter.h", |
13 "core/base_focus_rules.cc", | 17 "core/base_focus_rules.cc", |
14 "core/base_focus_rules.h", | 18 "core/base_focus_rules.h", |
15 "core/capture_controller.cc", | 19 "core/capture_controller.cc", |
16 "core/capture_controller.h", | 20 "core/capture_controller.h", |
17 "core/compound_event_filter.cc", | 21 "core/compound_event_filter.cc", |
18 "core/compound_event_filter.h", | 22 "core/compound_event_filter.h", |
19 "core/coordinate_conversion.cc", | 23 "core/coordinate_conversion.cc", |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 "//ui/base:test_support", | 166 "//ui/base:test_support", |
163 "//ui/base/ime", | 167 "//ui/base/ime", |
164 "//ui/compositor:test_support", | 168 "//ui/compositor:test_support", |
165 "//ui/events:test_support", | 169 "//ui/events:test_support", |
166 "//ui/events/platform", | 170 "//ui/events/platform", |
167 "//ui/gfx", | 171 "//ui/gfx", |
168 "//ui/gfx/geometry", | 172 "//ui/gfx/geometry", |
169 "//ui/gl", | 173 "//ui/gl", |
170 ] | 174 ] |
171 | 175 |
172 data_deps = [ "//ui/resources:ui_test_pak_data" ] | 176 data_deps = [ |
| 177 "//ui/resources:ui_test_pak_data", |
| 178 ] |
173 } | 179 } |
OLD | NEW |