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

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

Issue 1585193002: Build key map DomCodeToKey() for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dtapuska's review, added more tests, handles non-printable key combination Created 4 years, 11 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
« no previous file with comments | « no previous file | ui/events/event.cc » ('j') | ui/events/keycodes/keyboard_lookup_win.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//ui/ozone/ozone.gni") 7 import("//ui/ozone/ozone.gni")
8 8
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 "keycodes/dom_us_layout_data.h", 43 "keycodes/dom_us_layout_data.h",
44 "keycodes/keyboard_code_conversion.cc", 44 "keycodes/keyboard_code_conversion.cc",
45 "keycodes/keyboard_code_conversion.h", 45 "keycodes/keyboard_code_conversion.h",
46 "keycodes/keyboard_code_conversion_android.cc", 46 "keycodes/keyboard_code_conversion_android.cc",
47 "keycodes/keyboard_code_conversion_android.h", 47 "keycodes/keyboard_code_conversion_android.h",
48 "keycodes/keyboard_code_conversion_mac.h", 48 "keycodes/keyboard_code_conversion_mac.h",
49 "keycodes/keyboard_code_conversion_mac.mm", 49 "keycodes/keyboard_code_conversion_mac.mm",
50 "keycodes/keyboard_code_conversion_win.cc", 50 "keycodes/keyboard_code_conversion_win.cc",
51 "keycodes/keyboard_code_conversion_win.h", 51 "keycodes/keyboard_code_conversion_win.h",
52 "keycodes/keyboard_codes.h", 52 "keycodes/keyboard_codes.h",
53 "keycodes/keyboard_lookup_win.cc",
54 "keycodes/keyboard_lookup_win.h",
53 "latency_info.cc", 55 "latency_info.cc",
54 "latency_info.h", 56 "latency_info.h",
55 ] 57 ]
56 58
57 defines = [ "EVENTS_BASE_IMPLEMENTATION" ] 59 defines = [ "EVENTS_BASE_IMPLEMENTATION" ]
58 60
59 deps = [ 61 deps = [
60 ":dom_keycode_converter", 62 ":dom_keycode_converter",
61 "//base/third_party/dynamic_annotations", 63 "//base/third_party/dynamic_annotations",
62 "//ipc:param_traits", 64 "//ipc:param_traits",
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 "gesture_detection/gesture_provider_unittest.cc", 358 "gesture_detection/gesture_provider_unittest.cc",
357 "gesture_detection/motion_event_buffer_unittest.cc", 359 "gesture_detection/motion_event_buffer_unittest.cc",
358 "gesture_detection/motion_event_generic_unittest.cc", 360 "gesture_detection/motion_event_generic_unittest.cc",
359 "gesture_detection/snap_scroll_controller_unittest.cc", 361 "gesture_detection/snap_scroll_controller_unittest.cc",
360 "gesture_detection/touch_disposition_gesture_filter_unittest.cc", 362 "gesture_detection/touch_disposition_gesture_filter_unittest.cc",
361 "gesture_detection/velocity_tracker_unittest.cc", 363 "gesture_detection/velocity_tracker_unittest.cc",
362 "gestures/fling_curve_unittest.cc", 364 "gestures/fling_curve_unittest.cc",
363 "ipc/latency_info_param_traits_unittest.cc", 365 "ipc/latency_info_param_traits_unittest.cc",
364 "keycodes/dom/keycode_converter_unittest.cc", 366 "keycodes/dom/keycode_converter_unittest.cc",
365 "keycodes/keyboard_code_conversion_unittest.cc", 367 "keycodes/keyboard_code_conversion_unittest.cc",
368 "keycodes/keyboard_lookup_win_unittest.cc",
366 "latency_info_unittest.cc", 369 "latency_info_unittest.cc",
367 "platform/platform_event_source_unittest.cc", 370 "platform/platform_event_source_unittest.cc",
368 "scoped_target_handler_unittest.cc", 371 "scoped_target_handler_unittest.cc",
369 ] 372 ]
370 373
371 deps = [ 374 deps = [
372 ":dom_keycode_converter", 375 ":dom_keycode_converter",
373 ":events", 376 ":events",
374 ":events_base", 377 ":events_base",
375 ":gesture_detection", 378 ":gesture_detection",
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 sources += [ "android/motion_event_android_unittest.cc" ] 456 sources += [ "android/motion_event_android_unittest.cc" ]
454 } 457 }
455 } 458 }
456 459
457 if (is_android) { 460 if (is_android) {
458 generate_jar_jni("motionevent_jni_headers") { 461 generate_jar_jni("motionevent_jni_headers") {
459 jni_package = "ui" 462 jni_package = "ui"
460 classes = [ "android/view/MotionEvent.class" ] 463 classes = [ "android/view/MotionEvent.class" ]
461 } 464 }
462 } 465 }
OLDNEW
« no previous file with comments | « no previous file | ui/events/event.cc » ('j') | ui/events/keycodes/keyboard_lookup_win.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698