Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(279)

Side by Side Diff: ui/ui_unittests.gypi

Issue 28513004: Move evdev events support into EventFactoryDelegateEvdev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/_evdev//, add event_factory_delegate_ozone.cc, move GetRequestedDelegate() Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« ui/events/events.gyp ('K') | « ui/events/ozone/event_factory_ozone.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'ui_test_support', 8 'target_name': 'ui_test_support',
9 'dependencies': [ 9 'dependencies': [
10 '../base/base.gyp:base', 10 '../base/base.gyp:base',
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 'base/models/list_model_unittest.cc', 164 'base/models/list_model_unittest.cc',
165 'base/models/list_selection_model_unittest.cc', 165 'base/models/list_selection_model_unittest.cc',
166 'base/models/tree_node_model_unittest.cc', 166 'base/models/tree_node_model_unittest.cc',
167 'base/test/data/resource.h', 167 'base/test/data/resource.h',
168 'base/text/bytes_formatting_unittest.cc', 168 'base/text/bytes_formatting_unittest.cc',
169 'base/view_prop_unittest.cc', 169 'base/view_prop_unittest.cc',
170 'base/webui/web_ui_util_unittest.cc', 170 'base/webui/web_ui_util_unittest.cc',
171 'events/event_dispatcher_unittest.cc', 171 'events/event_dispatcher_unittest.cc',
172 'events/event_unittest.cc', 172 'events/event_unittest.cc',
173 'events/latency_info_unittest.cc', 173 'events/latency_info_unittest.cc',
174 'events/ozone/evdev/touch_event_converter_ozone_unittest.cc', 174 'events/ozone/evdev/touch_event_converter_unittest.cc',
175 'gfx/blit_unittest.cc', 175 'gfx/blit_unittest.cc',
176 'gfx/break_list_unittest.cc', 176 'gfx/break_list_unittest.cc',
177 'gfx/canvas_unittest.cc', 177 'gfx/canvas_unittest.cc',
178 'gfx/canvas_unittest_mac.mm', 178 'gfx/canvas_unittest_mac.mm',
179 'gfx/codec/jpeg_codec_unittest.cc', 179 'gfx/codec/jpeg_codec_unittest.cc',
180 'gfx/color_analysis_unittest.cc', 180 'gfx/color_analysis_unittest.cc',
181 'gfx/font_list_unittest.cc', 181 'gfx/font_list_unittest.cc',
182 'gfx/image/image_mac_unittest.mm', 182 'gfx/image/image_mac_unittest.mm',
183 'gfx/image/image_util_unittest.cc', 183 'gfx/image/image_util_unittest.cc',
184 'gfx/platform_font_mac_unittest.mm', 184 'gfx/platform_font_mac_unittest.mm',
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 'base/dialogs/select_file_dialog_win_unittest.cc', 328 'base/dialogs/select_file_dialog_win_unittest.cc',
329 'base/dragdrop/os_exchange_data_win_unittest.cc', 329 'base/dragdrop/os_exchange_data_win_unittest.cc',
330 'gfx/screen_unittest.cc', 330 'gfx/screen_unittest.cc',
331 ], 331 ],
332 }], 332 }],
333 ['chromeos==1', { 333 ['chromeos==1', {
334 'sources!': [ 334 'sources!': [
335 'base/dragdrop/os_exchange_data_provider_aurax11_unittest.cc', 335 'base/dragdrop/os_exchange_data_provider_aurax11_unittest.cc',
336 ], 336 ],
337 }], 337 }],
338 ['use_ozone_evdev==0', {
339 'sources!': [
340 'events/ozone/evdev/touch_event_converter_unittest.cc',
341 ],
342 }],
sadrul 2013/10/21 20:22:54 You shouldn't need this once you add the rule in f
spang 2013/10/21 20:32:04 Done.
338 ], 343 ],
339 'target_conditions': [ 344 'target_conditions': [
340 ['OS == "ios"', { 345 ['OS == "ios"', {
341 'sources/': [ 346 'sources/': [
342 # Pull in specific Mac files for iOS (which have been filtered out 347 # Pull in specific Mac files for iOS (which have been filtered out
343 # by file name rules). 348 # by file name rules).
344 ['include', '^base/l10n/l10n_util_mac_unittest\\.mm$'], 349 ['include', '^base/l10n/l10n_util_mac_unittest\\.mm$'],
345 ], 350 ],
346 }], 351 }],
347 ], 352 ],
(...skipping 14 matching lines...) Expand all
362 'variables': { 367 'variables': {
363 'test_suite_name': 'ui_unittests', 368 'test_suite_name': 'ui_unittests',
364 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte sts<(SHARED_LIB_SUFFIX)', 369 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte sts<(SHARED_LIB_SUFFIX)',
365 }, 370 },
366 'includes': [ '../build/apk_test.gypi' ], 371 'includes': [ '../build/apk_test.gypi' ],
367 }, 372 },
368 ], 373 ],
369 }], 374 }],
370 ], 375 ],
371 } 376 }
OLDNEW
« ui/events/events.gyp ('K') | « ui/events/ozone/event_factory_ozone.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698