| 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 "core/accelerator_delegate.h", | 10 "core/accelerator_delegate.h", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "core/default_activation_client.h", | 24 "core/default_activation_client.h", |
| 25 "core/default_screen_position_client.cc", | 25 "core/default_screen_position_client.cc", |
| 26 "core/default_screen_position_client.h", | 26 "core/default_screen_position_client.h", |
| 27 "core/easy_resize_window_targeter.cc", | 27 "core/easy_resize_window_targeter.cc", |
| 28 "core/easy_resize_window_targeter.h", | 28 "core/easy_resize_window_targeter.h", |
| 29 "core/focus_controller.cc", | 29 "core/focus_controller.cc", |
| 30 "core/focus_controller.h", | 30 "core/focus_controller.h", |
| 31 "core/focus_rules.h", | 31 "core/focus_rules.h", |
| 32 "core/image_grid.cc", | 32 "core/image_grid.cc", |
| 33 "core/image_grid.h", | 33 "core/image_grid.h", |
| 34 "core/ime_util.cc", |
| 35 "core/ime_util.h", |
| 34 "core/masked_window_targeter.cc", | 36 "core/masked_window_targeter.cc", |
| 35 "core/masked_window_targeter.h", | 37 "core/masked_window_targeter.h", |
| 36 "core/native_cursor_manager.h", | 38 "core/native_cursor_manager.h", |
| 37 "core/native_cursor_manager_delegate.h", | 39 "core/native_cursor_manager_delegate.h", |
| 38 "core/shadow.cc", | 40 "core/shadow.cc", |
| 39 "core/shadow.h", | 41 "core/shadow.h", |
| 40 "core/shadow_controller.cc", | 42 "core/shadow_controller.cc", |
| 41 "core/shadow_controller.h", | 43 "core/shadow_controller.h", |
| 42 "core/shadow_types.cc", | 44 "core/shadow_types.cc", |
| 43 "core/shadow_types.h", | 45 "core/shadow_types.h", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 "//ui/gfx", | 146 "//ui/gfx", |
| 145 "//ui/gfx/geometry", | 147 "//ui/gfx/geometry", |
| 146 "//ui/gl:test_support", | 148 "//ui/gl:test_support", |
| 147 "//ui/resources", | 149 "//ui/resources", |
| 148 ] | 150 ] |
| 149 | 151 |
| 150 data_deps = [ | 152 data_deps = [ |
| 151 "//ui/resources:ui_test_pak_data", | 153 "//ui/resources:ui_test_pak_data", |
| 152 ] | 154 ] |
| 153 } | 155 } |
| OLD | NEW |