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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 "gesture_manager_delegate.h", | 83 "gesture_manager_delegate.h", |
84 "scheduled_animation_group.cc", | 84 "scheduled_animation_group.cc", |
85 "scheduled_animation_group.h", | 85 "scheduled_animation_group.h", |
86 "server_view.cc", | 86 "server_view.cc", |
87 "server_view.h", | 87 "server_view.h", |
88 "server_view_delegate.h", | 88 "server_view_delegate.h", |
89 "server_view_drawn_tracker.cc", | 89 "server_view_drawn_tracker.cc", |
90 "server_view_drawn_tracker.h", | 90 "server_view_drawn_tracker.h", |
91 "server_view_drawn_tracker_observer.h", | 91 "server_view_drawn_tracker_observer.h", |
92 "server_view_observer.h", | 92 "server_view_observer.h", |
93 "type_converters.cc", | |
94 "type_converters.h", | |
95 "view_coordinate_conversions.cc", | 93 "view_coordinate_conversions.cc", |
96 "view_coordinate_conversions.h", | 94 "view_coordinate_conversions.h", |
97 "view_locator.cc", | 95 "view_locator.cc", |
98 "view_locator.h", | 96 "view_locator.h", |
99 "view_manager_app.cc", | 97 "view_manager_app.cc", |
100 "view_manager_app.h", | 98 "view_manager_app.h", |
101 "view_manager_root_connection.cc", | 99 "view_manager_root_connection.cc", |
102 "view_manager_root_connection.h", | 100 "view_manager_root_connection.h", |
103 "view_manager_root_delegate.h", | 101 "view_manager_root_delegate.h", |
104 "view_manager_root_impl.cc", | 102 "view_manager_root_impl.cc", |
(...skipping 11 matching lines...) Expand all Loading... |
116 deps = [ | 114 deps = [ |
117 "//base", | 115 "//base", |
118 "//cc/surfaces", | 116 "//cc/surfaces", |
119 "//cc/surfaces:surface_id", | 117 "//cc/surfaces:surface_id", |
120 "//components/view_manager/public/cpp:common", | 118 "//components/view_manager/public/cpp:common", |
121 "//components/view_manager/public/interfaces", | 119 "//components/view_manager/public/interfaces", |
122 "//components/view_manager/native_viewport", | 120 "//components/view_manager/native_viewport", |
123 "//mojo/application/public/cpp", | 121 "//mojo/application/public/cpp", |
124 "//mojo/common:tracing_impl", | 122 "//mojo/common:tracing_impl", |
125 "//mojo/converters/geometry", | 123 "//mojo/converters/geometry", |
| 124 "//mojo/converters/ime", |
126 "//mojo/converters/input_events", | 125 "//mojo/converters/input_events", |
127 "//mojo/converters/surfaces", | 126 "//mojo/converters/surfaces", |
128 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", | 127 "//third_party/mojo/src/mojo/public/cpp/bindings:callback", |
129 "//ui/events", | 128 "//ui/events", |
130 "//ui/events/platform", | 129 "//ui/events/platform", |
131 "//ui/gfx", | 130 "//ui/gfx", |
132 "//ui/gfx/geometry", | 131 "//ui/gfx/geometry", |
133 "//ui/gl:test_support", | 132 "//ui/gl:test_support", |
134 "//ui/mojo/events:interfaces", | 133 "//ui/mojo/events:interfaces", |
135 "//ui/mojo/geometry:interfaces", | 134 "//ui/mojo/geometry:interfaces", |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 "//components/view_manager/public/cpp", | 220 "//components/view_manager/public/cpp", |
222 "//components/view_manager/public/cpp/tests:test_support", | 221 "//components/view_manager/public/cpp/tests:test_support", |
223 "//components/view_manager/public/interfaces", | 222 "//components/view_manager/public/interfaces", |
224 "//mojo/application/public/cpp:test_support", | 223 "//mojo/application/public/cpp:test_support", |
225 "//ui/mojo/geometry:interfaces", | 224 "//ui/mojo/geometry:interfaces", |
226 "//ui/mojo/geometry:util", | 225 "//ui/mojo/geometry:util", |
227 ] | 226 ] |
228 | 227 |
229 data_deps = [ ":view_manager" ] | 228 data_deps = [ ":view_manager" ] |
230 } | 229 } |
OLD | NEW |