| 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 "scoped_keyboard_disabler.cc", | 26 "scoped_keyboard_disabler.cc", |
| 26 "scoped_keyboard_disabler.h", | 27 "scoped_keyboard_disabler.h", |
| 27 ] | 28 ] |
| 28 | 29 |
| 29 defines = [ "KEYBOARD_IMPLEMENTATION" ] | 30 defines = [ "KEYBOARD_IMPLEMENTATION" ] |
| 30 | 31 |
| 31 deps = [ | 32 deps = [ |
| 32 "//base", | 33 "//base", |
| 33 "//base/third_party/dynamic_annotations", | 34 "//base/third_party/dynamic_annotations", |
| 34 "//media", | 35 "//media", |
| 35 "//skia", | 36 "//skia", |
| 36 "//ui/aura", | 37 "//ui/aura", |
| 37 "//ui/base", | 38 "//ui/base", |
| 38 "//ui/base/ime", | 39 "//ui/base/ime", |
| 39 "//ui/compositor", | 40 "//ui/compositor", |
| 41 "//ui/display/types:types", |
| 40 "//ui/events", | 42 "//ui/events", |
| 41 "//ui/events:dom_keycode_converter", | 43 "//ui/events:dom_keycode_converter", |
| 42 "//ui/events:events_base", | 44 "//ui/events:events_base", |
| 43 "//ui/gfx", | 45 "//ui/gfx", |
| 44 "//ui/gfx/geometry", | 46 "//ui/gfx/geometry", |
| 45 ] | 47 ] |
| 46 | 48 |
| 47 if (use_ozone) { | 49 if (use_ozone) { |
| 48 deps += [ "//ui/ozone" ] | 50 deps += [ "//ui/ozone" ] |
| 49 } | 51 } |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 "//ui/base:test_support", | 162 "//ui/base:test_support", |
| 161 "//ui/base/ime", | 163 "//ui/base/ime", |
| 162 "//ui/compositor:test_support", | 164 "//ui/compositor:test_support", |
| 163 "//ui/events:test_support", | 165 "//ui/events:test_support", |
| 164 "//ui/gfx", | 166 "//ui/gfx", |
| 165 "//ui/gfx/geometry", | 167 "//ui/gfx/geometry", |
| 166 "//ui/gl:test_support", | 168 "//ui/gl:test_support", |
| 167 "//ui/wm", | 169 "//ui/wm", |
| 168 ] | 170 ] |
| 169 } | 171 } |
| OLD | NEW |