| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "//ui/base/ime", | 107 "//ui/base/ime", |
| 108 "//ui/events", | 108 "//ui/events", |
| 109 "//ui/events:events_base", | 109 "//ui/events:events_base", |
| 110 ] | 110 ] |
| 111 } | 111 } |
| 112 | 112 |
| 113 test("wm_unittests") { | 113 test("wm_unittests") { |
| 114 sources = [ | 114 sources = [ |
| 115 "core/capture_controller_unittest.cc", | 115 "core/capture_controller_unittest.cc", |
| 116 "core/compound_event_filter_unittest.cc", | 116 "core/compound_event_filter_unittest.cc", |
| 117 "core/coordinate_conversion_unittest.cc", |
| 117 "core/cursor_manager_unittest.cc", | 118 "core/cursor_manager_unittest.cc", |
| 118 "core/focus_controller_unittest.cc", | 119 "core/focus_controller_unittest.cc", |
| 119 "core/image_grid_unittest.cc", | 120 "core/image_grid_unittest.cc", |
| 120 "core/shadow_controller_unittest.cc", | 121 "core/shadow_controller_unittest.cc", |
| 121 "core/shadow_unittest.cc", | 122 "core/shadow_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/visibility_controller_unittest.cc", | 125 "core/visibility_controller_unittest.cc", |
| 125 "core/window_animations_unittest.cc", | 126 "core/window_animations_unittest.cc", |
| 126 "core/window_util_unittest.cc", | 127 "core/window_util_unittest.cc", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 143 "//ui/gfx", | 144 "//ui/gfx", |
| 144 "//ui/gfx/geometry", | 145 "//ui/gfx/geometry", |
| 145 "//ui/gl:test_support", | 146 "//ui/gl:test_support", |
| 146 "//ui/resources", | 147 "//ui/resources", |
| 147 ] | 148 ] |
| 148 | 149 |
| 149 data_deps = [ | 150 data_deps = [ |
| 150 "//ui/resources:ui_test_pak_data", | 151 "//ui/resources:ui_test_pak_data", |
| 151 ] | 152 ] |
| 152 } | 153 } |
| OLD | NEW |