| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 configs += [ "//build/config:precompiled_headers" ] | 66 configs += [ "//build/config:precompiled_headers" ] |
| 67 defines = [ "WM_IMPLEMENTATION" ] | 67 defines = [ "WM_IMPLEMENTATION" ] |
| 68 | 68 |
| 69 deps = [ | 69 deps = [ |
| 70 "//base", | 70 "//base", |
| 71 "//skia", | 71 "//skia", |
| 72 "//ui/aura", | 72 "//ui/aura", |
| 73 "//ui/base", | 73 "//ui/base", |
| 74 "//ui/base/ime", | 74 "//ui/base/ime", |
| 75 "//ui/compositor", | 75 "//ui/compositor", |
| 76 "//ui/display", |
| 76 "//ui/events", | 77 "//ui/events", |
| 77 "//ui/events:events_base", | 78 "//ui/events:events_base", |
| 78 "//ui/events/devices", | 79 "//ui/events/devices", |
| 79 "//ui/events/platform", | 80 "//ui/events/platform", |
| 80 "//ui/events/platform", | 81 "//ui/events/platform", |
| 81 "//ui/gfx", | 82 "//ui/gfx", |
| 82 "//ui/gfx/geometry", | 83 "//ui/gfx/geometry", |
| 83 "//ui/resources", | 84 "//ui/resources", |
| 84 ] | 85 ] |
| 85 | 86 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 "//ui/gfx", | 142 "//ui/gfx", |
| 142 "//ui/gfx/geometry", | 143 "//ui/gfx/geometry", |
| 143 "//ui/gl:test_support", | 144 "//ui/gl:test_support", |
| 144 "//ui/resources", | 145 "//ui/resources", |
| 145 ] | 146 ] |
| 146 | 147 |
| 147 data_deps = [ | 148 data_deps = [ |
| 148 "//ui/resources:ui_test_pak_data", | 149 "//ui/resources:ui_test_pak_data", |
| 149 ] | 150 ] |
| 150 } | 151 } |
| OLD | NEW |