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

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

Issue 2741343003: Update liftetime management of GpuClient (Closed)
Patch Set: missing deps: Created 3 years, 9 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
« no previous file with comments | « no previous file | services/ui/ws/DEPS » ('j') | services/ui/ws/gpu_host.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/catalog/public/tools/catalog.gni") 7 import("//services/catalog/public/tools/catalog.gni")
8 import("//services/service_manager/public/cpp/service.gni") 8 import("//services/service_manager/public/cpp/service.gni")
9 import("//services/service_manager/public/service_manifest.gni") 9 import("//services/service_manager/public/service_manifest.gni")
10 import("//services/service_manager/public/tools/test/service_test.gni") 10 import("//services/service_manager/public/tools/test/service_test.gni")
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 service_test("mus_ws_unittests") { 219 service_test("mus_ws_unittests") {
220 sources = [ 220 sources = [
221 "cursor_location_manager_unittest.cc", 221 "cursor_location_manager_unittest.cc",
222 "cursor_unittest.cc", 222 "cursor_unittest.cc",
223 "display_unittest.cc", 223 "display_unittest.cc",
224 "drag_controller_unittest.cc", 224 "drag_controller_unittest.cc",
225 "event_dispatcher_unittest.cc", 225 "event_dispatcher_unittest.cc",
226 "event_matcher_unittest.cc", 226 "event_matcher_unittest.cc",
227 "focus_controller_unittest.cc", 227 "focus_controller_unittest.cc",
228 "frame_generator_unittest.cc", 228 "frame_generator_unittest.cc",
229 "gpu_host_unittest.cc",
229 "server_window_drawn_tracker_unittest.cc", 230 "server_window_drawn_tracker_unittest.cc",
230 "test_server_window_delegate.cc", 231 "test_server_window_delegate.cc",
231 "test_server_window_delegate.h", 232 "test_server_window_delegate.h",
232 "test_utils.cc", 233 "test_utils.cc",
233 "test_utils.h", 234 "test_utils.h",
234 "transient_windows_unittest.cc", 235 "transient_windows_unittest.cc",
235 "user_activity_monitor_unittest.cc", 236 "user_activity_monitor_unittest.cc",
236 "user_display_manager_unittest.cc", 237 "user_display_manager_unittest.cc",
237 "window_coordinate_conversions_unittest.cc", 238 "window_coordinate_conversions_unittest.cc",
238 "window_finder_unittest.cc", 239 "window_finder_unittest.cc",
(...skipping 18 matching lines...) Expand all
257 "//base/test:test_support", 258 "//base/test:test_support",
258 "//cc:cc", 259 "//cc:cc",
259 "//cc:test_support", 260 "//cc:test_support",
260 "//gpu/ipc/client", 261 "//gpu/ipc/client",
261 "//mojo/public/cpp/bindings:bindings", 262 "//mojo/public/cpp/bindings:bindings",
262 "//services/service_manager/public/cpp:service_test_support", 263 "//services/service_manager/public/cpp:service_test_support",
263 "//services/service_manager/public/cpp:sources", 264 "//services/service_manager/public/cpp:sources",
264 "//services/service_manager/public/interfaces", 265 "//services/service_manager/public/interfaces",
265 "//services/ui/common:mus_common", 266 "//services/ui/common:mus_common",
266 "//services/ui/common:task_runner_test_base", 267 "//services/ui/common:task_runner_test_base",
268 "//services/ui/gpu:gpu",
267 "//services/ui/public/cpp", 269 "//services/ui/public/cpp",
268 "//services/ui/public/interfaces", 270 "//services/ui/public/interfaces",
269 "//testing/gtest", 271 "//testing/gtest",
270 "//third_party/mesa:osmesa", 272 "//third_party/mesa:osmesa",
271 "//ui/aura", 273 "//ui/aura",
272 "//ui/aura:test_support", 274 "//ui/aura:test_support",
273 "//ui/events", 275 "//ui/events",
274 "//ui/gfx", 276 "//ui/gfx",
275 "//ui/gfx:test_support", 277 "//ui/gfx:test_support",
276 "//ui/gfx/geometry", 278 "//ui/gfx/geometry",
277 "//ui/gfx/geometry/mojo", 279 "//ui/gfx/geometry/mojo",
278 "//ui/gl", 280 "//ui/gl",
279 ] 281 ]
280 } 282 }
281 283
282 service_manifest("mus_ws_unittests_app_manifest") { 284 service_manifest("mus_ws_unittests_app_manifest") {
283 name = "mus_ws_unittests_app" 285 name = "mus_ws_unittests_app"
284 source = "mus_ws_unittests_app_manifest.json" 286 source = "mus_ws_unittests_app_manifest.json"
285 } 287 }
286 288
287 catalog("mus_ws_unittests_catalog") { 289 catalog("mus_ws_unittests_catalog") {
288 embedded_services = [ ":mus_ws_unittests_app_manifest" ] 290 embedded_services = [ ":mus_ws_unittests_app_manifest" ]
289 291
290 standalone_services = [ "//services/ui:manifest" ] 292 standalone_services = [ "//services/ui:manifest" ]
291 } 293 }
OLDNEW
« no previous file with comments | « no previous file | services/ui/ws/DEPS » ('j') | services/ui/ws/gpu_host.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698