| 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 14 matching lines...) Expand all Loading... |
| 25 "event_switches.cc", | 25 "event_switches.cc", |
| 26 "event_switches.h", | 26 "event_switches.h", |
| 27 "events_base_export.h", | 27 "events_base_export.h", |
| 28 "gesture_curve.h", | 28 "gesture_curve.h", |
| 29 "gesture_event_details.cc", | 29 "gesture_event_details.cc", |
| 30 "gesture_event_details.h", | 30 "gesture_event_details.h", |
| 31 "gestures/fling_curve.cc", | 31 "gestures/fling_curve.cc", |
| 32 "gestures/fling_curve.h", | 32 "gestures/fling_curve.h", |
| 33 "input_device.cc", | 33 "input_device.cc", |
| 34 "input_device.h", | 34 "input_device.h", |
| 35 "input_device_event_observer.h", |
| 35 "keyboard_device.cc", | 36 "keyboard_device.cc", |
| 36 "keyboard_device.h", | 37 "keyboard_device.h", |
| 37 "keycodes/keyboard_code_conversion.cc", | 38 "keycodes/keyboard_code_conversion.cc", |
| 38 "keycodes/keyboard_code_conversion.h", | 39 "keycodes/keyboard_code_conversion.h", |
| 39 "keycodes/keyboard_code_conversion_android.cc", | 40 "keycodes/keyboard_code_conversion_android.cc", |
| 40 "keycodes/keyboard_code_conversion_android.h", | 41 "keycodes/keyboard_code_conversion_android.h", |
| 41 "keycodes/keyboard_code_conversion_mac.h", | 42 "keycodes/keyboard_code_conversion_mac.h", |
| 42 "keycodes/keyboard_code_conversion_mac.mm", | 43 "keycodes/keyboard_code_conversion_mac.mm", |
| 43 "keycodes/keyboard_code_conversion_win.cc", | 44 "keycodes/keyboard_code_conversion_win.cc", |
| 44 "keycodes/keyboard_code_conversion_win.h", | 45 "keycodes/keyboard_code_conversion_win.h", |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 "ozone/evdev/touch_event_converter_evdev_unittest.cc", | 334 "ozone/evdev/touch_event_converter_evdev_unittest.cc", |
| 334 ] | 335 ] |
| 335 } | 336 } |
| 336 | 337 |
| 337 if (use_aura) { | 338 if (use_aura) { |
| 338 sources += [ | 339 sources += [ |
| 339 "gestures/gesture_provider_aura_unittest.cc", | 340 "gestures/gesture_provider_aura_unittest.cc", |
| 340 ] | 341 ] |
| 341 } | 342 } |
| 342 } | 343 } |
| OLD | NEW |