Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(349)

Side by Side Diff: services/ui/ws/BUILD.gn

Issue 2610063007: Separate client surface reference tracking from FrameGenerator. (Closed)
Patch Set: Cleanup tests. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//services/service_manager/public/cpp/service.gni") 7 import("//services/service_manager/public/cpp/service.gni")
8 import("//services/service_manager/public/service_manifest.gni") 8 import("//services/service_manager/public/service_manifest.gni")
9 9
10 static_library("lib") { 10 static_library("lib") {
(...skipping 10 matching lines...) Expand all
21 "display.h", 21 "display.h",
22 "display_binding.cc", 22 "display_binding.cc",
23 "display_binding.h", 23 "display_binding.h",
24 "display_manager.cc", 24 "display_manager.cc",
25 "display_manager.h", 25 "display_manager.h",
26 "drag_controller.cc", 26 "drag_controller.cc",
27 "drag_controller.h", 27 "drag_controller.h",
28 "drag_cursor_updater.h", 28 "drag_cursor_updater.h",
29 "drag_source.h", 29 "drag_source.h",
30 "drag_target_connection.h", 30 "drag_target_connection.h",
31 "embedded_surface_tracker.cc",
32 "embedded_surface_tracker.h",
31 "event_dispatcher.cc", 33 "event_dispatcher.cc",
32 "event_dispatcher.h", 34 "event_dispatcher.h",
33 "event_dispatcher_delegate.h", 35 "event_dispatcher_delegate.h",
34 "event_matcher.cc", 36 "event_matcher.cc",
35 "event_matcher.h", 37 "event_matcher.h",
36 "focus_controller.cc", 38 "focus_controller.cc",
37 "focus_controller.h", 39 "focus_controller.h",
38 "focus_controller_delegate.h", 40 "focus_controller_delegate.h",
39 "focus_controller_observer.h", 41 "focus_controller_observer.h",
40 "frame_generator.cc", 42 "frame_generator.cc",
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 } 204 }
203 } 205 }
204 206
205 test("mus_ws_unittests") { 207 test("mus_ws_unittests") {
206 sources = [ 208 sources = [
207 # TODO(fsamuel): Move this test with DisplayCompositor. crbug.com/670454 209 # TODO(fsamuel): Move this test with DisplayCompositor. crbug.com/670454
208 "../surfaces/display_compositor_unittest.cc", 210 "../surfaces/display_compositor_unittest.cc",
209 "cursor_unittest.cc", 211 "cursor_unittest.cc",
210 "display_unittest.cc", 212 "display_unittest.cc",
211 "drag_controller_unittest.cc", 213 "drag_controller_unittest.cc",
214 "embedded_surface_tracker_unittest.cc",
212 "event_dispatcher_unittest.cc", 215 "event_dispatcher_unittest.cc",
213 "event_matcher_unittest.cc", 216 "event_matcher_unittest.cc",
214 "focus_controller_unittest.cc", 217 "focus_controller_unittest.cc",
215 "frame_generator_unittest.cc", 218 "frame_generator_unittest.cc",
216 "server_window_compositor_frame_sink_manager_test_api.cc", 219 "server_window_compositor_frame_sink_manager_test_api.cc",
217 "server_window_compositor_frame_sink_manager_test_api.h", 220 "server_window_compositor_frame_sink_manager_test_api.h",
218 "server_window_drawn_tracker_unittest.cc", 221 "server_window_drawn_tracker_unittest.cc",
219 "test_server_window_delegate.cc", 222 "test_server_window_delegate.cc",
220 "test_server_window_delegate.h", 223 "test_server_window_delegate.h",
221 "test_utils.cc", 224 "test_utils.cc",
(...skipping 20 matching lines...) Expand all
242 "//mojo/public/cpp/bindings:bindings", 245 "//mojo/public/cpp/bindings:bindings",
243 "//services/service_manager/public/cpp:service_test_support", 246 "//services/service_manager/public/cpp:service_test_support",
244 "//services/service_manager/public/cpp:sources", 247 "//services/service_manager/public/cpp:sources",
245 "//services/service_manager/public/cpp/test:run_all_service_tests", 248 "//services/service_manager/public/cpp/test:run_all_service_tests",
246 "//services/service_manager/public/interfaces", 249 "//services/service_manager/public/interfaces",
247 "//services/ui/common:mus_common", 250 "//services/ui/common:mus_common",
248 "//services/ui/common:task_runner_test_base", 251 "//services/ui/common:task_runner_test_base",
249 "//services/ui/public/cpp", 252 "//services/ui/public/cpp",
250 "//services/ui/public/cpp:internal_or_test", 253 "//services/ui/public/cpp:internal_or_test",
251 "//services/ui/public/interfaces", 254 "//services/ui/public/interfaces",
255 "//testing/gmock",
252 "//testing/gtest", 256 "//testing/gtest",
253 "//third_party/mesa:osmesa", 257 "//third_party/mesa:osmesa",
254 "//ui/aura", 258 "//ui/aura",
255 "//ui/aura:test_support", 259 "//ui/aura:test_support",
256 "//ui/events", 260 "//ui/events",
257 "//ui/gfx", 261 "//ui/gfx",
258 "//ui/gfx:test_support", 262 "//ui/gfx:test_support",
259 "//ui/gfx/geometry", 263 "//ui/gfx/geometry",
260 "//ui/gfx/geometry/mojo", 264 "//ui/gfx/geometry/mojo",
261 "//ui/gl", 265 "//ui/gl",
262 ] 266 ]
263 267
264 # TODO(fsamuel): Remove this dep. crbug.com/670454 268 # TODO(fsamuel): Remove this dep. crbug.com/670454
265 deps += [ "//services/ui/surfaces" ] 269 deps += [ "//services/ui/surfaces" ]
266 270
267 data_deps = [ 271 data_deps = [
268 ":mus_ws_unittests_app_manifest", 272 ":mus_ws_unittests_app_manifest",
269 ] 273 ]
270 } 274 }
271 275
272 service_manifest("mus_ws_unittests_app_manifest") { 276 service_manifest("mus_ws_unittests_app_manifest") {
273 name = "mus_ws_unittests_app" 277 name = "mus_ws_unittests_app"
274 source = "mus_ws_unittests_app_manifest.json" 278 source = "mus_ws_unittests_app_manifest.json"
275 } 279 }
OLDNEW
« no previous file with comments | « no previous file | services/ui/ws/embedded_surface_tracker.h » ('j') | services/ui/ws/embedded_surface_tracker.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698