| Index: ui/platform_window/mojo/BUILD.gn
|
| diff --git a/mojo/converters/ime/BUILD.gn b/ui/platform_window/mojo/BUILD.gn
|
| similarity index 78%
|
| rename from mojo/converters/ime/BUILD.gn
|
| rename to ui/platform_window/mojo/BUILD.gn
|
| index 3914ee31a180f198e15f3191ccb7ee280083706d..3f137142ef895d0e38af1e7234d12f28a46d58f1 100644
|
| --- a/mojo/converters/ime/BUILD.gn
|
| +++ b/ui/platform_window/mojo/BUILD.gn
|
| @@ -2,18 +2,20 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import("//mojo/public/tools/bindings/mojom.gni")
|
| +
|
| # This target does NOT depend on skia. One can depend on this target to avoid
|
| # picking up a dependency on skia.
|
| -component("ime") {
|
| +component("mojo") {
|
| output_name = "mojo_ime_lib"
|
|
|
| public_deps = [
|
| "//ui/base/ime",
|
| ]
|
| deps = [
|
| + ":interfaces",
|
| "//base",
|
| "//mojo/public/c/system:for_component",
|
| - "//ui/mojo/ime:interfaces",
|
| "//ui/platform_window",
|
| ]
|
|
|
| @@ -25,3 +27,9 @@ component("ime") {
|
| "mojo_ime_export.h",
|
| ]
|
| }
|
| +
|
| +mojom("interfaces") {
|
| + sources = [
|
| + "text_input_state.mojom",
|
| + ]
|
| +}
|
|
|