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

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: Created 5 years, 7 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/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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 'export_dependent_settings': [ 72 'export_dependent_settings': [
73 '../../ui/gfx/gfx.gyp:gfx', 73 '../../ui/gfx/gfx.gyp:gfx',
74 ], 74 ],
75 'conditions': [ 75 'conditions': [
76 ['use_x11==1', { 76 ['use_x11==1', {
77 'dependencies': [ 77 'dependencies': [
78 '../../build/linux/system.gyp:x11', 78 '../../build/linux/system.gyp:x11',
79 '../gfx/x/gfx_x11.gyp:gfx_x11', 79 '../gfx/x/gfx_x11.gyp:gfx_x11',
80 ], 80 ],
81 }], 81 }],
82 ['use_x11==1 or use_xkbcommon==1', {
83 'sources': [
84 'keycodes/keyboard_code_conversion_xkb.cc',
85 'keycodes/keyboard_code_conversion_xkb.h',
86 'keycodes/xkb_keysym.h',
87 ],
88 }],
82 ], 89 ],
83 }, 90 },
84 { 91 {
85 # GN version: //ui/events 92 # GN version: //ui/events
86 'target_name': 'events', 93 'target_name': 'events',
87 'type': '<(component)', 94 'type': '<(component)',
88 'dependencies': [ 95 'dependencies': [
89 '<(DEPTH)/base/base.gyp:base', 96 '<(DEPTH)/base/base.gyp:base',
90 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 97 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
91 '<(DEPTH)/skia/skia.gyp:skia', 98 '<(DEPTH)/skia/skia.gyp:skia',
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 'dependencies': [ 480 'dependencies': [
474 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 481 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
475 ], 482 ],
476 }], 483 }],
477 ], 484 ],
478 }, 485 },
479 ], 486 ],
480 }], 487 }],
481 ], 488 ],
482 } 489 }
OLDNEW
« no previous file with comments | « ui/events/event.cc ('k') | ui/events/keycodes/keyboard_code_conversion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698