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("//mojo/system.gni") | 5 import("//mojo/system.gni") |
6 | 6 |
7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager | 7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager |
8 component("view_manager") { | 8 component("view_manager") { |
9 deps = [ | 9 deps = [ |
10 "//base", | 10 "//base", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "view_manager_init_service_impl.cc", | 61 "view_manager_init_service_impl.cc", |
62 "view_manager_init_service_impl.h", | 62 "view_manager_init_service_impl.h", |
63 "view_manager_service_impl.cc", | 63 "view_manager_service_impl.cc", |
64 "view_manager_service_impl.h", | 64 "view_manager_service_impl.h", |
65 "window_manager_access_policy.cc", | 65 "window_manager_access_policy.cc", |
66 "window_manager_access_policy.h", | 66 "window_manager_access_policy.h", |
67 "window_tree_host_impl.cc", | 67 "window_tree_host_impl.cc", |
68 "window_tree_host_impl.h", | 68 "window_tree_host_impl.h", |
69 ] | 69 ] |
70 } | 70 } |
| 71 |
| 72 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_unittests |
| 73 test("mojo_view_manager_unittests") { |
| 74 deps = [ |
| 75 "//base", |
| 76 "//base/test:test_support", |
| 77 "//mojo/application_manager", |
| 78 "//mojo/environment:chromium", |
| 79 "//mojo/public/cpp/application:chromium", |
| 80 "//mojo/services/public/cpp/input_events", |
| 81 "//mojo/services/public/cpp/geometry", |
| 82 "//mojo/services/public/cpp/view_manager", |
| 83 "//mojo/services/public/cpp/view_manager/lib:run_unittests", |
| 84 "//mojo/services/public/cpp/view_manager:common", |
| 85 "//mojo/services/public/interfaces/input_events", |
| 86 "//mojo/services/public/interfaces/geometry", |
| 87 "//mojo/services/public/interfaces/view_manager", |
| 88 "//mojo/shell:test_support", |
| 89 "//mojo/system", |
| 90 "//skia", |
| 91 "//testing/gtest", |
| 92 "//ui/aura", |
| 93 "//ui/gfx/geometry", |
| 94 "//ui/gl", |
| 95 ] |
| 96 |
| 97 sources = [ |
| 98 "test_change_tracker.cc", |
| 99 "test_change_tracker.h", |
| 100 "view_manager_unittest.cc", |
| 101 ] |
| 102 } |
OLD | NEW |