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 source_set("lib") { | 9 source_set("lib") { |
10 sources = [ | 10 sources = [ |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 ":window_manager_unittests", | 113 ":window_manager_unittests", |
114 "//components/mus/public/cpp/tests:mojo_view_manager_lib_unittests", | 114 "//components/mus/public/cpp/tests:mojo_view_manager_lib_unittests", |
115 ] | 115 ] |
116 } | 116 } |
117 | 117 |
118 test("window_manager_unittests") { | 118 test("window_manager_unittests") { |
119 sources = [ | 119 sources = [ |
120 "event_dispatcher_unittest.cc", | 120 "event_dispatcher_unittest.cc", |
121 "focus_controller_unittest.cc", | 121 "focus_controller_unittest.cc", |
122 "server_window_drawn_tracker_unittest.cc", | 122 "server_window_drawn_tracker_unittest.cc", |
| 123 "server_window_surface_manager_test_api.cc", |
| 124 "server_window_surface_manager_test_api.h", |
123 "test_server_window_delegate.cc", | 125 "test_server_window_delegate.cc", |
124 "test_server_window_delegate.h", | 126 "test_server_window_delegate.h", |
125 "transient_windows_unittest.cc", | 127 "transient_windows_unittest.cc", |
126 "window_coordinate_conversions_unittest.cc", | 128 "window_coordinate_conversions_unittest.cc", |
| 129 "window_finder_unittest.cc", |
127 "window_tree_unittest.cc", | 130 "window_tree_unittest.cc", |
128 ] | 131 ] |
129 | 132 |
130 deps = [ | 133 deps = [ |
131 ":lib", | 134 ":lib", |
132 ":test_support", | 135 ":test_support", |
133 "//base", | 136 "//base", |
134 "//base/test:test_config", | 137 "//base/test:test_config", |
135 "//components/mus/common", | 138 "//components/mus/common", |
136 "//components/mus/public/cpp", | 139 "//components/mus/public/cpp", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 "//ui/gfx:test_support", | 184 "//ui/gfx:test_support", |
182 "//ui/gfx/geometry", | 185 "//ui/gfx/geometry", |
183 "//ui/mojo/geometry:interfaces", | 186 "//ui/mojo/geometry:interfaces", |
184 "//ui/mojo/geometry:util", | 187 "//ui/mojo/geometry:util", |
185 ] | 188 ] |
186 | 189 |
187 data_deps = [ | 190 data_deps = [ |
188 ":lib", | 191 ":lib", |
189 ] | 192 ] |
190 } | 193 } |
OLD | NEW |