9577c42fc38845bcff9dd26c38d16092676972d2
[platform/framework/web/crosswalk.git] / src / ui / ui_unittests.gyp
1 # Copyright 2013 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 {
6   'variables': {
7     'chromium_code': 1,
8   },
9   'targets': [
10     {
11       'target_name': 'ui_test_support',
12       'dependencies': [
13         '../base/base.gyp:base',
14         '../skia/skia.gyp:skia',
15         '../testing/gtest.gyp:gtest',
16         'gfx/gfx.gyp:gfx',
17         'gfx/gfx.gyp:gfx_geometry',
18       ],
19       'sources': [
20         'base/test/ui_controls.h',
21         'base/test/ui_controls_aura.cc',
22         'base/test/ui_controls_gtk.cc',
23         'base/test/ui_controls_internal_win.cc',
24         'base/test/ui_controls_internal_win.h',
25         'base/test/ui_controls_mac.mm',
26         'base/test/ui_controls_win.cc',
27       ],
28       'include_dirs': [
29         '../',
30       ],
31       'conditions': [
32         ['OS!="ios"', {
33           'type': 'static_library',
34           'includes': [ 'base/ime/ime_test_support.gypi' ],
35         }, {  # OS=="ios"
36           # None of the sources in this target are built on iOS, resulting in
37           # link errors when building targets that depend on this target
38           # because the static library isn't found. If this target is changed
39           # to have sources that are built on iOS, the target should be changed
40           # to be of type static_library on all platforms.
41           'type': 'none',
42           # The cocoa files don't apply to iOS.
43           'sources/': [['exclude', 'cocoa']],
44         }],
45         ['chromeos==1', {
46           'dependencies': [
47             '../chromeos/chromeos.gyp:chromeos_test_support_without_gmock',
48             '../skia/skia.gyp:skia',
49           ],
50         }],
51         ['use_aura==1', {
52           'sources!': [
53             'base/test/ui_controls_mac.mm',
54             'base/test/ui_controls_win.cc',
55           ],
56         }],
57       ],
58     },
59     {
60       'target_name': 'ui_unittests',
61       'type': '<(gtest_target_type)',
62       'dependencies': [
63         '../base/base.gyp:base',
64         '../base/base.gyp:test_support_base',
65         '../chrome/chrome_resources.gyp:packed_resources',
66         '../skia/skia.gyp:skia',
67         '../testing/gmock.gyp:gmock',
68         '../testing/gtest.gyp:gtest',
69         '../third_party/icu/icu.gyp:icui18n',
70         '../third_party/icu/icu.gyp:icuuc',
71         '../third_party/libpng/libpng.gyp:libpng',
72         '../url/url.gyp:url_lib',
73         'base/strings/ui_strings.gyp:ui_strings',
74         'events/events.gyp:events_base',
75         'gfx/gfx.gyp:gfx_geometry_unittests',
76         'gfx/gfx.gyp:gfx_test_support',
77         'resources/ui_resources.gyp:ui_resources',
78         'ui.gyp:ui',
79         'ui_test_support',
80       ],
81       # iOS uses a small subset of ui. common_sources are the only files that
82       # are built on iOS.
83       'common_sources' : [
84         'base/layout_unittest.cc',
85         'base/l10n/l10n_util_mac_unittest.mm',
86         'base/l10n/l10n_util_unittest.cc',
87         'base/l10n/l10n_util_win_unittest.cc',
88         'base/l10n/time_format_unittest.cc',
89         'base/models/tree_node_iterator_unittest.cc',
90         'base/resource/data_pack_literal.cc',
91         'base/resource/data_pack_unittest.cc',
92         'base/resource/resource_bundle_unittest.cc',
93         'base/test/run_all_unittests.cc',
94         'gfx/animation/animation_container_unittest.cc',
95         'gfx/animation/animation_unittest.cc',
96         'gfx/animation/multi_animation_unittest.cc',
97         'gfx/animation/slide_animation_unittest.cc',
98         'gfx/codec/png_codec_unittest.cc',
99         'gfx/color_utils_unittest.cc',
100         'gfx/display_unittest.cc',
101         'gfx/font_unittest.cc',
102         'gfx/image/image_family_unittest.cc',
103         'gfx/image/image_skia_unittest.cc',
104         'gfx/image/image_unittest.cc',
105         'gfx/image/image_unittest_util.cc',
106         'gfx/image/image_unittest_util.h',
107         'gfx/image/image_unittest_util_ios.mm',
108         'gfx/image/image_unittest_util_mac.mm',
109         'gfx/range/range_mac_unittest.mm',
110         'gfx/range/range_unittest.cc',
111         'gfx/range/range_win_unittest.cc',
112         'gfx/screen_unittest.cc',
113         'gfx/shadow_value_unittest.cc',
114         'gfx/skbitmap_operations_unittest.cc',
115         'gfx/skrect_conversion_unittest.cc',
116         'gfx/text_elider_unittest.cc',
117         'gfx/text_utils_unittest.cc',
118       ],
119       'all_sources': [
120         '<@(_common_sources)',
121         'base/accelerators/accelerator_manager_unittest.cc',
122         'base/accelerators/menu_label_accelerator_util_linux_unittest.cc',
123         'base/clipboard/clipboard_unittest.cc',
124         'base/clipboard/custom_data_helper_unittest.cc',
125         'base/cocoa/base_view_unittest.mm',
126         'base/cocoa/cocoa_event_utils_unittest.mm',
127         'base/cocoa/controls/blue_label_button_unittest.mm',
128         'base/cocoa/controls/hover_image_menu_button_unittest.mm',
129         'base/cocoa/controls/hyperlink_button_cell_unittest.mm',
130         'base/cocoa/focus_tracker_unittest.mm',
131         'base/cocoa/fullscreen_window_manager_unittest.mm',
132         'base/cocoa/hover_image_button_unittest.mm',
133         'base/cocoa/menu_controller_unittest.mm',
134         'base/cocoa/nsgraphics_context_additions_unittest.mm',
135         'base/cocoa/tracking_area_unittest.mm',
136         'base/dragdrop/os_exchange_data_provider_aurax11_unittest.cc',
137         'base/gtk/gtk_expanded_container_unittest.cc',
138         'base/models/list_model_unittest.cc',
139         'base/models/list_selection_model_unittest.cc',
140         'base/models/tree_node_model_unittest.cc',
141         'base/test/data/resource.h',
142         'base/text/bytes_formatting_unittest.cc',
143         'base/view_prop_unittest.cc',
144         'base/webui/web_ui_util_unittest.cc',
145         'base/x/x11_util_unittest.cc',
146         'gfx/animation/tween_unittest.cc',
147         'gfx/blit_unittest.cc',
148         'gfx/break_list_unittest.cc',
149         'gfx/canvas_unittest.cc',
150         'gfx/canvas_unittest_mac.mm',
151         'gfx/codec/jpeg_codec_unittest.cc',
152         'gfx/color_analysis_unittest.cc',
153         'gfx/font_list_unittest.cc',
154         'gfx/image/image_mac_unittest.mm',
155         'gfx/image/image_util_unittest.cc',
156         'gfx/ozone/dri/hardware_display_controller_unittest.cc',
157         'gfx/ozone/dri/dri_surface_factory_unittest.cc',
158         'gfx/ozone/dri/dri_surface_unittest.cc',
159         'gfx/platform_font_mac_unittest.mm',
160         'gfx/render_text_unittest.cc',
161         'gfx/sequential_id_generator_unittest.cc',
162         'gfx/transform_util_unittest.cc',
163         'gfx/utf16_indexing_unittest.cc',
164       ],
165       'include_dirs': [
166         '../',
167       ],
168       'conditions': [
169         ['OS!="ios"', {
170           'sources' : ['<@(_all_sources)'],
171           'includes': [
172             'base/ime/ime_unittests.gypi',
173           ],
174         }, {  # OS=="ios"
175           'sources' : [
176             '<@(_common_sources)',
177           ],
178           # The ResourceBundle unittest expects a locale.pak file to exist in
179           # the bundle for English-US. Copy it in from where it was generated
180           # by ui_strings.gyp:ui_unittest_strings.
181           'mac_bundle_resources': [
182             '<(PRODUCT_DIR)/ui_unittests_strings/en.lproj/locale.pak',
183           ],
184         }],
185         ['OS == "win"', {
186           'sources': [
187             'base/dragdrop/os_exchange_data_win_unittest.cc',
188             'base/win/hwnd_subclass_unittest.cc',
189             'gfx/font_fallback_win_unittest.cc',
190             'gfx/icon_util_unittest.cc',
191             'gfx/icon_util_unittests.rc',
192             'gfx/platform_font_win_unittest.cc',
193           ],
194           'include_dirs': [
195             '../..',
196             '../third_party/wtl/include',
197           ],
198           'msvs_settings': {
199             'VCLinkerTool': {
200               'DelayLoadDLLs': [
201                 'd2d1.dll',
202                 'd3d10_1.dll',
203               ],
204               'AdditionalDependencies': [
205                 'd2d1.lib',
206                 'd3d10_1.lib',
207               ],
208             },
209           },
210           'link_settings': {
211             'libraries': [
212               '-limm32.lib',
213               '-loleacc.lib',
214             ],
215           },
216           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
217           'msvs_disabled_warnings': [ 4267, ],
218         }],
219         ['OS != "mac" and OS != "ios"', {
220           'sources': [
221             'gfx/transform_unittest.cc',
222             'gfx/interpolated_transform_unittest.cc',
223           ],
224         }],
225         ['OS == "android" and gtest_target_type == "shared_library"', {
226           'dependencies': [
227             '../testing/android/native_test.gyp:native_test_native_code',
228           ],
229         }],
230         ['desktop_linux == 1 or chromeos == 1 or OS == "ios"', {
231           'dependencies': [
232             'base/strings/ui_strings.gyp:ui_unittest_strings',
233           ],
234         }],
235         ['use_pango == 1', {
236           'dependencies': [
237             '../build/linux/system.gyp:fontconfig',
238             '../build/linux/system.gyp:pangocairo',
239           ],
240           'sources': [
241             'gfx/platform_font_pango_unittest.cc',
242           ],
243           'conditions': [
244             ['linux_use_tcmalloc==1', {
245                'dependencies': [
246                  '../base/allocator/allocator.gyp:allocator',
247                ],
248             }],
249           ],
250         }],
251         ['use_x11==1', {
252           'dependencies': [
253             '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
254           ],
255         }],
256         ['toolkit_uses_gtk == 1', {
257           'sources': [
258             'base/dragdrop/gtk_dnd_util_unittest.cc',
259           ],
260           'dependencies': [
261             '../build/linux/system.gyp:gtk',
262           ],
263         }],
264         ['OS=="android" or OS=="ios"', {
265           'sources!': [
266             'gfx/render_text_unittest.cc',
267           ],
268         }],
269         ['OS!="win" or use_aura==0', {
270           'sources!': [
271             'base/view_prop_unittest.cc',
272           ],
273         }],
274         ['use_x11==1 and use_aura==1',  {
275           'sources': [
276             'base/cursor/cursor_loader_x11_unittest.cc',
277           ],
278         }],
279         ['OS=="mac"',  {
280           'dependencies': [
281             'events/events.gyp:events_test_support',
282             'gfx/gfx.gyp:gfx_test_support',
283           ],
284         }],
285         ['use_aura==1 or toolkit_views==1',  {
286           'sources': [
287             'base/dragdrop/os_exchange_data_unittest.cc',
288           ],
289           'dependencies': [
290             'events/events.gyp:events',
291             'events/events.gyp:events_base',
292             'events/events.gyp:events_test_support',
293           ],
294         }],
295         ['use_aura==1', {
296           'sources!': [
297             'base/dragdrop/os_exchange_data_win_unittest.cc',
298             'gfx/screen_unittest.cc',
299           ],
300         }],
301         ['use_ozone==1', {
302           'dependencies': [
303           '<(DEPTH)/build/linux/system.gyp:dridrm',
304           ],
305         }],
306         ['use_ozone==1 and use_pango==0', {
307           'sources!': [
308             'gfx/text_elider_unittest.cc',
309             'gfx/font_unittest.cc',
310             'gfx/font_list_unittest.cc',
311             'gfx/render_text_unittest.cc',
312             'gfx/canvas_unittest.cc',
313           ],
314         }],
315         ['chromeos==1', {
316           'sources!': [
317             'base/dragdrop/os_exchange_data_provider_aurax11_unittest.cc',
318           ],
319         }],
320       ],
321       'target_conditions': [
322         ['OS == "ios"', {
323           'sources/': [
324             # Pull in specific Mac files for iOS (which have been filtered out
325             # by file name rules).
326             ['include', '^base/l10n/l10n_util_mac_unittest\\.mm$'],
327           ],
328         }],
329       ],
330     },
331   ],
332   'conditions': [
333     # Special target to wrap a gtest_target_type==shared_library
334     # ui_unittests into an android apk for execution.
335     # See base.gyp for TODO(jrg)s about this strategy.
336     ['OS == "android" and gtest_target_type == "shared_library"', {
337       'targets': [
338         {
339           'target_name': 'ui_unittests_apk',
340           'type': 'none',
341           'dependencies': [
342             'ui_unittests',
343           ],
344           'variables': {
345             'test_suite_name': 'ui_unittests',
346             'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unittests<(SHARED_LIB_SUFFIX)',
347           },
348           'includes': [ '../build/apk_test.gypi' ],
349         },
350       ],
351     }],
352   ],
353 }