| 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("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 | 7 |
| 8 component("keyboard") { | 8 component("keyboard") { |
| 9 sources = [ | 9 sources = [ |
| 10 "keyboard.cc", | 10 "keyboard.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 defines = [ "KEYBOARD_IMPLEMENTATION" ] | 32 defines = [ "KEYBOARD_IMPLEMENTATION" ] |
| 33 | 33 |
| 34 deps = [ | 34 deps = [ |
| 35 ":keyboard_mojom_bindings", | 35 ":keyboard_mojom_bindings", |
| 36 ":resources", | 36 ":resources", |
| 37 "//base", | 37 "//base", |
| 38 "//base/third_party/dynamic_annotations", | 38 "//base/third_party/dynamic_annotations", |
| 39 "//content/public/browser", | 39 "//content/public/browser", |
| 40 "//content/public/common", | 40 "//content/public/common", |
| 41 "//mojo/bindings/js", | |
| 42 "//mojo/edk/system", | |
| 43 "//mojo/environment:chromium", | |
| 44 "//mojo/public/cpp/bindings", | 41 "//mojo/public/cpp/bindings", |
| 45 "//mojo/public/cpp/system", | 42 "//mojo/public/cpp/system", |
| 43 "//mojo/environment:chromium", |
| 44 "//mojo/bindings/js", |
| 45 "//mojo/system", |
| 46 "//url", | 46 "//url", |
| 47 "//ui/aura", | 47 "//ui/aura", |
| 48 "//ui/base", | 48 "//ui/base", |
| 49 "//ui/compositor", | 49 "//ui/compositor", |
| 50 "//ui/events", | 50 "//ui/events", |
| 51 "//ui/gfx", | 51 "//ui/gfx", |
| 52 "//ui/gfx/geometry", | 52 "//ui/gfx/geometry", |
| 53 "//ui/wm", | 53 "//ui/wm", |
| 54 ] | 54 ] |
| 55 } | 55 } |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "//ui/compositor:test_support", | 106 "//ui/compositor:test_support", |
| 107 "//ui/events:test_support", | 107 "//ui/events:test_support", |
| 108 "//ui/gfx", | 108 "//ui/gfx", |
| 109 "//ui/gfx/geometry", | 109 "//ui/gfx/geometry", |
| 110 "//ui/gl", | 110 "//ui/gl", |
| 111 "//ui/resources:ui_test_pak", | 111 "//ui/resources:ui_test_pak", |
| 112 "//ui/wm", | 112 "//ui/wm", |
| 113 "//url", | 113 "//url", |
| 114 ] | 114 ] |
| 115 } | 115 } |
| OLD | NEW |