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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 "wm_export.h", | 70 "wm_export.h", |
71 ] | 71 ] |
72 | 72 |
73 configs += [ "//build/config:precompiled_headers" ] | |
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/base/ime", | 80 "//ui/base/ime", |
82 "//ui/compositor", | 81 "//ui/compositor", |
83 "//ui/events", | 82 "//ui/events", |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 "//ui/base:test_support", | 163 "//ui/base:test_support", |
165 "//ui/base/ime", | 164 "//ui/base/ime", |
166 "//ui/compositor:test_support", | 165 "//ui/compositor:test_support", |
167 "//ui/events:test_support", | 166 "//ui/events:test_support", |
168 "//ui/events/platform", | 167 "//ui/events/platform", |
169 "//ui/gfx", | 168 "//ui/gfx", |
170 "//ui/gfx/geometry", | 169 "//ui/gfx/geometry", |
171 "//ui/gl", | 170 "//ui/gl", |
172 ] | 171 ] |
173 } | 172 } |
OLD | NEW |