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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("//third_party/google_input_tools/closure.gni") | 6 import("//third_party/google_input_tools/closure.gni") |
7 import("//third_party/google_input_tools/inputview.gni") | 7 import("//third_party/google_input_tools/inputview.gni") |
8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 | 9 |
10 component("keyboard") { | 10 component("keyboard") { |
(...skipping 17 matching lines...) Expand all Loading... |
28 ] | 28 ] |
29 | 29 |
30 defines = [ "KEYBOARD_IMPLEMENTATION" ] | 30 defines = [ "KEYBOARD_IMPLEMENTATION" ] |
31 | 31 |
32 deps = [ | 32 deps = [ |
33 ":resources", | 33 ":resources", |
34 "//base", | 34 "//base", |
35 "//base/third_party/dynamic_annotations", | 35 "//base/third_party/dynamic_annotations", |
36 "//content/public/browser", | 36 "//content/public/browser", |
37 "//content/public/common", | 37 "//content/public/common", |
| 38 "//ipc", |
38 "//skia", | 39 "//skia", |
39 "//ui/aura", | 40 "//ui/aura", |
40 "//ui/base", | 41 "//ui/base", |
41 "//ui/base/ime", | 42 "//ui/base/ime", |
42 "//ui/compositor", | 43 "//ui/compositor", |
43 "//ui/events", | 44 "//ui/events", |
44 "//ui/events:dom4_keycode_converter", | 45 "//ui/events:dom4_keycode_converter", |
45 "//ui/gfx", | 46 "//ui/gfx", |
46 "//ui/gfx/geometry", | 47 "//ui/gfx/geometry", |
47 "//ui/wm", | 48 "//ui/wm", |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 "//ui/compositor:test_support", | 115 "//ui/compositor:test_support", |
115 "//ui/events:test_support", | 116 "//ui/events:test_support", |
116 "//ui/gfx", | 117 "//ui/gfx", |
117 "//ui/gfx/geometry", | 118 "//ui/gfx/geometry", |
118 "//ui/gl", | 119 "//ui/gl", |
119 "//ui/resources:ui_test_pak", | 120 "//ui/resources:ui_test_pak", |
120 "//ui/wm", | 121 "//ui/wm", |
121 "//url", | 122 "//url", |
122 ] | 123 ] |
123 } | 124 } |
OLD | NEW |