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

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

Issue 841263005: Use DOM- rather than Windows-based key code for non-layout cases. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comments (sadrul) Created 5 years, 8 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("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//third_party/google_input_tools/closure.gni") 6 import("//third_party/google_input_tools/closure.gni")
7 import("//third_party/google_input_tools/inputview.gni") 7 import("//third_party/google_input_tools/inputview.gni")
8 import("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 9
10 component("keyboard") { 10 component("keyboard") {
(...skipping 25 matching lines...) Expand all
36 "//content/public/browser", 36 "//content/public/browser",
37 "//content/public/common", 37 "//content/public/common",
38 "//ipc", 38 "//ipc",
39 "//skia", 39 "//skia",
40 "//ui/aura", 40 "//ui/aura",
41 "//ui/base", 41 "//ui/base",
42 "//ui/base/ime", 42 "//ui/base/ime",
43 "//ui/compositor", 43 "//ui/compositor",
44 "//ui/events", 44 "//ui/events",
45 "//ui/events:dom4_keycode_converter", 45 "//ui/events:dom4_keycode_converter",
46 "//ui/events:events_base",
46 "//ui/gfx", 47 "//ui/gfx",
47 "//ui/gfx/geometry", 48 "//ui/gfx/geometry",
48 "//ui/wm", 49 "//ui/wm",
49 "//url", 50 "//url",
50 ] 51 ]
51 } 52 }
52 53
53 grit("resources_grit") { 54 grit("resources_grit") {
54 source = "keyboard_resources.grd" 55 source = "keyboard_resources.grd"
55 outputs = [ 56 outputs = [
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 "//ui/compositor:test_support", 116 "//ui/compositor:test_support",
116 "//ui/events:test_support", 117 "//ui/events:test_support",
117 "//ui/gfx", 118 "//ui/gfx",
118 "//ui/gfx/geometry", 119 "//ui/gfx/geometry",
119 "//ui/gl", 120 "//ui/gl",
120 "//ui/resources:ui_test_pak", 121 "//ui/resources:ui_test_pak",
121 "//ui/wm", 122 "//ui/wm",
122 "//url", 123 "//url",
123 ] 124 ]
124 } 125 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698