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

Side by Side Diff: ui/events/events.gyp

Issue 1776673007: [Windows] Produce correct DomKey for NumPad when combined with Shift/NumLock (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wez's review 2 Created 4 years, 9 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 | « ui/events/event.cc ('k') | ui/events/keycodes/platform_key_map_win.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 'keycodes/keyboard_code_conversion.h', 59 'keycodes/keyboard_code_conversion.h',
60 'keycodes/keyboard_code_conversion_android.cc', 60 'keycodes/keyboard_code_conversion_android.cc',
61 'keycodes/keyboard_code_conversion_android.h', 61 'keycodes/keyboard_code_conversion_android.h',
62 'keycodes/keyboard_code_conversion_mac.h', 62 'keycodes/keyboard_code_conversion_mac.h',
63 'keycodes/keyboard_code_conversion_mac.mm', 63 'keycodes/keyboard_code_conversion_mac.mm',
64 'keycodes/keyboard_code_conversion_win.cc', 64 'keycodes/keyboard_code_conversion_win.cc',
65 'keycodes/keyboard_code_conversion_win.h', 65 'keycodes/keyboard_code_conversion_win.h',
66 'keycodes/keyboard_code_conversion_x.cc', 66 'keycodes/keyboard_code_conversion_x.cc',
67 'keycodes/keyboard_code_conversion_x.h', 67 'keycodes/keyboard_code_conversion_x.h',
68 'keycodes/keyboard_codes.h', 68 'keycodes/keyboard_codes.h',
69 'keycodes/platform_key_map_win.cc',
70 'keycodes/platform_key_map_win.h',
71 'latency_info.cc', 69 'latency_info.cc',
72 'latency_info.h', 70 'latency_info.h',
73 'x/keysym_to_unicode.cc', 71 'x/keysym_to_unicode.cc',
74 'x/keysym_to_unicode.h', 72 'x/keysym_to_unicode.h',
75 ], 73 ],
76 'export_dependent_settings': [ 74 'export_dependent_settings': [
77 '../../ui/gfx/gfx.gyp:gfx', 75 '../../ui/gfx/gfx.gyp:gfx',
78 ], 76 ],
79 'conditions': [ 77 'conditions': [
80 ['use_x11==1', { 78 ['use_x11==1', {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 'events_stub.cc', 133 'events_stub.cc',
136 'gestures/gesture_provider_aura.cc', 134 'gestures/gesture_provider_aura.cc',
137 'gestures/gesture_provider_aura.h', 135 'gestures/gesture_provider_aura.h',
138 'gestures/gesture_recognizer.h', 136 'gestures/gesture_recognizer.h',
139 'gestures/gesture_recognizer_impl.cc', 137 'gestures/gesture_recognizer_impl.cc',
140 'gestures/gesture_recognizer_impl.h', 138 'gestures/gesture_recognizer_impl.h',
141 'gestures/gesture_recognizer_impl_mac.cc', 139 'gestures/gesture_recognizer_impl_mac.cc',
142 'gestures/gesture_types.h', 140 'gestures/gesture_types.h',
143 'gestures/motion_event_aura.cc', 141 'gestures/motion_event_aura.cc',
144 'gestures/motion_event_aura.h', 142 'gestures/motion_event_aura.h',
143 'keycodes/platform_key_map_win.cc',
144 'keycodes/platform_key_map_win.h',
145 'linux/text_edit_command_auralinux.cc', 145 'linux/text_edit_command_auralinux.cc',
146 'linux/text_edit_command_auralinux.h', 146 'linux/text_edit_command_auralinux.h',
147 'linux/text_edit_key_bindings_delegate_auralinux.cc', 147 'linux/text_edit_key_bindings_delegate_auralinux.cc',
148 'linux/text_edit_key_bindings_delegate_auralinux.h', 148 'linux/text_edit_key_bindings_delegate_auralinux.h',
149 'null_event_targeter.cc', 149 'null_event_targeter.cc',
150 'null_event_targeter.h', 150 'null_event_targeter.h',
151 'scoped_target_handler.cc', 151 'scoped_target_handler.cc',
152 'scoped_target_handler.h', 152 'scoped_target_handler.h',
153 'ozone/events_ozone.cc', 153 'ozone/events_ozone.cc',
154 'win/events_win.cc', 154 'win/events_win.cc',
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 'variables': { 395 'variables': {
396 'jni_gen_package': 'ui', 396 'jni_gen_package': 'ui',
397 'input_java_class': 'android/view/KeyEvent.class', 397 'input_java_class': 'android/view/KeyEvent.class',
398 }, 398 },
399 'includes': [ '../../build/jar_file_jni_generator.gypi' ], 399 'includes': [ '../../build/jar_file_jni_generator.gypi' ],
400 }, 400 },
401 ], 401 ],
402 }], 402 }],
403 ], 403 ],
404 } 404 }
OLDNEW
« no previous file with comments | « ui/events/event.cc ('k') | ui/events/keycodes/platform_key_map_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698