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("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 "display_manager_delegate.h", | 54 "display_manager_delegate.h", |
55 "display_manager_factory.h", | 55 "display_manager_factory.h", |
56 "event_dispatcher.cc", | 56 "event_dispatcher.cc", |
57 "event_dispatcher.h", | 57 "event_dispatcher.h", |
58 "focus_controller.cc", | 58 "focus_controller.cc", |
59 "focus_controller.h", | 59 "focus_controller.h", |
60 "focus_controller_delegate.h", | 60 "focus_controller_delegate.h", |
61 "gesture_manager.cc", | 61 "gesture_manager.cc", |
62 "gesture_manager.h", | 62 "gesture_manager.h", |
63 "gesture_manager_delegate.h", | 63 "gesture_manager_delegate.h", |
64 "mus_app.cc", | |
65 "mus_app.h", | |
66 "server_view.cc", | 64 "server_view.cc", |
67 "server_view.h", | 65 "server_view.h", |
68 "server_view_delegate.h", | 66 "server_view_delegate.h", |
69 "server_view_drawn_tracker.cc", | 67 "server_view_drawn_tracker.cc", |
70 "server_view_drawn_tracker.h", | 68 "server_view_drawn_tracker.h", |
71 "server_view_drawn_tracker_observer.h", | 69 "server_view_drawn_tracker_observer.h", |
72 "server_view_observer.h", | 70 "server_view_observer.h", |
73 "view_coordinate_conversions.cc", | 71 "view_coordinate_conversions.cc", |
74 "view_coordinate_conversions.h", | 72 "view_coordinate_conversions.h", |
75 "view_locator.cc", | 73 "view_locator.cc", |
76 "view_locator.h", | 74 "view_locator.h", |
| 75 "view_manager_app.cc", |
| 76 "view_manager_app.h", |
77 "view_tree_host_connection.cc", | 77 "view_tree_host_connection.cc", |
78 "view_tree_host_connection.h", | 78 "view_tree_host_connection.h", |
79 "view_tree_host_delegate.h", | 79 "view_tree_host_delegate.h", |
80 "view_tree_host_impl.cc", | 80 "view_tree_host_impl.cc", |
81 "view_tree_host_impl.h", | 81 "view_tree_host_impl.h", |
82 "view_tree_impl.cc", | 82 "view_tree_impl.cc", |
83 "view_tree_impl.h", | 83 "view_tree_impl.h", |
84 "window_manager_access_policy.cc", | 84 "window_manager_access_policy.cc", |
85 "window_manager_access_policy.h", | 85 "window_manager_access_policy.h", |
86 ] | 86 ] |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 "//components/mus/public/cpp/tests:test_support", | 204 "//components/mus/public/cpp/tests:test_support", |
205 "//components/mus/public/interfaces", | 205 "//components/mus/public/interfaces", |
206 "//mojo/application/public/cpp:sources", | 206 "//mojo/application/public/cpp:sources", |
207 "//mojo/application/public/cpp:test_support", | 207 "//mojo/application/public/cpp:test_support", |
208 "//ui/mojo/geometry:interfaces", | 208 "//ui/mojo/geometry:interfaces", |
209 "//ui/mojo/geometry:util", | 209 "//ui/mojo/geometry:util", |
210 ] | 210 ] |
211 | 211 |
212 data_deps = [ ":mus" ] | 212 data_deps = [ ":mus" ] |
213 } | 213 } |
OLD | NEW |