Properly decode IDN in interstitials
[chromium-blink-merge.git] / ui / base / ui_base_tests.gyp
blob5283bac52c2103f2e53f39d0fab8da5fee22682e
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.
6   'variables': {
7     'chromium_code': 1,
8   },
9   'targets': [
10     {
11       # GN version: //ui/base:unittests
12       'target_name': 'ui_base_unittests',
13       'type': '<(gtest_target_type)',
14       'dependencies': [
15         '../../base/base.gyp:base',
16         '../../base/base.gyp:test_support_base',
17         '../../net/net.gyp:net',
18         '../../skia/skia.gyp:skia',
19         '../../testing/gmock.gyp:gmock',
20         '../../testing/gtest.gyp:gtest',
21         '../../third_party/icu/icu.gyp:icui18n',
22         '../../third_party/icu/icu.gyp:icuuc',
23         '../../url/url.gyp:url_lib',
24         '../events/events.gyp:events_base',
25         '../gfx/gfx.gyp:gfx_test_support',
26         '../resources/ui_resources.gyp:ui_resources',
27         '../resources/ui_resources.gyp:ui_test_pak',
28         '../strings/ui_strings.gyp:ui_strings',
29         'ime/ui_base_ime.gyp:ui_base_ime',
30         'ui_base.gyp:ui_base',
31         'ui_base.gyp:ui_base_test_support',
32       ],
33       # iOS uses a small subset of ui. common_sources are the only files that
34       # are built on iOS.
35       'common_sources' : [
36         # Note: file list duplicated in GN build.
37         'ios/cru_context_menu_controller_unittest.mm',
38         'l10n/l10n_util_mac_unittest.mm',
39         'l10n/l10n_util_unittest.cc',
40         'l10n/l10n_util_win_unittest.cc',
41         'l10n/time_format_unittest.cc',
42         'layout_unittest.cc',
43         'models/tree_node_iterator_unittest.cc',
44         'resource/data_pack_literal.cc',
45         'resource/data_pack_unittest.cc',
46         'resource/resource_bundle_unittest.cc',
47         'test/run_all_unittests.cc',
48       ],
49       'all_sources': [
50         # Note: file list duplicated in GN build.
51         '<@(_common_sources)',
52         'accelerators/accelerator_manager_unittest.cc',
53         'accelerators/menu_label_accelerator_util_linux_unittest.cc',
54         'clipboard/custom_data_helper_unittest.cc',
55         'cocoa/base_view_unittest.mm',
56         'cocoa/cocoa_base_utils_unittest.mm',
57         'cocoa/controls/blue_label_button_unittest.mm',
58         'cocoa/controls/hover_image_menu_button_unittest.mm',
59         'cocoa/controls/hyperlink_button_cell_unittest.mm',
60         'cocoa/controls/hyperlink_text_view_unittest.mm',
61         'cocoa/focus_tracker_unittest.mm',
62         'cocoa/fullscreen_window_manager_unittest.mm',
63         'cocoa/hover_image_button_unittest.mm',
64         'cocoa/menu_controller_unittest.mm',
65         'cocoa/nsgraphics_context_additions_unittest.mm',
66         'cocoa/nsview_additions_unittest.mm',
67         'cocoa/three_part_image_unittest.mm',
68         'cocoa/tracking_area_unittest.mm',
69         'dragdrop/os_exchange_data_provider_aurax11_unittest.cc',
70         'ime/candidate_window_unittest.cc',
71         'ime/chromeos/character_composer_unittest.cc',
72         'ime/composition_text_util_pango_unittest.cc',
73         'ime/input_method_base_unittest.cc',
74         'ime/input_method_chromeos_unittest.cc',
75         'ime/remote_input_method_win_unittest.cc',
76         'ime/win/imm32_manager_unittest.cc',
77         'ime/win/tsf_input_scope_unittest.cc',
78         'models/list_model_unittest.cc',
79         'models/list_selection_model_unittest.cc',
80         'models/tree_node_model_unittest.cc',
81         'test/data/resource.h',
82         'test/test_clipboard_unittest.cc',
83         'text/bytes_formatting_unittest.cc',
84         'touch/selection_bound_unittest.cc',
85         'user_activity/user_activity_detector_unittest.cc',
86         'view_prop_unittest.cc',
87         'webui/web_ui_util_unittest.cc',
88         'x/selection_requestor_unittest.cc',
89       ],
90       'include_dirs': [
91         '../..',
92       ],
93       'conditions': [
94         ['OS!="ios"', {
95           'sources' : [ '<@(_all_sources)' ],
96         }, {  # OS=="ios"
97           'sources' : [ '<@(_common_sources)' ],
98           # The ResourceBundle unittest expects a locale.pak file to exist in
99           # the bundle for English-US. Copy it in from where it was generated
100           # by ui_resources.gyp:ui_test_pak.
101           'mac_bundle_resources': [
102             '<(PRODUCT_DIR)/ui/en.lproj/locale.pak',
103           ],
104           'actions': [
105             {
106               'action_name': 'copy_test_data',
107               'variables': {
108                 'test_data_files': [
109                   'test/data',
110                 ],
111                 'test_data_prefix' : 'ui/base',
112               },
113               'includes': [ '../../build/copy_test_data_ios.gypi' ],
114             },
115           ],
116         }],
117         ['OS == "win"', {
118           'sources': [
119             'dragdrop/os_exchange_data_win_unittest.cc',
120             'win/hwnd_subclass_unittest.cc',
121             'win/open_file_name_win_unittest.cc',
122           ],
123           'msvs_settings': {
124             'VCLinkerTool': {
125               'DelayLoadDLLs': [
126                 'd2d1.dll',
127                 'd3d10_1.dll',
128               ],
129               'AdditionalDependencies': [
130                 'd2d1.lib',
131                 'd3d10_1.lib',
132               ],
133             },
134           },
135           'link_settings': {
136             'libraries': [
137               '-limm32.lib',
138               '-loleacc.lib',
139             ],
140           },
141           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
142           'msvs_disabled_warnings': [ 4267, ],
143         }],
144         ['OS == "android"', {
145           'dependencies': [
146             '../../testing/android/native_test.gyp:native_test_native_code',
147           ],
148           'sources!': [
149             'touch/selection_bound_unittest.cc',
150             'user_activity/user_activity_detector_unittest.cc',
151           ],
152         }],
153         ['use_pango == 1', {
154           'dependencies': [
155             '../../build/linux/system.gyp:pangocairo',
156           ],
157           'conditions': [
158             ['use_allocator!="none"', {
159               'dependencies': [
160                 '../../base/allocator/allocator.gyp:allocator',
161               ],
162             }],
163           ],
164         }],
165         ['use_x11==1', {
166           'dependencies': [
167             '../../build/linux/system.gyp:x11',
168             '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
169             '../events/platform/x11/x11_events_platform.gyp:x11_events_platform',
170             '../gfx/x/gfx_x11.gyp:gfx_x11',
171           ],
172         }],
173         ['OS!="win" or use_aura==0', {
174           'sources!': [
175             'view_prop_unittest.cc',
176           ],
177         }],
178         ['use_x11==1 and use_aura==1',  {
179           'sources': [
180             'cursor/cursor_loader_x11_unittest.cc',
181           ],
182         }],
183         ['OS=="mac"',  {
184           'dependencies': [
185             '../../third_party/mozilla/mozilla.gyp:mozilla',
186             '../events/events.gyp:events_test_support',
187             'ui_base_tests_bundle',
188           ],
189           'conditions': [
190             ['component=="static_library"', {
191               # Needed for mozilla.gyp.
192               'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
193             }],
194           ],
195         }],
196         ['use_aura==1 or toolkit_views==1',  {
197           'sources': [
198             'dragdrop/os_exchange_data_unittest.cc',
199           ],
200           'dependencies': [
201             '../events/events.gyp:events',
202             '../events/events.gyp:events_base',
203             '../events/events.gyp:events_test_support',
204             '../events/platform/events_platform.gyp:events_platform',
205           ],
206         }],
207         ['chromeos==1', {
208           'dependencies': [
209             '../../chromeos/chromeos.gyp:chromeos',
210           ],
211           'sources!': [
212             'dragdrop/os_exchange_data_provider_aurax11_unittest.cc',
213             'x/selection_requestor_unittest.cc',
214           ],
215         }],
216         ['use_x11==0', {
217           'sources!': [
218             'ime/chromeos/character_composer_unittest.cc',
219             'ime/composition_text_util_pango_unittest.cc',
220             'ime/input_method_chromeos_unittest.cc',
221           ],
222         }],
223       ],
224       'target_conditions': [
225         ['OS == "ios"', {
226           'sources/': [
227             # Pull in specific Mac files for iOS (which have been filtered out
228             # by file name rules).
229             ['include', '^l10n/l10n_util_mac_unittest\\.mm$'],
230           ],
231         }],
232       ],
233     },
234   ],
235   'conditions': [
236     # Mac target to build a test Framework bundle to mock out resource loading.
237     ['OS == "mac"', {
238       'targets': [
239         {
240           'target_name': 'ui_base_tests_bundle',
241           'type': 'shared_library',
242           'dependencies': [
243             '../resources/ui_resources.gyp:ui_test_pak',
244           ],
245           'includes': [ 'ui_base_tests_bundle.gypi' ],
246           # ui_base_tests_bundle doesn't actually contain a shared library and
247           # therefore should not depend on sanitizer_options or any other
248           # libraries. Adding such a dependency will result in creating a
249           # broken shared library within the bundle.
250           'conditions': [
251             ['use_sanitizer_options==1', {
252               'dependencies!': [
253                 '../../build/sanitizers/sanitizers.gyp:sanitizer_options',
254               ],
255             }],
256           ],
257         },
258       ],
259     }],
260     ['OS == "android"', {
261       'targets': [
262         {
263           'target_name': 'ui_base_unittests_apk',
264           'type': 'none',
265           'dependencies': [
266             # TODO(tfarina): This is a layer violation and should be removed.
267             # crbug.com/176960
268             # For now this is here as a temporary band-aid to fix the clobber
269             # issue we are seeing when running this target on Android.
270             # crbug.com/374490
271             '../../chrome/chrome_resources.gyp:packed_resources',
272             'ui_base_unittests',
273           ],
274           'variables': {
275             'test_suite_name': 'ui_base_unittests',
276           },
277           'includes': [ '../../build/apk_test.gypi' ],
278         },
279       ],
280     }],
281     ['test_isolation_mode != "noop"', {
282       'targets': [
283         {
284           'target_name': 'ui_base_unittests_run',
285           'type': 'none',
286           'dependencies': [
287             'ui_base_unittests',
288           ],
289           'includes': [
290             '../../build/isolate.gypi',
291           ],
292           'sources': [
293             'ui_base_unittests.isolate',
294           ],
295           'conditions': [
296             ['use_x11 == 1', {
297               'dependencies': [
298                 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
299               ],
300             }],
301           ],
302         },
303       ],
304     }],
305   ],