Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / ui / aura / BUILD.gn
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.
4
5 import ("//build/config/ui.gni")
6
7 component("aura") {
8   sources = [
9     "client/aura_constants.cc",
10     "client/aura_constants.h",
11     "client/capture_client.cc",
12     "client/capture_client.h",
13     "client/capture_delegate.h",
14     "client/cursor_client.cc",
15     "client/cursor_client.h",
16     "client/cursor_client_observer.h",
17     "client/cursor_client_observer.cc",
18     "client/default_capture_client.cc",
19     "client/default_capture_client.h",
20     "client/event_client.cc",
21     "client/event_client.h",
22     "client/focus_change_observer.cc",
23     "client/focus_change_observer.h",
24     "client/focus_client.cc",
25     "client/focus_client.h",
26     "client/screen_position_client.cc",
27     "client/screen_position_client.h",
28     "client/visibility_client.cc",
29     "client/visibility_client.h",
30     "client/window_stacking_client.cc",
31     "client/window_stacking_client.h",
32     "client/window_tree_client.cc",
33     "client/window_tree_client.h",
34     "env.cc",
35     "env.h",
36     "env_observer.h",
37     "input_state_lookup.cc",
38     "input_state_lookup.h",
39     "input_state_lookup_win.cc",
40     "input_state_lookup_win.h",
41     "layout_manager.cc",
42     "layout_manager.h",
43     "remote_window_tree_host_win.cc",
44     "remote_window_tree_host_win.h",
45     "scoped_window_targeter.cc",
46     "scoped_window_targeter.h",
47     "window.cc",
48     "window.h",
49     "window_event_dispatcher.cc",
50     "window_event_dispatcher.h",
51     "window_delegate.h",
52     "window_layer_type.h",
53     "window_observer.cc",
54     "window_observer.h",
55     "window_targeter.cc",
56     "window_targeter.h",
57     "window_tracker.cc",
58     "window_tracker.h",
59     "window_tree_host.cc",
60     "window_tree_host.h",
61     "window_tree_host_mac.mm",
62     "window_tree_host_mac.h",
63     "window_tree_host_observer.h",
64     "window_tree_host_win.cc",
65     "window_tree_host_win.h",
66     "window_tree_host_x11.cc",
67     "window_tree_host_x11.h",
68     "../wm/public/activation_change_observer.h",
69     "../wm/public/activation_change_observer.cc",
70     "../wm/public/activation_client.cc",
71     "../wm/public/activation_client.h",
72     "../wm/public/activation_delegate.cc",
73     "../wm/public/activation_delegate.h",
74     "../wm/public/animation_host.cc",
75     "../wm/public/animation_host.h",
76     "../wm/public/dispatcher_client.cc",
77     "../wm/public/dispatcher_client.h",
78     "../wm/public/drag_drop_client.cc",
79     "../wm/public/drag_drop_client.h",
80     "../wm/public/drag_drop_delegate.cc",
81     "../wm/public/drag_drop_delegate.h",
82     "../wm/public/scoped_tooltip_disabler.cc",
83     "../wm/public/scoped_tooltip_disabler.h",
84     "../wm/public/tooltip_client.cc",
85     "../wm/public/tooltip_client.h",
86     "../wm/public/transient_window_client.cc",
87     "../wm/public/transient_window_client.h",
88     "../wm/public/window_move_client.cc",
89     "../wm/public/window_move_client.h",
90     "../wm/public/window_types.h",
91   ]
92
93   defines = [
94     "AURA_IMPLEMENTATION",
95   ]
96
97   deps = [
98     "//base",
99     "//base:i18n",
100     "//base/third_party/dynamic_annotations",
101     "//skia",
102     "//ui/base",
103     "//ui/compositor",
104     "//ui/events",
105     "//ui/events/platform",
106     "//ui/gfx",
107     "//ui/gfx/geometry",
108   ]
109
110   if (use_x11) {
111     configs += [
112       "//build/config/linux:x11",
113       "//build/config/linux:xrandr",
114     ]
115     deps += [
116       "//ui/events/platform/x11",
117     ]
118   } else {
119     sources -= [
120       "window_tree_host_x11.cc",
121       "window_tree_host_x11.h",
122     ]
123   }
124
125   if (is_win) {
126     sources -= [
127       "input_state_lookup.cc",
128     ]
129
130     deps += [
131       "//ui/metro_viewer",
132       "//ipc",
133     ]
134   }
135
136   if (use_ozone) {
137     sources += [
138       "window_tree_host_ozone.cc",
139       "window_tree_host_ozone.h",
140     ]
141
142     deps += [
143       "//ui/events/ozone:events_ozone",
144       "//ui/ozone",
145     ]
146   }
147 }
148
149 source_set("test_support") {
150   testonly = true
151   sources = [
152     "test/aura_test_base.cc",
153     "test/aura_test_base.h",
154     "test/aura_test_helper.cc",
155     "test/aura_test_helper.h",
156     "test/aura_test_utils.cc",
157     "test/aura_test_utils.h",
158     "test/env_test_helper.h",
159     "test/event_generator_delegate_aura.cc",
160     "test/event_generator_delegate_aura.h",
161     "test/test_cursor_client.cc",
162     "test/test_cursor_client.h",
163     "test/test_focus_client.cc",
164     "test/test_focus_client.h",
165     "test/test_screen.cc",
166     "test/test_screen.h",
167     "test/test_window_tree_client.cc",
168     "test/test_window_tree_client.h",
169     "test/test_windows.cc",
170     "test/test_windows.h",
171     "test/test_window_delegate.cc",
172     "test/test_window_delegate.h",
173     "test/ui_controls_factory_aura.h",
174     "test/window_event_dispatcher_test_api.cc",
175     "test/window_event_dispatcher_test_api.h",
176     "test/window_test_api.cc",
177     "test/window_test_api.h",
178     "test/x11_event_sender.cc",
179     "test/x11_event_sender.h",
180   ]
181
182   public_deps = [
183     ":aura",
184   ]
185   deps = [
186     "//skia",
187     "//testing/gtest",
188     "//ui/base:test_support",
189     "//ui/compositor:test_support",
190     "//ui/events",
191     "//ui/events:events_base",
192     "//ui/events:test_support",
193     "//ui/gfx",
194     "//ui/gfx/geometry",
195     "//ui/wm",
196   ]
197
198   if (is_win) {
199     cflags = [
200       "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
201     ]
202   }
203
204   if (use_aura) {
205     if (is_win) {
206       sources += [
207         "test/ui_controls_factory_aurawin.cc",
208       ]
209     }
210
211     if (use_x11) {
212       sources += [
213         "test/ui_controls_factory_aurax11.cc",
214       ]
215     }
216   }
217 }
218
219 executable("demo") {
220   output_name = "aura_demo"
221   testonly = true
222
223   sources = [
224     "demo/demo_main.cc",
225   ]
226
227   deps = [
228     ":aura",
229     ":test_support",
230     "//base",
231     "//base:i18n",
232     "//skia",
233     "//third_party/icu",
234     "//ui/base",
235     "//ui/compositor",
236     "//ui/compositor:test_support",
237     "//ui/events",
238     "//ui/gfx",
239     "//ui/gfx/geometry",
240     "//ui/gl",
241   ]
242
243   if (use_x11) {
244     deps += [
245       "//ui/gfx/x",
246     ]
247   }
248 }
249
250 executable("bench") {
251   output_name = "aura_bench"
252   testonly = true
253
254   sources = [
255     "bench/bench_main.cc",
256   ]
257
258   deps = [
259     ":test_support",
260     "//base",
261     "//base:i18n",
262     "//cc",
263     "//gpu/command_buffer/client:gles2_interface",
264     "//skia",
265     "//third_party/icu",
266     "//ui/base",
267     "//ui/compositor",
268     "//ui/compositor:test_support",
269     "//ui/events",
270     "//ui/gfx",
271     "//ui/gfx/geometry",
272     "//ui/gl",
273   ]
274
275   if (use_x11) {
276     deps += [
277       "//ui/gfx/x",
278     ]
279   }
280 }
281
282 test("aura_unittests") {
283   sources = [
284     "gestures/gesture_recognizer_unittest.cc",
285     "test/run_all_unittests.cc",
286     "window_event_dispatcher_unittest.cc",
287     "window_targeter_unittest.cc",
288     "window_unittest.cc",
289   ]
290
291   deps = [
292     ":test_support",
293     "//base/allocator",
294     "//base/test:test_support",
295     "//skia",
296     "//testing/gtest",
297     "//ui/base:test_support",
298     "//ui/compositor:test_support",
299     "//ui/events:test_support",
300     "//ui/events:gesture_detection",
301     "//ui/gfx",
302     "//ui/gfx/geometry",
303     "//ui/gl",
304   ]
305
306   if (is_linux) {
307     deps += [
308       "//third_party/mesa",
309     ]
310   }
311 }