| Index: services/ui/view_manager/BUILD.gn
|
| diff --git a/services/ui/view_manager/BUILD.gn b/services/ui/view_manager/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..833582bc4d2a37e8e0e1432d511e061d5360e5aa
|
| --- /dev/null
|
| +++ b/services/ui/view_manager/BUILD.gn
|
| @@ -0,0 +1,45 @@
|
| +# Copyright 2015 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +import("//mojo/public/mojo_application.gni")
|
| +import("//testing/test.gni")
|
| +
|
| +mojo_native_application("view_manager") {
|
| + output_name = "view_manager_service"
|
| +
|
| + sources = [
|
| + "main.cc",
|
| + "surface_manager.cc",
|
| + "surface_manager.h",
|
| + "view_host_impl.cc",
|
| + "view_host_impl.h",
|
| + "view_layout_request.cc",
|
| + "view_layout_request.h",
|
| + "view_manager_app.cc",
|
| + "view_manager_app.h",
|
| + "view_manager_impl.cc",
|
| + "view_manager_impl.h",
|
| + "view_registry.cc",
|
| + "view_registry.h",
|
| + "view_state.cc",
|
| + "view_state.h",
|
| + "view_tree_host_impl.cc",
|
| + "view_tree_host_impl.h",
|
| + "view_tree_state.cc",
|
| + "view_tree_state.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//mojo/application",
|
| + "//mojo/common",
|
| + "//mojo/common:tracing_impl",
|
| + "//mojo/environment:chromium",
|
| + "//mojo/converters/geometry",
|
| + "//mojo/public/cpp/bindings:bindings",
|
| + "//mojo/services/surfaces/cpp",
|
| + "//mojo/services/surfaces/interfaces",
|
| + "//mojo/services/ui/views/interfaces",
|
| + ]
|
| +}
|
|
|