Chromium Code Reviews| 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..e479dbadab1610f842fc9fdcd3e55c2f6f170e1b |
| --- /dev/null |
| +++ b/services/ui/view_manager/BUILD.gn |
| @@ -0,0 +1,43 @@ |
| +# 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_service") { |
|
jamesr
2015/10/26 18:18:41
nit: the GN target name here is redundant
//servi
jeffbrown
2015/10/27 01:52:11
Done.
|
| + 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", |
| + ] |
| +} |