| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 "//skia", | 100 "//skia", |
| 101 "//ui/aura", | 101 "//ui/aura", |
| 102 "//ui/aura:test_support", | 102 "//ui/aura:test_support", |
| 103 "//ui/base", | 103 "//ui/base", |
| 104 "//ui/base/ime", | 104 "//ui/base/ime", |
| 105 "//ui/events", | 105 "//ui/events", |
| 106 "//ui/events:events_base", | 106 "//ui/events:events_base", |
| 107 ] | 107 ] |
| 108 } | 108 } |
| 109 | 109 |
| 110 # TODO(GYP): Delete this after we've converted everything to GN. |
| 111 # The _run targets exist only for compatibility w/ GYP. |
| 112 group("wm_unittests_run") { |
| 113 testonly = true |
| 114 deps = [ |
| 115 ":wm_unittests", |
| 116 ] |
| 117 } |
| 118 |
| 110 test("wm_unittests") { | 119 test("wm_unittests") { |
| 111 sources = [ | 120 sources = [ |
| 112 "core/capture_controller_unittest.cc", | 121 "core/capture_controller_unittest.cc", |
| 113 "core/compound_event_filter_unittest.cc", | 122 "core/compound_event_filter_unittest.cc", |
| 114 "core/cursor_manager_unittest.cc", | 123 "core/cursor_manager_unittest.cc", |
| 115 "core/focus_controller_unittest.cc", | 124 "core/focus_controller_unittest.cc", |
| 116 "core/image_grid_unittest.cc", | 125 "core/image_grid_unittest.cc", |
| 117 "core/shadow_controller_unittest.cc", | 126 "core/shadow_controller_unittest.cc", |
| 118 "core/shadow_unittest.cc", | 127 "core/shadow_unittest.cc", |
| 119 "core/transient_window_manager_unittest.cc", | 128 "core/transient_window_manager_unittest.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 140 "//ui/gfx", | 149 "//ui/gfx", |
| 141 "//ui/gfx/geometry", | 150 "//ui/gfx/geometry", |
| 142 "//ui/gl:test_support", | 151 "//ui/gl:test_support", |
| 143 "//ui/resources", | 152 "//ui/resources", |
| 144 ] | 153 ] |
| 145 | 154 |
| 146 data_deps = [ | 155 data_deps = [ |
| 147 "//ui/resources:ui_test_pak_data", | 156 "//ui/resources:ui_test_pak_data", |
| 148 ] | 157 ] |
| 149 } | 158 } |
| OLD | NEW |