| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "//ui/base", | 80 "//ui/base", |
| 81 "//ui/compositor", | 81 "//ui/compositor", |
| 82 "//ui/events", | 82 "//ui/events", |
| 83 "//ui/events/platform", | 83 "//ui/events/platform", |
| 84 "//ui/events:events_base", | 84 "//ui/events:events_base", |
| 85 "//ui/events/platform", | 85 "//ui/events/platform", |
| 86 "//ui/gfx", | 86 "//ui/gfx", |
| 87 "//ui/gfx/geometry", | 87 "//ui/gfx/geometry", |
| 88 "//ui/resources", | 88 "//ui/resources", |
| 89 ] | 89 ] |
| 90 |
| 91 # http://crbug.com/408650 Circular dependency between this target and Aura. |
| 92 allow_circular_includes_from = [ "//ui/aura" ] |
| 90 } | 93 } |
| 91 | 94 |
| 92 static_library("test_support") { | 95 static_library("test_support") { |
| 93 sources = [ | 96 sources = [ |
| 94 "test/wm_test_helper.cc", | 97 "test/wm_test_helper.cc", |
| 95 "test/wm_test_helper.h", | 98 "test/wm_test_helper.h", |
| 96 ] | 99 ] |
| 97 | 100 |
| 98 deps = [ | 101 deps = [ |
| 99 ":wm", | 102 ":wm", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 "//ui/base", | 138 "//ui/base", |
| 136 "//ui/compositor", | 139 "//ui/compositor", |
| 137 "//ui/events", | 140 "//ui/events", |
| 138 "//ui/events:events_base", | 141 "//ui/events:events_base", |
| 139 "//ui/events/platform", | 142 "//ui/events/platform", |
| 140 "//ui/gfx", | 143 "//ui/gfx", |
| 141 "//ui/gfx/geometry", | 144 "//ui/gfx/geometry", |
| 142 "//ui/gl", | 145 "//ui/gl", |
| 143 ] | 146 ] |
| 144 } | 147 } |
| OLD | NEW |