OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 'platform/events_platform.gyp:events_platform', | 312 'platform/events_platform.gyp:events_platform', |
313 ], | 313 ], |
314 'sources': [ | 314 'sources': [ |
315 # Note: sources list duplicated in GN build. | 315 # Note: sources list duplicated in GN build. |
316 'cocoa/events_mac_unittest.mm', | 316 'cocoa/events_mac_unittest.mm', |
317 'event_dispatcher_unittest.cc', | 317 'event_dispatcher_unittest.cc', |
318 'event_processor_unittest.cc', | 318 'event_processor_unittest.cc', |
319 'event_rewriter_unittest.cc', | 319 'event_rewriter_unittest.cc', |
320 'event_unittest.cc', | 320 'event_unittest.cc', |
321 'gestures/fling_curve_unittest.cc', | 321 'gestures/fling_curve_unittest.cc', |
| 322 'gestures/gesture_provider_aura_unittest.cc', |
322 'gestures/motion_event_aura_unittest.cc', | 323 'gestures/motion_event_aura_unittest.cc', |
323 'gestures/velocity_calculator_unittest.cc', | 324 'gestures/velocity_calculator_unittest.cc', |
324 'gesture_detection/bitset_32_unittest.cc', | 325 'gesture_detection/bitset_32_unittest.cc', |
325 'gesture_detection/gesture_event_data_packet_unittest.cc', | 326 'gesture_detection/gesture_event_data_packet_unittest.cc', |
326 'gesture_detection/gesture_provider_unittest.cc', | 327 'gesture_detection/gesture_provider_unittest.cc', |
327 'gesture_detection/motion_event_buffer_unittest.cc', | 328 'gesture_detection/motion_event_buffer_unittest.cc', |
328 'gesture_detection/motion_event_generic_unittest.cc', | 329 'gesture_detection/motion_event_generic_unittest.cc', |
329 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', | 330 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', |
330 'gesture_detection/velocity_tracker_unittest.cc', | 331 'gesture_detection/velocity_tracker_unittest.cc', |
331 'keycodes/dom4/keycode_converter_unittest.cc', | 332 'keycodes/dom4/keycode_converter_unittest.cc', |
332 'latency_info_unittest.cc', | 333 'latency_info_unittest.cc', |
333 'platform/platform_event_source_unittest.cc', | 334 'platform/platform_event_source_unittest.cc', |
334 'x/events_x_unittest.cc', | 335 'x/events_x_unittest.cc', |
335 ], | 336 ], |
336 'conditions': [ | 337 'conditions': [ |
337 ['use_ozone==1', { | 338 ['use_ozone==1', { |
338 'sources': [ | 339 'sources': [ |
339 'ozone/evdev/key_event_converter_evdev_unittest.cc', | 340 'ozone/evdev/key_event_converter_evdev_unittest.cc', |
340 'ozone/evdev/touch_event_converter_evdev_unittest.cc', | 341 'ozone/evdev/touch_event_converter_evdev_unittest.cc', |
341 ], | 342 ], |
342 'dependencies': [ | 343 'dependencies': [ |
343 'ozone/events_ozone.gyp:events_ozone', | 344 'ozone/events_ozone.gyp:events_ozone', |
344 'ozone/events_ozone.gyp:events_ozone_evdev', | 345 'ozone/events_ozone.gyp:events_ozone_evdev', |
345 ] | 346 ] |
346 }], | 347 }], |
347 ['use_aura==0', { | 348 ['use_aura==0', { |
348 'sources!': [ | 349 'sources!': [ |
| 350 'gestures/gesture_provider_aura_unittest.cc', |
349 'gestures/motion_event_aura_unittest.cc', | 351 'gestures/motion_event_aura_unittest.cc', |
350 'gestures/velocity_calculator_unittest.cc', | 352 'gestures/velocity_calculator_unittest.cc', |
351 ], | 353 ], |
352 }], | 354 }], |
353 ['OS=="linux" and use_allocator!="none"', { | 355 ['OS=="linux" and use_allocator!="none"', { |
354 'dependencies': [ | 356 'dependencies': [ |
355 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 357 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
356 ], | 358 ], |
357 }], | 359 }], |
358 # Exclude tests that rely on event_utils.h for platforms that do not | 360 # Exclude tests that rely on event_utils.h for platforms that do not |
(...skipping 22 matching lines...) Expand all Loading... |
381 ], | 383 ], |
382 'variables': { | 384 'variables': { |
383 'test_suite_name': 'events_unittests', | 385 'test_suite_name': 'events_unittests', |
384 }, | 386 }, |
385 'includes': [ '../../build/apk_test.gypi' ], | 387 'includes': [ '../../build/apk_test.gypi' ], |
386 }, | 388 }, |
387 ], | 389 ], |
388 }], | 390 }], |
389 ], | 391 ], |
390 } | 392 } |
OLD | NEW |