Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(241)

Side by Side Diff: ui/events/BUILD.gn

Issue 618283003: Adds special support to the device manager for keyboards devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 "ozone/evdev/touch_event_converter_evdev_unittest.cc", 325 "ozone/evdev/touch_event_converter_evdev_unittest.cc",
322 ] 326 ]
323 } 327 }
324 328
325 if (use_aura) { 329 if (use_aura) {
326 sources += [ 330 sources += [
327 "gestures/gesture_provider_aura_unittest.cc", 331 "gestures/gesture_provider_aura_unittest.cc",
328 ] 332 ]
329 } 333 }
330 } 334 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698