| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 "core/image_grid_unittest.cc", | 142 "core/image_grid_unittest.cc", |
| 143 "core/nested_accelerator_controller_unittest.cc", | 143 "core/nested_accelerator_controller_unittest.cc", |
| 144 "core/shadow_controller_unittest.cc", | 144 "core/shadow_controller_unittest.cc", |
| 145 "core/transient_window_manager_unittest.cc", | 145 "core/transient_window_manager_unittest.cc", |
| 146 "core/transient_window_stacking_client_unittest.cc", | 146 "core/transient_window_stacking_client_unittest.cc", |
| 147 "core/visibility_controller_unittest.cc", | 147 "core/visibility_controller_unittest.cc", |
| 148 "core/window_animations_unittest.cc", | 148 "core/window_animations_unittest.cc", |
| 149 "test/run_all_unittests.cc", | 149 "test/run_all_unittests.cc", |
| 150 ] | 150 ] |
| 151 | 151 |
| 152 data = [ | 152 data_deps = [ "//ui/resources:ui_test_pak" ] |
| 153 "$root_out_dir/ui_test.pak", | |
| 154 ] | |
| 155 | 153 |
| 156 deps = [ | 154 deps = [ |
| 157 ":test_support", | 155 ":test_support", |
| 158 ":wm", | 156 ":wm", |
| 159 "//base", | 157 "//base", |
| 160 "//base/test:test_support", | 158 "//base/test:test_support", |
| 161 "//skia", | 159 "//skia", |
| 162 "//testing/gtest", | 160 "//testing/gtest", |
| 163 "//ui/aura:test_support", | 161 "//ui/aura:test_support", |
| 164 "//ui/base:test_support", | 162 "//ui/base:test_support", |
| 165 "//ui/base/ime", | 163 "//ui/base/ime", |
| 166 "//ui/compositor:test_support", | 164 "//ui/compositor:test_support", |
| 167 "//ui/events:test_support", | 165 "//ui/events:test_support", |
| 168 "//ui/events/platform", | 166 "//ui/events/platform", |
| 169 "//ui/gfx", | 167 "//ui/gfx", |
| 170 "//ui/gfx/geometry", | 168 "//ui/gfx/geometry", |
| 171 "//ui/gl", | 169 "//ui/gl", |
| 172 ] | 170 ] |
| 173 } | 171 } |
| OLD | NEW |