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

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

Issue 2445293002: Make the virtual keyboard show up on the display with input focus. (Closed)
Patch Set: address the comments Created 4 years, 1 month 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("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/google_input_tools/closure.gni") 7 import("//third_party/google_input_tools/closure.gni")
8 import("//third_party/google_input_tools/inputview.gni") 8 import("//third_party/google_input_tools/inputview.gni")
9 import("//tools/grit/grit_rule.gni") 9 import("//tools/grit/grit_rule.gni")
10 10
11 component("keyboard") { 11 component("keyboard") {
12 sources = [ 12 sources = [
13 "keyboard_controller.cc", 13 "keyboard_controller.cc",
14 "keyboard_controller.h", 14 "keyboard_controller.h",
15 "keyboard_controller_observer.h", 15 "keyboard_controller_observer.h",
16 "keyboard_export.h", 16 "keyboard_export.h",
17 "keyboard_layout_delegate.h",
17 "keyboard_layout_manager.cc", 18 "keyboard_layout_manager.cc",
18 "keyboard_layout_manager.h", 19 "keyboard_layout_manager.h",
19 "keyboard_switches.cc", 20 "keyboard_switches.cc",
20 "keyboard_switches.h", 21 "keyboard_switches.h",
21 "keyboard_ui.cc", 22 "keyboard_ui.cc",
22 "keyboard_ui.h", 23 "keyboard_ui.h",
23 "keyboard_util.cc", 24 "keyboard_util.cc",
24 "keyboard_util.h", 25 "keyboard_util.h",
25 ] 26 ]
26 27
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 "//ui/base:test_support", 159 "//ui/base:test_support",
159 "//ui/base/ime", 160 "//ui/base/ime",
160 "//ui/compositor:test_support", 161 "//ui/compositor:test_support",
161 "//ui/events:test_support", 162 "//ui/events:test_support",
162 "//ui/gfx", 163 "//ui/gfx",
163 "//ui/gfx/geometry", 164 "//ui/gfx/geometry",
164 "//ui/gl:test_support", 165 "//ui/gl:test_support",
165 "//ui/wm", 166 "//ui/wm",
166 ] 167 ]
167 } 168 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698