| 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 component("wm") { | 5 component("wm") { |
| 6 sources = [ | 6 sources = [ |
| 7 "core/accelerator_delegate.h", | 7 "core/accelerator_delegate.h", |
| 8 "core/accelerator_filter.cc", | 8 "core/accelerator_filter.cc", |
| 9 "core/accelerator_filter.h", | 9 "core/accelerator_filter.h", |
| 10 "core/base_focus_rules.cc", | 10 "core/base_focus_rules.cc", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 | 72 |
| 73 defines = [ "WM_IMPLEMENTATION" ] | 73 defines = [ "WM_IMPLEMENTATION" ] |
| 74 | 74 |
| 75 deps = [ | 75 deps = [ |
| 76 "//base", | 76 "//base", |
| 77 "//skia", | 77 "//skia", |
| 78 "//ui/aura", | 78 "//ui/aura", |
| 79 "//ui/base", | 79 "//ui/base", |
| 80 "//ui/compositor", | 80 "//ui/compositor", |
| 81 "//ui/events", | 81 "//ui/events", |
| 82 "//ui/events/devices", |
| 82 "//ui/events/platform", | 83 "//ui/events/platform", |
| 83 "//ui/events:events_base", | 84 "//ui/events:events_base", |
| 84 "//ui/events/platform", | 85 "//ui/events/platform", |
| 85 "//ui/gfx", | 86 "//ui/gfx", |
| 86 "//ui/gfx/geometry", | 87 "//ui/gfx/geometry", |
| 87 "//ui/resources", | 88 "//ui/resources", |
| 88 ] | 89 ] |
| 89 } | 90 } |
| 90 | 91 |
| 91 static_library("test_support") { | 92 static_library("test_support") { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "//ui/aura:test_support", | 134 "//ui/aura:test_support", |
| 134 "//ui/base:test_support", | 135 "//ui/base:test_support", |
| 135 "//ui/compositor:test_support", | 136 "//ui/compositor:test_support", |
| 136 "//ui/events:test_support", | 137 "//ui/events:test_support", |
| 137 "//ui/events/platform", | 138 "//ui/events/platform", |
| 138 "//ui/gfx", | 139 "//ui/gfx", |
| 139 "//ui/gfx/geometry", | 140 "//ui/gfx/geometry", |
| 140 "//ui/gl", | 141 "//ui/gl", |
| 141 ] | 142 ] |
| 142 } | 143 } |
| OLD | NEW |