| 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", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 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", | 28 "gestures/fling_curve.cc", |
| 29 "gestures/fling_curve.h", | 29 "gestures/fling_curve.h", |
| 30 "gestures/gesture_configuration.cc", | 30 "gestures/gesture_configuration.cc", |
| 31 "gestures/gesture_configuration.h", | 31 "gestures/gesture_configuration.h", |
| 32 "input_device.cc", |
| 33 "input_device.h", |
| 34 "keyboard_device.cc", |
| 35 "keyboard_device.h", |
| 32 "keycodes/keyboard_code_conversion.cc", | 36 "keycodes/keyboard_code_conversion.cc", |
| 33 "keycodes/keyboard_code_conversion.h", | 37 "keycodes/keyboard_code_conversion.h", |
| 34 "keycodes/keyboard_code_conversion_android.cc", | 38 "keycodes/keyboard_code_conversion_android.cc", |
| 35 "keycodes/keyboard_code_conversion_android.h", | 39 "keycodes/keyboard_code_conversion_android.h", |
| 36 "keycodes/keyboard_code_conversion_mac.h", | 40 "keycodes/keyboard_code_conversion_mac.h", |
| 37 "keycodes/keyboard_code_conversion_mac.mm", | 41 "keycodes/keyboard_code_conversion_mac.mm", |
| 38 "keycodes/keyboard_code_conversion_win.cc", | 42 "keycodes/keyboard_code_conversion_win.cc", |
| 39 "keycodes/keyboard_code_conversion_win.h", | 43 "keycodes/keyboard_code_conversion_win.h", |
| 40 "keycodes/keyboard_codes.h", | 44 "keycodes/keyboard_codes.h", |
| 41 "latency_info.cc", | 45 "latency_info.cc", |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 "gesture_detection/gesture_event_data_packet_unittest.cc", | 286 "gesture_detection/gesture_event_data_packet_unittest.cc", |
| 283 "gesture_detection/gesture_provider_unittest.cc", | 287 "gesture_detection/gesture_provider_unittest.cc", |
| 284 "gesture_detection/motion_event_buffer_unittest.cc", | 288 "gesture_detection/motion_event_buffer_unittest.cc", |
| 285 "gesture_detection/motion_event_generic_unittest.cc", | 289 "gesture_detection/motion_event_generic_unittest.cc", |
| 286 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", | 290 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", |
| 287 "gesture_detection/velocity_tracker_unittest.cc", | 291 "gesture_detection/velocity_tracker_unittest.cc", |
| 288 "gestures/fling_curve_unittest.cc", | 292 "gestures/fling_curve_unittest.cc", |
| 289 "keycodes/dom4/keycode_converter_unittest.cc", | 293 "keycodes/dom4/keycode_converter_unittest.cc", |
| 290 "latency_info_unittest.cc", | 294 "latency_info_unittest.cc", |
| 291 "platform/platform_event_source_unittest.cc", | 295 "platform/platform_event_source_unittest.cc", |
| 296 "x/device_data_manager_x11_unittest.cc", |
| 292 "x/events_x_unittest.cc", | 297 "x/events_x_unittest.cc", |
| 293 ] | 298 ] |
| 294 | 299 |
| 295 deps = [ | 300 deps = [ |
| 296 ":dom4_keycode_converter", | 301 ":dom4_keycode_converter", |
| 297 ":events", | 302 ":events", |
| 298 ":events_base", | 303 ":events_base", |
| 299 ":gesture_detection", | 304 ":gesture_detection", |
| 300 ":test_support", | 305 ":test_support", |
| 301 "//base", | 306 "//base", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 321 "ozone/evdev/touch_event_converter_evdev_unittest.cc", | 326 "ozone/evdev/touch_event_converter_evdev_unittest.cc", |
| 322 ] | 327 ] |
| 323 } | 328 } |
| 324 | 329 |
| 325 if (use_aura) { | 330 if (use_aura) { |
| 326 sources += [ | 331 sources += [ |
| 327 "gestures/gesture_provider_aura_unittest.cc", | 332 "gestures/gesture_provider_aura_unittest.cc", |
| 328 ] | 333 ] |
| 329 } | 334 } |
| 330 } | 335 } |
| OLD | NEW |