| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 defines = [ "WM_IMPLEMENTATION" ] | 74 defines = [ "WM_IMPLEMENTATION" ] |
| 75 | 75 |
| 76 deps = [ | 76 deps = [ |
| 77 "//base", | 77 "//base", |
| 78 "//skia", | 78 "//skia", |
| 79 "//ui/aura", | 79 "//ui/aura", |
| 80 "//ui/base", | 80 "//ui/base", |
| 81 "//ui/base/ime", | 81 "//ui/base/ime", |
| 82 "//ui/compositor", | 82 "//ui/compositor", |
| 83 "//ui/events", | 83 "//ui/events", |
| 84 "//ui/events:events_base", |
| 84 "//ui/events/devices", | 85 "//ui/events/devices", |
| 85 "//ui/events/platform", | 86 "//ui/events/platform", |
| 86 "//ui/events:events_base", | |
| 87 "//ui/events/platform", | 87 "//ui/events/platform", |
| 88 "//ui/gfx", | 88 "//ui/gfx", |
| 89 "//ui/gfx/geometry", | 89 "//ui/gfx/geometry", |
| 90 "//ui/resources", | 90 "//ui/resources", |
| 91 ] | 91 ] |
| 92 | 92 |
| 93 if (use_x11) { | 93 if (use_x11) { |
| 94 configs += [ "//build/config/linux:x11" ] | 94 configs += [ "//build/config/linux:x11" ] |
| 95 } | 95 } |
| 96 | 96 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 = [ | 172 data_deps = [ |
| 173 "//ui/resources:ui_test_pak_data", | 173 "//ui/resources:ui_test_pak_data", |
| 174 ] | 174 ] |
| 175 } | 175 } |
| OLD | NEW |