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

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

Issue 954943003: [KeyboardEvent] Use DOM |code| rather than Windows-based key code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added missing VKEY in windows for brightness and power Created 5 years, 10 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_utils.cc ('k') | ui/events/keycodes/keyboard_code_conversion.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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 'export_dependent_settings': [ 71 'export_dependent_settings': [
72 '../../ui/gfx/gfx.gyp:gfx', 72 '../../ui/gfx/gfx.gyp:gfx',
73 ], 73 ],
74 'conditions': [ 74 'conditions': [
75 ['use_x11==1', { 75 ['use_x11==1', {
76 'dependencies': [ 76 'dependencies': [
77 '../../build/linux/system.gyp:x11', 77 '../../build/linux/system.gyp:x11',
78 '../gfx/x/gfx_x11.gyp:gfx_x11', 78 '../gfx/x/gfx_x11.gyp:gfx_x11',
79 ], 79 ],
80 }], 80 }],
81 ['use_x11==1 or use_xkbcommon==1', {
82 'sources': [
83 'keycodes/keyboard_code_conversion_xkb.cc',
84 'keycodes/keyboard_code_conversion_xkb.h',
85 'keycodes/xkb_keysym.h',
86 ],
87 }],
81 ], 88 ],
82 }, 89 },
83 { 90 {
84 # GN version: //ui/events 91 # GN version: //ui/events
85 'target_name': 'events', 92 'target_name': 'events',
86 'type': '<(component)', 93 'type': '<(component)',
87 'dependencies': [ 94 'dependencies': [
88 '<(DEPTH)/base/base.gyp:base', 95 '<(DEPTH)/base/base.gyp:base',
89 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 96 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
90 '<(DEPTH)/skia/skia.gyp:skia', 97 '<(DEPTH)/skia/skia.gyp:skia',
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 'dependencies': [ 438 'dependencies': [
432 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 439 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
433 ], 440 ],
434 }], 441 }],
435 ], 442 ],
436 }, 443 },
437 ], 444 ],
438 }], 445 }],
439 ], 446 ],
440 } 447 }
OLDNEW
« no previous file with comments | « ui/events/event_utils.cc ('k') | ui/events/keycodes/keyboard_code_conversion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698