| 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("//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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 deps = [ | 89 deps = [ |
| 90 ":inputview", | 90 ":inputview", |
| 91 ":keyboard_mojom_bindings", | 91 ":keyboard_mojom_bindings", |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 | 94 |
| 95 copy("resources") { | 95 copy("resources") { |
| 96 sources = [ | 96 sources = [ |
| 97 "$target_gen_dir/keyboard_resources.pak", | 97 "$target_gen_dir/keyboard_resources.pak", |
| 98 ] | 98 ] |
| 99 outputs = [ "$root_out_dir/keyboard_resources.pak" ] | 99 outputs = [ |
| 100 "$root_out_dir/keyboard_resources.pak", |
| 101 ] |
| 100 public_deps = [ | 102 public_deps = [ |
| 101 ":resources_grit", | 103 ":resources_grit", |
| 102 ] | 104 ] |
| 103 } | 105 } |
| 104 | 106 |
| 105 build_closure("inputview") { | 107 build_closure("inputview") { |
| 106 sources = inputview_sources | 108 sources = inputview_sources |
| 107 target = "$target_gen_dir/resources/inputview.js" | 109 target = "$target_gen_dir/resources/inputview.js" |
| 108 json_file = "//third_party/google_input_tools/inputview.gypi" | 110 json_file = "//third_party/google_input_tools/inputview.gypi" |
| 109 sources += [ json_file ] | 111 sources += [ json_file ] |
| (...skipping 20 matching lines...) Expand all Loading... |
| 130 "//ui/compositor:test_support", | 132 "//ui/compositor:test_support", |
| 131 "//ui/events:test_support", | 133 "//ui/events:test_support", |
| 132 "//ui/gfx", | 134 "//ui/gfx", |
| 133 "//ui/gfx/geometry", | 135 "//ui/gfx/geometry", |
| 134 "//ui/gl", | 136 "//ui/gl", |
| 135 "//ui/resources:ui_test_pak", | 137 "//ui/resources:ui_test_pak", |
| 136 "//ui/wm", | 138 "//ui/wm", |
| 137 "//url", | 139 "//url", |
| 138 ] | 140 ] |
| 139 } | 141 } |
| OLD | NEW |