| 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/input_method_event_filter.cc", | |
| 35 "core/input_method_event_filter.h", | |
| 36 "core/masked_window_targeter.cc", | 34 "core/masked_window_targeter.cc", |
| 37 "core/masked_window_targeter.h", | 35 "core/masked_window_targeter.h", |
| 38 "core/native_cursor_manager.h", | 36 "core/native_cursor_manager.h", |
| 39 "core/native_cursor_manager_delegate.h", | 37 "core/native_cursor_manager_delegate.h", |
| 40 "core/nested_accelerator_controller.cc", | 38 "core/nested_accelerator_controller.cc", |
| 41 "core/nested_accelerator_controller.h", | 39 "core/nested_accelerator_controller.h", |
| 42 "core/nested_accelerator_delegate.h", | 40 "core/nested_accelerator_delegate.h", |
| 43 "core/nested_accelerator_dispatcher.cc", | 41 "core/nested_accelerator_dispatcher.cc", |
| 44 "core/nested_accelerator_dispatcher.h", | 42 "core/nested_accelerator_dispatcher.h", |
| 45 "core/nested_accelerator_dispatcher_linux.cc", | 43 "core/nested_accelerator_dispatcher_linux.cc", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 ] | 113 ] |
| 116 } | 114 } |
| 117 | 115 |
| 118 test("wm_unittests") { | 116 test("wm_unittests") { |
| 119 sources = [ | 117 sources = [ |
| 120 "core/capture_controller_unittest.cc", | 118 "core/capture_controller_unittest.cc", |
| 121 "core/compound_event_filter_unittest.cc", | 119 "core/compound_event_filter_unittest.cc", |
| 122 "core/cursor_manager_unittest.cc", | 120 "core/cursor_manager_unittest.cc", |
| 123 "core/focus_controller_unittest.cc", | 121 "core/focus_controller_unittest.cc", |
| 124 "core/image_grid_unittest.cc", | 122 "core/image_grid_unittest.cc", |
| 125 "core/input_method_event_filter_unittest.cc", | |
| 126 "core/nested_accelerator_controller_unittest.cc", | 123 "core/nested_accelerator_controller_unittest.cc", |
| 127 "core/shadow_controller_unittest.cc", | 124 "core/shadow_controller_unittest.cc", |
| 128 "core/transient_window_manager_unittest.cc", | 125 "core/transient_window_manager_unittest.cc", |
| 129 "core/transient_window_stacking_client_unittest.cc", | 126 "core/transient_window_stacking_client_unittest.cc", |
| 130 "core/visibility_controller_unittest.cc", | 127 "core/visibility_controller_unittest.cc", |
| 131 "core/window_animations_unittest.cc", | 128 "core/window_animations_unittest.cc", |
| 132 "test/run_all_unittests.cc", | 129 "test/run_all_unittests.cc", |
| 133 ] | 130 ] |
| 134 | 131 |
| 135 deps = [ | 132 deps = [ |
| 136 ":test_support", | 133 ":test_support", |
| 137 ":wm", | 134 ":wm", |
| 138 "//base", | 135 "//base", |
| 139 "//base/test:test_support", | 136 "//base/test:test_support", |
| 140 "//skia", | 137 "//skia", |
| 141 "//testing/gtest", | 138 "//testing/gtest", |
| 142 "//ui/aura:test_support", | 139 "//ui/aura:test_support", |
| 143 "//ui/base:test_support", | 140 "//ui/base:test_support", |
| 144 "//ui/base/ime", | 141 "//ui/base/ime", |
| 145 "//ui/compositor:test_support", | 142 "//ui/compositor:test_support", |
| 146 "//ui/events:test_support", | 143 "//ui/events:test_support", |
| 147 "//ui/events/platform", | 144 "//ui/events/platform", |
| 148 "//ui/gfx", | 145 "//ui/gfx", |
| 149 "//ui/gfx/geometry", | 146 "//ui/gfx/geometry", |
| 150 "//ui/gl", | 147 "//ui/gl", |
| 151 ] | 148 ] |
| 152 } | 149 } |
| OLD | NEW |