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