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("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
8 | 8 |
9 mojo_native_application("view_manager") { | 9 mojo_native_application("view_manager") { |
10 sources = [ | 10 sources = [ |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 "server_view_drawn_tracker_observer.h", | 54 "server_view_drawn_tracker_observer.h", |
55 "server_view_observer.h", | 55 "server_view_observer.h", |
56 "view_coordinate_conversions.cc", | 56 "view_coordinate_conversions.cc", |
57 "view_coordinate_conversions.h", | 57 "view_coordinate_conversions.h", |
58 "view_locator.cc", | 58 "view_locator.cc", |
59 "view_locator.h", | 59 "view_locator.h", |
60 "view_manager_app.cc", | 60 "view_manager_app.cc", |
61 "view_manager_app.h", | 61 "view_manager_app.h", |
62 "view_manager_service_impl.cc", | 62 "view_manager_service_impl.cc", |
63 "view_manager_service_impl.h", | 63 "view_manager_service_impl.h", |
| 64 "window_activation_pre_target_handler.cc", |
| 65 "window_activation_pre_target_handler.h", |
| 66 "window_activation_pre_target_handler_observer.cc", |
| 67 "window_activation_pre_target_handler_observer.h", |
64 "window_manager_access_policy.cc", | 68 "window_manager_access_policy.cc", |
65 "window_manager_access_policy.h", | 69 "window_manager_access_policy.h", |
66 ] | 70 ] |
67 | 71 |
68 public_deps = [ | 72 public_deps = [ |
69 "//components/view_manager/public/cpp", | 73 "//components/view_manager/public/cpp", |
70 ] | 74 ] |
71 | 75 |
72 deps = [ | 76 deps = [ |
73 "//base", | 77 "//base", |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 "//base/test:test_config", | 178 "//base/test:test_config", |
175 "//components/view_manager/public/cpp", | 179 "//components/view_manager/public/cpp", |
176 "//components/view_manager/public/interfaces", | 180 "//components/view_manager/public/interfaces", |
177 "//mojo/application/public/cpp:test_support", | 181 "//mojo/application/public/cpp:test_support", |
178 "//ui/mojo/geometry:interfaces", | 182 "//ui/mojo/geometry:interfaces", |
179 "//ui/mojo/geometry:util", | 183 "//ui/mojo/geometry:util", |
180 ] | 184 ] |
181 | 185 |
182 data_deps = [ ":view_manager" ] | 186 data_deps = [ ":view_manager" ] |
183 } | 187 } |
OLD | NEW |