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 20 matching lines...) Expand all Loading... |
31 '<(DEPTH)/skia/skia.gyp:skia', | 31 '<(DEPTH)/skia/skia.gyp:skia', |
32 '../gfx/gfx.gyp:gfx', | 32 '../gfx/gfx.gyp:gfx', |
33 '../gfx/gfx.gyp:gfx_geometry', | 33 '../gfx/gfx.gyp:gfx_geometry', |
34 'dom4_keycode_converter', | 34 'dom4_keycode_converter', |
35 ], | 35 ], |
36 'defines': [ | 36 'defines': [ |
37 'EVENTS_BASE_IMPLEMENTATION', | 37 'EVENTS_BASE_IMPLEMENTATION', |
38 ], | 38 ], |
39 'sources': [ | 39 'sources': [ |
40 # Note: sources list duplicated in GN build. | 40 # Note: sources list duplicated in GN build. |
| 41 'android/scroller.cc', |
| 42 'android/scroller.h', |
41 'device_data_manager.cc', | 43 'device_data_manager.cc', |
42 'device_data_manager.h', | 44 'device_data_manager.h', |
43 'device_hotplug_event_observer.h', | 45 'device_hotplug_event_observer.h', |
44 'event_constants.h', | 46 'event_constants.h', |
45 'event_switches.cc', | 47 'event_switches.cc', |
46 'event_switches.h', | 48 'event_switches.h', |
47 'events_base_export.h', | 49 'events_base_export.h', |
| 50 'gesture_curve.h', |
48 'gesture_event_details.cc', | 51 'gesture_event_details.cc', |
49 'gesture_event_details.h', | 52 'gesture_event_details.h', |
50 'gestures/fling_curve.cc', | 53 'gestures/fling_curve.cc', |
51 'gestures/fling_curve.h', | 54 'gestures/fling_curve.h', |
52 'gestures/gesture_configuration.cc', | 55 'gestures/gesture_configuration.cc', |
53 'gestures/gesture_configuration.h', | 56 'gestures/gesture_configuration.h', |
54 'keycodes/keyboard_code_conversion.cc', | 57 'keycodes/keyboard_code_conversion.cc', |
55 'keycodes/keyboard_code_conversion.h', | 58 'keycodes/keyboard_code_conversion.h', |
56 'keycodes/keyboard_code_conversion_android.cc', | 59 'keycodes/keyboard_code_conversion_android.cc', |
57 'keycodes/keyboard_code_conversion_android.h', | 60 'keycodes/keyboard_code_conversion_android.h', |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 '../gfx/gfx.gyp:gfx_test_support', | 303 '../gfx/gfx.gyp:gfx_test_support', |
301 'dom4_keycode_converter', | 304 'dom4_keycode_converter', |
302 'events', | 305 'events', |
303 'events_base', | 306 'events_base', |
304 'events_test_support', | 307 'events_test_support', |
305 'gesture_detection', | 308 'gesture_detection', |
306 'platform/events_platform.gyp:events_platform', | 309 'platform/events_platform.gyp:events_platform', |
307 ], | 310 ], |
308 'sources': [ | 311 'sources': [ |
309 # Note: sources list duplicated in GN build. | 312 # Note: sources list duplicated in GN build. |
| 313 'android/scroller_unittest.cc', |
310 'cocoa/events_mac_unittest.mm', | 314 'cocoa/events_mac_unittest.mm', |
311 'event_dispatcher_unittest.cc', | 315 'event_dispatcher_unittest.cc', |
312 'event_processor_unittest.cc', | 316 'event_processor_unittest.cc', |
313 'event_rewriter_unittest.cc', | 317 'event_rewriter_unittest.cc', |
314 'event_unittest.cc', | 318 'event_unittest.cc', |
315 'gesture_detection/bitset_32_unittest.cc', | 319 'gesture_detection/bitset_32_unittest.cc', |
316 'gesture_detection/gesture_event_data_packet_unittest.cc', | 320 'gesture_detection/gesture_event_data_packet_unittest.cc', |
317 'gesture_detection/gesture_provider_unittest.cc', | 321 'gesture_detection/gesture_provider_unittest.cc', |
318 'gesture_detection/motion_event_buffer_unittest.cc', | 322 'gesture_detection/motion_event_buffer_unittest.cc', |
319 'gesture_detection/motion_event_generic_unittest.cc', | 323 'gesture_detection/motion_event_generic_unittest.cc', |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 ], | 385 ], |
382 'variables': { | 386 'variables': { |
383 'test_suite_name': 'events_unittests', | 387 'test_suite_name': 'events_unittests', |
384 }, | 388 }, |
385 'includes': [ '../../build/apk_test.gypi' ], | 389 'includes': [ '../../build/apk_test.gypi' ], |
386 }, | 390 }, |
387 ], | 391 ], |
388 }], | 392 }], |
389 ], | 393 ], |
390 } | 394 } |
OLD | NEW |