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 18 matching lines...) Expand all Loading... |
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 "//ipc", |
| 39 "//media", |
39 "//skia", | 40 "//skia", |
40 "//ui/aura", | 41 "//ui/aura", |
41 "//ui/base", | 42 "//ui/base", |
42 "//ui/base/ime", | 43 "//ui/base/ime", |
43 "//ui/compositor", | 44 "//ui/compositor", |
44 "//ui/events", | 45 "//ui/events", |
45 "//ui/events:dom_keycode_converter", | 46 "//ui/events:dom_keycode_converter", |
46 "//ui/events:events_base", | 47 "//ui/events:events_base", |
47 "//ui/gfx", | 48 "//ui/gfx", |
48 "//ui/gfx/geometry", | 49 "//ui/gfx/geometry", |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 "keyboard_controller_unittest.cc", | 104 "keyboard_controller_unittest.cc", |
104 "test/run_all_unittests.cc", | 105 "test/run_all_unittests.cc", |
105 ] | 106 ] |
106 | 107 |
107 deps = [ | 108 deps = [ |
108 ":keyboard", | 109 ":keyboard", |
109 "//base", | 110 "//base", |
110 "//base/allocator", | 111 "//base/allocator", |
111 "//base/test:test_support", | 112 "//base/test:test_support", |
112 "//content", | 113 "//content", |
| 114 "//media", |
113 "//skia", | 115 "//skia", |
114 "//testing/gtest", | 116 "//testing/gtest", |
115 "//ui/aura:test_support", | 117 "//ui/aura:test_support", |
116 "//ui/base", | 118 "//ui/base", |
117 "//ui/base/ime", | 119 "//ui/base/ime", |
118 "//ui/base:test_support", | 120 "//ui/base:test_support", |
119 "//ui/compositor:test_support", | 121 "//ui/compositor:test_support", |
120 "//ui/events:test_support", | 122 "//ui/events:test_support", |
121 "//ui/gfx", | 123 "//ui/gfx", |
122 "//ui/gfx/geometry", | 124 "//ui/gfx/geometry", |
123 "//ui/gl", | 125 "//ui/gl", |
124 "//ui/resources:ui_test_pak", | 126 "//ui/resources:ui_test_pak", |
125 "//ui/wm", | 127 "//ui/wm", |
126 "//url", | 128 "//url", |
127 ] | 129 ] |
128 } | 130 } |
OLD | NEW |