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