| Index: services/ui/input_manager/BUILD.gn
|
| diff --git a/services/ui/launcher/BUILD.gn b/services/ui/input_manager/BUILD.gn
|
| similarity index 51%
|
| copy from services/ui/launcher/BUILD.gn
|
| copy to services/ui/input_manager/BUILD.gn
|
| index e85fda3d3118ac675946e134fec8ae43a355e800..b869f3386106fde8bd8e656fe821915059e5ce12 100644
|
| --- a/services/ui/launcher/BUILD.gn
|
| +++ b/services/ui/input_manager/BUILD.gn
|
| @@ -5,24 +5,30 @@
|
| import("//mojo/public/mojo_application.gni")
|
| import("//testing/test.gni")
|
|
|
| -mojo_native_application("launcher") {
|
| +mojo_native_application("input_manager") {
|
| + output_name = "input_manager_service"
|
| +
|
| sources = [
|
| - "launcher_app.cc",
|
| - "launcher_app.h",
|
| - "launcher_view_tree.cc",
|
| - "launcher_view_tree.h",
|
| + "input_associate.cc",
|
| + "input_associate.h",
|
| + "input_manager_app.cc",
|
| + "input_manager_app.h",
|
| "main.cc",
|
| ]
|
|
|
| deps = [
|
| "//base",
|
| "//mojo/application",
|
| + "//mojo/common",
|
| "//mojo/common:tracing_impl",
|
| + "//mojo/converters/geometry",
|
| "//mojo/environment:chromium",
|
| "//mojo/public/cpp/bindings:bindings",
|
| - "//mojo/services/native_viewport/interfaces",
|
| - "//mojo/services/surfaces/cpp",
|
| - "//mojo/services/surfaces/interfaces",
|
| + "//mojo/services/geometry/cpp",
|
| + "//mojo/services/gfx/composition/cpp",
|
| + "//mojo/services/gfx/composition/interfaces",
|
| + "//mojo/services/ui/input/interfaces",
|
| + "//mojo/services/ui/views/cpp",
|
| "//mojo/services/ui/views/interfaces",
|
| ]
|
| }
|
|
|