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

Side by Side Diff: services/ui/gpu/display_compositor/BUILD.gn

Issue 2344183002: Move part of display_compositor's interface to cc/ipc (Closed)
Patch Set: Created 4 years, 3 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 6
7 source_set("display_compositor") { 7 source_set("display_compositor") {
8 sources = [ 8 sources = [
9 "compositor_frame_sink_delegate.h", 9 "compositor_frame_sink_delegate.h",
10 "compositor_frame_sink_factory_impl.cc", 10 "compositor_frame_sink_factory_impl.cc",
11 "compositor_frame_sink_factory_impl.h", 11 "compositor_frame_sink_factory_impl.h",
12 "compositor_frame_sink_impl.cc", 12 "compositor_frame_sink_impl.cc",
13 "compositor_frame_sink_impl.h", 13 "compositor_frame_sink_impl.h",
14 "display_compositor_impl.cc", 14 "display_compositor_impl.cc",
15 "display_compositor_impl.h", 15 "display_compositor_impl.h",
16 "display_impl.cc", 16 "display_impl.cc",
17 "display_impl.h", 17 "display_impl.h",
18 ] 18 ]
19 19
20 deps = [ 20 deps = [
21 "//base", 21 "//base",
22 "//cc", 22 "//cc",
23 "//cc/ipc:interfaces",
23 "//cc/surfaces", 24 "//cc/surfaces",
24 "//cc/surfaces:surface_id", 25 "//cc/surfaces:surface_id",
25 "//services/ui/public/interfaces/gpu:interfaces", 26 "//services/ui/public/interfaces/gpu:interfaces",
26 27
27 # TODO(fsamuel): Remove this dependency. 28 # TODO(fsamuel): Remove this dependency.
28 "//services/ui/surfaces", 29 "//services/ui/surfaces",
29 ] 30 ]
30 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698