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 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 mojo_native_application("view_manager") { | 9 mojo_native_application("view_manager") { |
10 sources = [ | 10 sources = [ |
(...skipping 29 matching lines...) Expand all Loading... |
40 "connection_manager_delegate.h", | 40 "connection_manager_delegate.h", |
41 "default_access_policy.cc", | 41 "default_access_policy.cc", |
42 "default_access_policy.h", | 42 "default_access_policy.h", |
43 "display_manager.cc", | 43 "display_manager.cc", |
44 "display_manager.h", | 44 "display_manager.h", |
45 "scheduled_animation_group.cc", | 45 "scheduled_animation_group.cc", |
46 "scheduled_animation_group.h", | 46 "scheduled_animation_group.h", |
47 "server_view.cc", | 47 "server_view.cc", |
48 "server_view.h", | 48 "server_view.h", |
49 "server_view_delegate.h", | 49 "server_view_delegate.h", |
| 50 "server_view_observer.h", |
50 "view_coordinate_conversions.cc", | 51 "view_coordinate_conversions.cc", |
51 "view_coordinate_conversions.h", | 52 "view_coordinate_conversions.h", |
52 "view_manager_service_impl.cc", | 53 "view_manager_service_impl.cc", |
53 "view_manager_service_impl.h", | 54 "view_manager_service_impl.h", |
54 "window_manager_access_policy.cc", | 55 "window_manager_access_policy.cc", |
55 "window_manager_access_policy.h", | 56 "window_manager_access_policy.h", |
56 ] | 57 ] |
57 | 58 |
58 public_deps = [ | 59 public_deps = [ |
59 "//mojo/services/view_manager/public/cpp", | 60 "//mojo/services/view_manager/public/cpp", |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 "//mojo/application", | 171 "//mojo/application", |
171 "//mojo/application:test_support", | 172 "//mojo/application:test_support", |
172 "//mojo/common", | 173 "//mojo/common", |
173 "//mojo/public/cpp/bindings", | 174 "//mojo/public/cpp/bindings", |
174 "//mojo/services/geometry/public/interfaces", | 175 "//mojo/services/geometry/public/interfaces", |
175 "//mojo/services/view_manager/public/cpp", | 176 "//mojo/services/view_manager/public/cpp", |
176 "//mojo/services/view_manager/public/interfaces", | 177 "//mojo/services/view_manager/public/interfaces", |
177 "//mojo/services/window_manager/public/interfaces", | 178 "//mojo/services/window_manager/public/interfaces", |
178 ] | 179 ] |
179 } | 180 } |
OLD | NEW |