| 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.h", | 10 "core/base_focus_rules.h", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "//ui/compositor", | 80 "//ui/compositor", |
| 81 "//ui/events", | 81 "//ui/events", |
| 82 "//ui/events:events_base", | 82 "//ui/events:events_base", |
| 83 "//ui/gfx", | 83 "//ui/gfx", |
| 84 "//ui/gfx/geometry", | 84 "//ui/gfx/geometry", |
| 85 "//ui/resources", | 85 "//ui/resources", |
| 86 ] | 86 ] |
| 87 } | 87 } |
| 88 | 88 |
| 89 static_library("test_support") { | 89 static_library("test_support") { |
| 90 output_name = "wm_test_support" |
| 90 sources = [ | 91 sources = [ |
| 91 "test/wm_test_helper.cc", | 92 "test/wm_test_helper.cc", |
| 92 "test/wm_test_helper.h", | 93 "test/wm_test_helper.h", |
| 93 ] | 94 ] |
| 94 | 95 |
| 95 deps = [ | 96 deps = [ |
| 96 "//skia", | 97 "//skia", |
| 97 "//ui/aura", | 98 "//ui/aura", |
| 98 "//ui/base", | 99 "//ui/base", |
| 99 "//ui/events", | 100 "//ui/events", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 "//ui/base", | 135 "//ui/base", |
| 135 "//ui/compositor", | 136 "//ui/compositor", |
| 136 "//ui/events", | 137 "//ui/events", |
| 137 "//ui/events:events_base", | 138 "//ui/events:events_base", |
| 138 "//ui/gfx", | 139 "//ui/gfx", |
| 139 "//ui/gfx/geometry", | 140 "//ui/gfx/geometry", |
| 140 ] | 141 ] |
| 141 } | 142 } |
| 142 | 143 |
| 143 } | 144 } |
| OLD | NEW |