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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 "core/window_animations.cc", | 60 "core/window_animations.cc", |
61 "core/window_animations.h", | 61 "core/window_animations.h", |
62 "core/window_modality_controller.cc", | 62 "core/window_modality_controller.cc", |
63 "core/window_modality_controller.h", | 63 "core/window_modality_controller.h", |
64 "core/window_util.cc", | 64 "core/window_util.cc", |
65 "core/window_util.h", | 65 "core/window_util.h", |
66 "core/wm_core_switches.cc", | 66 "core/wm_core_switches.cc", |
67 "core/wm_core_switches.h", | 67 "core/wm_core_switches.h", |
68 "core/wm_state.cc", | 68 "core/wm_state.cc", |
69 "core/wm_state.h", | 69 "core/wm_state.h", |
70 "public/window_types.h", | |
71 "wm_export.h", | 70 "wm_export.h", |
72 ] | 71 ] |
73 | 72 |
74 defines = [ "WM_IMPLEMENTATION" ] | 73 defines = [ "WM_IMPLEMENTATION" ] |
75 | 74 |
76 deps = [ | 75 deps = [ |
77 "//base", | 76 "//base", |
78 "//skia", | 77 "//skia", |
79 "//ui/aura", | 78 "//ui/aura", |
80 "//ui/base", | 79 "//ui/base", |
81 "//ui/compositor", | 80 "//ui/compositor", |
82 "//ui/events", | 81 "//ui/events", |
83 "//ui/events/platform", | 82 "//ui/events/platform", |
84 "//ui/events:events_base", | 83 "//ui/events:events_base", |
85 "//ui/events/platform", | 84 "//ui/events/platform", |
86 "//ui/gfx", | 85 "//ui/gfx", |
87 "//ui/gfx/geometry", | 86 "//ui/gfx/geometry", |
88 "//ui/resources", | 87 "//ui/resources", |
89 ] | 88 ] |
90 | |
91 # http://crbug.com/408650 Circular dependency between this target and Aura. | |
92 allow_circular_includes_from = [ "//ui/aura" ] | |
93 } | 89 } |
94 | 90 |
95 static_library("test_support") { | 91 static_library("test_support") { |
96 testonly = true | 92 testonly = true |
97 sources = [ | 93 sources = [ |
98 "test/wm_test_helper.cc", | 94 "test/wm_test_helper.cc", |
99 "test/wm_test_helper.h", | 95 "test/wm_test_helper.h", |
100 ] | 96 ] |
101 | 97 |
102 deps = [ | 98 deps = [ |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 "//ui/base", | 135 "//ui/base", |
140 "//ui/compositor", | 136 "//ui/compositor", |
141 "//ui/events", | 137 "//ui/events", |
142 "//ui/events:events_base", | 138 "//ui/events:events_base", |
143 "//ui/events/platform", | 139 "//ui/events/platform", |
144 "//ui/gfx", | 140 "//ui/gfx", |
145 "//ui/gfx/geometry", | 141 "//ui/gfx/geometry", |
146 "//ui/gl", | 142 "//ui/gl", |
147 ] | 143 ] |
148 } | 144 } |
OLD | NEW |