| 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_event_filter.cc", | 16 "keyboard_event_filter.cc", |
| 17 "keyboard_event_filter.h", | 17 "keyboard_event_filter.h", |
| 18 "keyboard_export.h", | 18 "keyboard_export.h", |
| 19 "keyboard_layout_delegate.h", | 19 "keyboard_layout_delegate.h", |
| 20 "keyboard_layout_manager.cc", | 20 "keyboard_layout_manager.cc", |
| 21 "keyboard_layout_manager.h", | 21 "keyboard_layout_manager.h", |
| 22 "keyboard_switches.cc", | 22 "keyboard_switches.cc", |
| 23 "keyboard_switches.h", | 23 "keyboard_switches.h", |
| 24 "keyboard_ui.cc", | 24 "keyboard_ui.cc", |
| 25 "keyboard_ui.h", | 25 "keyboard_ui.h", |
| 26 "keyboard_util.cc", | 26 "keyboard_util.cc", |
| 27 "keyboard_util.h", | 27 "keyboard_util.h", |
| 28 "scoped_keyboard_disabler.cc", | |
| 29 "scoped_keyboard_disabler.h", | |
| 30 ] | 28 ] |
| 31 | 29 |
| 32 defines = [ "KEYBOARD_IMPLEMENTATION" ] | 30 defines = [ "KEYBOARD_IMPLEMENTATION" ] |
| 33 | 31 |
| 34 deps = [ | 32 deps = [ |
| 35 "//base", | 33 "//base", |
| 36 "//base/third_party/dynamic_annotations", | 34 "//base/third_party/dynamic_annotations", |
| 37 "//skia", | 35 "//skia", |
| 38 "//ui/aura", | 36 "//ui/aura", |
| 39 "//ui/base", | 37 "//ui/base", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 "//ui/base/ime", | 177 "//ui/base/ime", |
| 180 "//ui/compositor:test_support", | 178 "//ui/compositor:test_support", |
| 181 "//ui/events:test_support", | 179 "//ui/events:test_support", |
| 182 "//ui/gfx", | 180 "//ui/gfx", |
| 183 "//ui/gfx/geometry", | 181 "//ui/gfx/geometry", |
| 184 "//ui/gl:test_support", | 182 "//ui/gl:test_support", |
| 185 "//ui/resources:ui_test_pak", | 183 "//ui/resources:ui_test_pak", |
| 186 "//ui/wm", | 184 "//ui/wm", |
| 187 ] | 185 ] |
| 188 } | 186 } |
| OLD | NEW |