OLD | NEW |
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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 "//ui/base:test_support", | 161 "//ui/base:test_support", |
161 "//ui/base/ime", | 162 "//ui/base/ime", |
162 "//ui/compositor:test_support", | 163 "//ui/compositor:test_support", |
163 "//ui/events:test_support", | 164 "//ui/events:test_support", |
164 "//ui/gfx", | 165 "//ui/gfx", |
165 "//ui/gfx/geometry", | 166 "//ui/gfx/geometry", |
166 "//ui/gl:test_support", | 167 "//ui/gl:test_support", |
167 "//ui/wm", | 168 "//ui/wm", |
168 ] | 169 ] |
169 } | 170 } |
OLD | NEW |