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

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

Issue 2444443002: cros: Allow pin keyboard to keep focus without popping up the pin keyboard. (Closed)
Patch Set: Closure compiler. 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_manager.cc", 17 "keyboard_layout_manager.cc",
18 "keyboard_layout_manager.h", 18 "keyboard_layout_manager.h",
19 "keyboard_switches.cc", 19 "keyboard_switches.cc",
20 "keyboard_switches.h", 20 "keyboard_switches.h",
21 "keyboard_ui.cc", 21 "keyboard_ui.cc",
22 "keyboard_ui.h", 22 "keyboard_ui.h",
23 "keyboard_util.cc", 23 "keyboard_util.cc",
24 "keyboard_util.h", 24 "keyboard_util.h",
25 "scoped_keyboard_disabler.cc",
26 "scoped_keyboard_disabler.h",
25 ] 27 ]
26 28
27 defines = [ "KEYBOARD_IMPLEMENTATION" ] 29 defines = [ "KEYBOARD_IMPLEMENTATION" ]
28 30
29 deps = [ 31 deps = [
30 "//base", 32 "//base",
31 "//base/third_party/dynamic_annotations", 33 "//base/third_party/dynamic_annotations",
32 "//media", 34 "//media",
33 "//skia", 35 "//skia",
34 "//ui/aura", 36 "//ui/aura",
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 "//ui/base:test_support", 160 "//ui/base:test_support",
159 "//ui/base/ime", 161 "//ui/base/ime",
160 "//ui/compositor:test_support", 162 "//ui/compositor:test_support",
161 "//ui/events:test_support", 163 "//ui/events:test_support",
162 "//ui/gfx", 164 "//ui/gfx",
163 "//ui/gfx/geometry", 165 "//ui/gfx/geometry",
164 "//ui/gl:test_support", 166 "//ui/gl:test_support",
165 "//ui/wm", 167 "//ui/wm",
166 ] 168 ]
167 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698