| 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 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 sources += [ json_file ] | 125 sources += [ json_file ] |
| 126 json_sources = "variables.inputview_sources" | 126 json_sources = "variables.inputview_sources" |
| 127 path = rebase_path("//third_party/google_input_tools") | 127 path = rebase_path("//third_party/google_input_tools") |
| 128 } | 128 } |
| 129 | 129 |
| 130 mojom("mojom") { | 130 mojom("mojom") { |
| 131 sources = [ | 131 sources = [ |
| 132 "keyboard.mojom", | 132 "keyboard.mojom", |
| 133 ] | 133 ] |
| 134 deps = [ | 134 deps = [ |
| 135 "//ui/mojo/geometry:interfaces", | 135 "//ui/gfx/geometry/mojo:interfaces", |
| 136 ] | 136 ] |
| 137 } | 137 } |
| 138 | 138 |
| 139 test("keyboard_unittests") { | 139 test("keyboard_unittests") { |
| 140 sources = [ | 140 sources = [ |
| 141 "keyboard_controller_unittest.cc", | 141 "keyboard_controller_unittest.cc", |
| 142 "keyboard_util_unittest.cc", | 142 "keyboard_util_unittest.cc", |
| 143 "test/run_all_unittests.cc", | 143 "test/run_all_unittests.cc", |
| 144 ] | 144 ] |
| 145 | 145 |
| 146 deps = [ | 146 deps = [ |
| 147 ":keyboard", | 147 ":keyboard", |
| 148 "//base", | 148 "//base", |
| 149 "//base/test:test_support", | 149 "//base/test:test_support", |
| 150 "//skia", | 150 "//skia", |
| 151 "//testing/gtest", | 151 "//testing/gtest", |
| 152 "//ui/aura:test_support", | 152 "//ui/aura:test_support", |
| 153 "//ui/base", | 153 "//ui/base", |
| 154 "//ui/base:test_support", | 154 "//ui/base:test_support", |
| 155 "//ui/base/ime", | 155 "//ui/base/ime", |
| 156 "//ui/compositor:test_support", | 156 "//ui/compositor:test_support", |
| 157 "//ui/events:test_support", | 157 "//ui/events:test_support", |
| 158 "//ui/gfx", | 158 "//ui/gfx", |
| 159 "//ui/gfx/geometry", | 159 "//ui/gfx/geometry", |
| 160 "//ui/gl:test_support", | 160 "//ui/gl:test_support", |
| 161 "//ui/wm", | 161 "//ui/wm", |
| 162 ] | 162 ] |
| 163 } | 163 } |
| OLD | NEW |