OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 static_library("dom4_keycode_converter") { | 7 static_library("dom4_keycode_converter") { |
8 sources = [ | 8 sources = [ |
9 "keycodes/dom4/keycode_converter.cc", | 9 "keycodes/dom4/keycode_converter.cc", |
10 "keycodes/dom4/keycode_converter.h", | 10 "keycodes/dom4/keycode_converter.h", |
11 "keycodes/dom4/keycode_converter_data.h", | 11 "keycodes/dom4/keycode_converter_data.h", |
12 ] | 12 ] |
13 | 13 |
14 deps = [ "//base" ] | 14 deps = [ "//base" ] |
15 } | 15 } |
16 | 16 |
17 component("events_base") { | 17 component("events_base") { |
18 sources = [ | 18 sources = [ |
19 "device_data_manager.cc", | 19 "device_data_manager.cc", |
20 "device_data_manager.h", | 20 "device_data_manager.h", |
21 "device_hotplug_event_observer.h", | 21 "device_hotplug_event_observer.h", |
22 "event_constants.h", | 22 "event_constants.h", |
23 "event_switches.cc", | 23 "event_switches.cc", |
24 "event_switches.h", | 24 "event_switches.h", |
25 "events_base_export.h", | 25 "events_base_export.h", |
26 "gesture_event_details.cc", | 26 "gesture_event_details.cc", |
27 "gesture_event_details.h", | 27 "gesture_event_details.h", |
| 28 "gestures/fling_curve.cc", |
| 29 "gestures/fling_curve.h", |
28 "gestures/gesture_configuration.cc", | 30 "gestures/gesture_configuration.cc", |
29 "gestures/gesture_configuration.h", | 31 "gestures/gesture_configuration.h", |
30 "keycodes/keyboard_code_conversion.cc", | 32 "keycodes/keyboard_code_conversion.cc", |
31 "keycodes/keyboard_code_conversion.h", | 33 "keycodes/keyboard_code_conversion.h", |
32 "keycodes/keyboard_code_conversion_android.cc", | 34 "keycodes/keyboard_code_conversion_android.cc", |
33 "keycodes/keyboard_code_conversion_android.h", | 35 "keycodes/keyboard_code_conversion_android.h", |
34 "keycodes/keyboard_code_conversion_mac.h", | 36 "keycodes/keyboard_code_conversion_mac.h", |
35 "keycodes/keyboard_code_conversion_mac.mm", | 37 "keycodes/keyboard_code_conversion_mac.mm", |
36 "keycodes/keyboard_code_conversion_win.cc", | 38 "keycodes/keyboard_code_conversion_win.cc", |
37 "keycodes/keyboard_code_conversion_win.h", | 39 "keycodes/keyboard_code_conversion_win.h", |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 "event_processor_unittest.cc", | 273 "event_processor_unittest.cc", |
272 "event_rewriter_unittest.cc", | 274 "event_rewriter_unittest.cc", |
273 "event_unittest.cc", | 275 "event_unittest.cc", |
274 "gesture_detection/bitset_32_unittest.cc", | 276 "gesture_detection/bitset_32_unittest.cc", |
275 "gesture_detection/gesture_event_data_packet_unittest.cc", | 277 "gesture_detection/gesture_event_data_packet_unittest.cc", |
276 "gesture_detection/gesture_provider_unittest.cc", | 278 "gesture_detection/gesture_provider_unittest.cc", |
277 "gesture_detection/motion_event_buffer_unittest.cc", | 279 "gesture_detection/motion_event_buffer_unittest.cc", |
278 "gesture_detection/motion_event_generic_unittest.cc", | 280 "gesture_detection/motion_event_generic_unittest.cc", |
279 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 281 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
280 "gesture_detection/velocity_tracker_unittest.cc", | 282 "gesture_detection/velocity_tracker_unittest.cc", |
| 283 "gestures/fling_curve_unittest.cc", |
281 "keycodes/dom4/keycode_converter_unittest.cc", | 284 "keycodes/dom4/keycode_converter_unittest.cc", |
282 "latency_info_unittest.cc", | 285 "latency_info_unittest.cc", |
283 "platform/platform_event_source_unittest.cc", | 286 "platform/platform_event_source_unittest.cc", |
284 "x/events_x_unittest.cc", | 287 "x/events_x_unittest.cc", |
285 ] | 288 ] |
286 | 289 |
287 deps = [ | 290 deps = [ |
288 ":dom4_keycode_converter", | 291 ":dom4_keycode_converter", |
289 ":events", | 292 ":events", |
290 ":events_base", | 293 ":events_base", |
(...skipping 22 matching lines...) Expand all Loading... |
313 "ozone/evdev/touch_event_converter_evdev_unittest.cc", | 316 "ozone/evdev/touch_event_converter_evdev_unittest.cc", |
314 ] | 317 ] |
315 } | 318 } |
316 | 319 |
317 if (use_aura) { | 320 if (use_aura) { |
318 sources += [ | 321 sources += [ |
319 "gestures/gesture_provider_aura_unittest.cc", | 322 "gestures/gesture_provider_aura_unittest.cc", |
320 ] | 323 ] |
321 } | 324 } |
322 } | 325 } |
OLD | NEW |