Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / ui / wm / BUILD.gn
blob15d39cd785c6d5ddeee0af3085f8f4e18ee565ae
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
3 # found in the LICENSE file.
5 import("//build/config/ui.gni")
6 import("//testing/test.gni")
8 component("wm") {
9   sources = [
10     "core/accelerator_delegate.h",
11     "core/accelerator_filter.cc",
12     "core/accelerator_filter.h",
13     "core/base_focus_rules.cc",
14     "core/base_focus_rules.h",
15     "core/capture_controller.cc",
16     "core/capture_controller.h",
17     "core/compound_event_filter.cc",
18     "core/compound_event_filter.h",
19     "core/coordinate_conversion.cc",
20     "core/coordinate_conversion.h",
21     "core/cursor_manager.cc",
22     "core/cursor_manager.h",
23     "core/default_activation_client.cc",
24     "core/default_activation_client.h",
25     "core/default_screen_position_client.cc",
26     "core/default_screen_position_client.h",
27     "core/easy_resize_window_targeter.cc",
28     "core/easy_resize_window_targeter.h",
29     "core/focus_controller.cc",
30     "core/focus_controller.h",
31     "core/focus_rules.h",
32     "core/image_grid.cc",
33     "core/image_grid.h",
34     "core/masked_window_targeter.cc",
35     "core/masked_window_targeter.h",
36     "core/native_cursor_manager.h",
37     "core/native_cursor_manager_delegate.h",
38     "core/nested_accelerator_controller.cc",
39     "core/nested_accelerator_controller.h",
40     "core/nested_accelerator_delegate.h",
41     "core/nested_accelerator_dispatcher.cc",
42     "core/nested_accelerator_dispatcher.h",
43     "core/nested_accelerator_dispatcher_linux.cc",
44     "core/nested_accelerator_dispatcher_win.cc",
45     "core/shadow.cc",
46     "core/shadow.h",
47     "core/shadow_controller.cc",
48     "core/shadow_controller.h",
49     "core/shadow_types.cc",
50     "core/shadow_types.h",
51     "core/transient_window_controller.cc",
52     "core/transient_window_controller.h",
53     "core/transient_window_manager.cc",
54     "core/transient_window_manager.h",
55     "core/transient_window_observer.h",
56     "core/transient_window_stacking_client.cc",
57     "core/transient_window_stacking_client.h",
58     "core/visibility_controller.cc",
59     "core/visibility_controller.h",
60     "core/window_animations.cc",
61     "core/window_animations.h",
62     "core/window_modality_controller.cc",
63     "core/window_modality_controller.h",
64     "core/window_util.cc",
65     "core/window_util.h",
66     "core/wm_core_switches.cc",
67     "core/wm_core_switches.h",
68     "core/wm_state.cc",
69     "core/wm_state.h",
70     "wm_export.h",
71   ]
73   configs += [ "//build/config:precompiled_headers" ]
74   defines = [ "WM_IMPLEMENTATION" ]
76   deps = [
77     "//base",
78     "//skia",
79     "//ui/aura",
80     "//ui/base",
81     "//ui/base/ime",
82     "//ui/compositor",
83     "//ui/events",
84     "//ui/events/devices",
85     "//ui/events/platform",
86     "//ui/events:events_base",
87     "//ui/events/platform",
88     "//ui/gfx",
89     "//ui/gfx/geometry",
90     "//ui/resources",
91   ]
93   if (use_x11) {
94     configs += [ "//build/config/linux:x11" ]
95   }
97   if (is_android) {
98     sources -= [
99       "core/nested_accelerator_controller.cc",
100       "core/nested_accelerator_controller.h",
101       "core/nested_accelerator_delegate.h",
102       "core/nested_accelerator_dispatcher.cc",
103       "core/nested_accelerator_dispatcher.h",
104     ]
105   }
108 static_library("test_support") {
109   testonly = true
110   sources = [
111     "test/wm_test_helper.cc",
112     "test/wm_test_helper.h",
113   ]
115   deps = [
116     ":wm",
117     "//skia",
118     "//ui/aura",
119     "//ui/aura:test_support",
120     "//ui/base",
121     "//ui/base/ime",
122     "//ui/events",
123     "//ui/events:events_base",
124   ]
127 # TODO(GYP): Delete this after we've converted everything to GN.
128 # The _run targets exist only for compatibility w/ GYP.
129 group("wm_unittests_run") {
130   testonly = true
131   deps = [
132     ":wm_unittests",
133   ]
136 test("wm_unittests") {
137   sources = [
138     "core/capture_controller_unittest.cc",
139     "core/compound_event_filter_unittest.cc",
140     "core/cursor_manager_unittest.cc",
141     "core/focus_controller_unittest.cc",
142     "core/image_grid_unittest.cc",
143     "core/nested_accelerator_controller_unittest.cc",
144     "core/shadow_controller_unittest.cc",
145     "core/shadow_unittest.cc",
146     "core/transient_window_manager_unittest.cc",
147     "core/transient_window_stacking_client_unittest.cc",
148     "core/visibility_controller_unittest.cc",
149     "core/window_animations_unittest.cc",
150     "core/window_util_unittest.cc",
151     "test/run_all_unittests.cc",
152   ]
154   deps = [
155     ":test_support",
156     ":wm",
157     "//base",
158     "//base/test:test_support",
159     "//skia",
160     "//testing/gtest",
161     "//ui/aura:test_support",
162     "//ui/base:test_support",
163     "//ui/base/ime",
164     "//ui/compositor:test_support",
165     "//ui/events:test_support",
166     "//ui/events/platform",
167     "//ui/gfx",
168     "//ui/gfx/geometry",
169     "//ui/gl",
170   ]
172   data_deps = [ "//ui/resources:ui_test_pak_data" ]