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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "view_coordinate_conversions.h", | 77 "view_coordinate_conversions.h", |
78 "view_locator.cc", | 78 "view_locator.cc", |
79 "view_locator.h", | 79 "view_locator.h", |
80 "view_manager_app.cc", | 80 "view_manager_app.cc", |
81 "view_manager_app.h", | 81 "view_manager_app.h", |
82 "view_manager_root_connection.cc", | 82 "view_manager_root_connection.cc", |
83 "view_manager_root_connection.h", | 83 "view_manager_root_connection.h", |
84 "view_manager_root_delegate.h", | 84 "view_manager_root_delegate.h", |
85 "view_manager_root_impl.cc", | 85 "view_manager_root_impl.cc", |
86 "view_manager_root_impl.h", | 86 "view_manager_root_impl.h", |
87 "view_manager_service_impl.cc", | 87 "view_tree_impl.cc", |
88 "view_manager_service_impl.h", | 88 "view_tree_impl.h", |
89 "window_manager_access_policy.cc", | 89 "window_manager_access_policy.cc", |
90 "window_manager_access_policy.h", | 90 "window_manager_access_policy.h", |
91 ] | 91 ] |
92 | 92 |
93 public_deps = [ | 93 public_deps = [ |
94 "//components/view_manager/public/cpp", | 94 "//components/view_manager/public/cpp", |
95 ] | 95 ] |
96 | 96 |
97 deps = [ | 97 deps = [ |
98 "//base", | 98 "//base", |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 test("view_manager_unittests") { | 154 test("view_manager_unittests") { |
155 sources = [ | 155 sources = [ |
156 "animation_runner_unittest.cc", | 156 "animation_runner_unittest.cc", |
157 "focus_controller_unittest.cc", | 157 "focus_controller_unittest.cc", |
158 "gesture_manager_unittest.cc", | 158 "gesture_manager_unittest.cc", |
159 "scheduled_animation_group_unittest.cc", | 159 "scheduled_animation_group_unittest.cc", |
160 "server_view_drawn_tracker_unittest.cc", | 160 "server_view_drawn_tracker_unittest.cc", |
161 "test_server_view_delegate.cc", | 161 "test_server_view_delegate.cc", |
162 "test_server_view_delegate.h", | 162 "test_server_view_delegate.h", |
163 "view_coordinate_conversions_unittest.cc", | 163 "view_coordinate_conversions_unittest.cc", |
164 "view_manager_service_unittest.cc", | 164 "view_tree_unittest.cc", |
165 ] | 165 ] |
166 | 166 |
167 deps = [ | 167 deps = [ |
168 ":test_support", | 168 ":test_support", |
169 ":lib", | 169 ":lib", |
170 "//base", | 170 "//base", |
171 "//base/test:test_config", | 171 "//base/test:test_config", |
172 "//components/view_manager/public/cpp:common", | 172 "//components/view_manager/public/cpp:common", |
173 "//components/view_manager/public/interfaces", | 173 "//components/view_manager/public/interfaces", |
174 "//components/view_manager/surfaces", | 174 "//components/view_manager/surfaces", |
(...skipping 17 matching lines...) Expand all Loading... |
192 deps += [ "//third_party/mesa:osmesa" ] | 192 deps += [ "//third_party/mesa:osmesa" ] |
193 } | 193 } |
194 } | 194 } |
195 | 195 |
196 mojo_native_application("apptests") { | 196 mojo_native_application("apptests") { |
197 output_name = "view_manager_apptests" | 197 output_name = "view_manager_apptests" |
198 testonly = true | 198 testonly = true |
199 | 199 |
200 sources = [ | 200 sources = [ |
201 "view_manager_client_apptest.cc", | 201 "view_manager_client_apptest.cc", |
202 "view_manager_service_apptest.cc", | 202 "view_tree_apptest.cc", |
203 ] | 203 ] |
204 | 204 |
205 deps = [ | 205 deps = [ |
206 ":test_support", | 206 ":test_support", |
207 "//base", | 207 "//base", |
208 "//base/test:test_config", | 208 "//base/test:test_config", |
209 "//components/view_manager/public/cpp", | 209 "//components/view_manager/public/cpp", |
210 "//components/view_manager/public/cpp/tests:test_support", | 210 "//components/view_manager/public/cpp/tests:test_support", |
211 "//components/view_manager/public/interfaces", | 211 "//components/view_manager/public/interfaces", |
212 "//mojo/application/public/cpp:sources", | 212 "//mojo/application/public/cpp:sources", |
213 "//mojo/application/public/cpp:test_support", | 213 "//mojo/application/public/cpp:test_support", |
214 "//ui/mojo/geometry:interfaces", | 214 "//ui/mojo/geometry:interfaces", |
215 "//ui/mojo/geometry:util", | 215 "//ui/mojo/geometry:util", |
216 ] | 216 ] |
217 | 217 |
218 data_deps = [ ":view_manager" ] | 218 data_deps = [ ":view_manager" ] |
219 } | 219 } |
OLD | NEW |