| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 "//ui/base:test_support", | 162 "//ui/base:test_support", |
| 163 "//ui/base/ime", | 163 "//ui/base/ime", |
| 164 "//ui/compositor:test_support", | 164 "//ui/compositor:test_support", |
| 165 "//ui/events:test_support", | 165 "//ui/events:test_support", |
| 166 "//ui/events/platform", | 166 "//ui/events/platform", |
| 167 "//ui/gfx", | 167 "//ui/gfx", |
| 168 "//ui/gfx/geometry", | 168 "//ui/gfx/geometry", |
| 169 "//ui/gl", | 169 "//ui/gl", |
| 170 ] | 170 ] |
| 171 | 171 |
| 172 data_deps = [ "//ui/resources:ui_test_pak_data" ] | 172 data_deps = [ |
| 173 "//ui/resources:ui_test_pak_data", |
| 174 ] |
| 173 } | 175 } |
| OLD | NEW |