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 22 matching lines...) Expand all Loading... |
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 'device_data_manager.cc', | 41 'device_data_manager.cc', |
42 'device_data_manager.h', | 42 'device_data_manager.h', |
| 43 'device_hotplug_event_observer.h', |
43 'event_constants.h', | 44 'event_constants.h', |
44 'event_switches.cc', | 45 'event_switches.cc', |
45 'event_switches.h', | 46 'event_switches.h', |
46 'events_base_export.h', | 47 'events_base_export.h', |
47 'gesture_event_details.cc', | 48 'gesture_event_details.cc', |
48 'gesture_event_details.h', | 49 'gesture_event_details.h', |
49 'gestures/fling_curve.cc', | 50 'gestures/fling_curve.cc', |
50 'gestures/fling_curve.h', | 51 'gestures/fling_curve.h', |
51 'gestures/gesture_configuration.cc', | 52 'gestures/gesture_configuration.cc', |
52 'gestures/gesture_configuration.h', | 53 'gestures/gesture_configuration.h', |
53 'keycodes/keyboard_code_conversion.cc', | 54 'keycodes/keyboard_code_conversion.cc', |
54 'keycodes/keyboard_code_conversion.h', | 55 'keycodes/keyboard_code_conversion.h', |
55 'keycodes/keyboard_code_conversion_android.cc', | 56 'keycodes/keyboard_code_conversion_android.cc', |
56 'keycodes/keyboard_code_conversion_android.h', | 57 'keycodes/keyboard_code_conversion_android.h', |
57 'keycodes/keyboard_code_conversion_mac.h', | 58 'keycodes/keyboard_code_conversion_mac.h', |
58 'keycodes/keyboard_code_conversion_mac.mm', | 59 'keycodes/keyboard_code_conversion_mac.mm', |
59 'keycodes/keyboard_code_conversion_win.cc', | 60 'keycodes/keyboard_code_conversion_win.cc', |
60 'keycodes/keyboard_code_conversion_win.h', | 61 'keycodes/keyboard_code_conversion_win.h', |
61 'keycodes/keyboard_code_conversion_x.cc', | 62 'keycodes/keyboard_code_conversion_x.cc', |
62 'keycodes/keyboard_code_conversion_x.h', | 63 'keycodes/keyboard_code_conversion_x.h', |
63 'keycodes/keyboard_codes.h', | 64 'keycodes/keyboard_codes.h', |
64 'latency_info.cc', | 65 'latency_info.cc', |
65 'latency_info.h', | 66 'latency_info.h', |
| 67 'touchscreen_device.cc', |
| 68 'touchscreen_device.h', |
66 'x/device_data_manager_x11.cc', | 69 'x/device_data_manager_x11.cc', |
67 'x/device_data_manager_x11.h', | 70 'x/device_data_manager_x11.h', |
68 'x/device_list_cache_x.cc', | 71 'x/device_list_cache_x.cc', |
69 'x/device_list_cache_x.h', | 72 'x/device_list_cache_x.h', |
| 73 'x/hotplug_event_handler_x11.cc', |
| 74 'x/hotplug_event_handler_x11.h', |
70 'x/keysym_to_unicode.cc', | 75 'x/keysym_to_unicode.cc', |
71 'x/keysym_to_unicode.h', | 76 'x/keysym_to_unicode.h', |
72 'x/touch_factory_x11.cc', | 77 'x/touch_factory_x11.cc', |
73 'x/touch_factory_x11.h', | 78 'x/touch_factory_x11.h', |
74 ], | 79 ], |
75 'export_dependent_settings': [ | 80 'export_dependent_settings': [ |
76 '../../ui/gfx/gfx.gyp:gfx', | 81 '../../ui/gfx/gfx.gyp:gfx', |
77 ], | 82 ], |
78 'conditions': [ | 83 'conditions': [ |
79 ['use_x11==1', { | 84 ['use_x11==1', { |
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 ], | 377 ], |
373 'variables': { | 378 'variables': { |
374 'test_suite_name': 'events_unittests', | 379 'test_suite_name': 'events_unittests', |
375 }, | 380 }, |
376 'includes': [ '../../build/apk_test.gypi' ], | 381 'includes': [ '../../build/apk_test.gypi' ], |
377 }, | 382 }, |
378 ], | 383 ], |
379 }], | 384 }], |
380 ], | 385 ], |
381 } | 386 } |
OLD | NEW |