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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 shared_library("view_manager") { | 7 shared_library("view_manager") { |
8 sources = [ | 8 sources = [ |
9 "main.cc", | 9 "main.cc", |
10 ] | 10 ] |
11 | 11 |
12 deps = [ | 12 deps = [ |
13 ":view_manager_lib", | 13 ":view_manager_lib", |
14 "//mojo/application", | 14 "//mojo/application", |
15 "//mojo/environment:chromium", | 15 "//mojo/environment:chromium", |
16 "//mojo/public/c/system:for_shared_library", | 16 "//mojo/public/c/system:for_shared_library", |
17 ] | 17 ] |
18 } | 18 } |
19 | 19 |
20 source_set("view_manager_lib") { | 20 source_set("view_manager_lib") { |
21 sources = [ | 21 sources = [ |
22 "access_policy.h", | 22 "access_policy.h", |
23 "access_policy_delegate.h", | 23 "access_policy_delegate.h", |
| 24 "client_connection.cc", |
| 25 "client_connection.h", |
24 "connection_manager.cc", | 26 "connection_manager.cc", |
25 "connection_manager.h", | 27 "connection_manager.h", |
26 "connection_manager_delegate.h", | 28 "connection_manager_delegate.h", |
27 "default_access_policy.cc", | 29 "default_access_policy.cc", |
28 "default_access_policy.h", | 30 "default_access_policy.h", |
29 "display_manager.cc", | 31 "display_manager.cc", |
30 "display_manager.h", | 32 "display_manager.h", |
31 "server_view.cc", | 33 "server_view.cc", |
32 "server_view.h", | 34 "server_view.h", |
33 "server_view_delegate.h", | 35 "server_view_delegate.h", |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 "//mojo/application", | 109 "//mojo/application", |
108 "//mojo/application:test_support", | 110 "//mojo/application:test_support", |
109 "//mojo/common", | 111 "//mojo/common", |
110 "//mojo/public/c/system:for_shared_library", | 112 "//mojo/public/c/system:for_shared_library", |
111 "//mojo/public/cpp/bindings", | 113 "//mojo/public/cpp/bindings", |
112 "//mojo/services/public/interfaces/geometry", | 114 "//mojo/services/public/interfaces/geometry", |
113 "//mojo/services/public/interfaces/view_manager", | 115 "//mojo/services/public/interfaces/view_manager", |
114 "//mojo/services/public/interfaces/window_manager", | 116 "//mojo/services/public/interfaces/window_manager", |
115 ] | 117 ] |
116 } | 118 } |
OLD | NEW |