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

Side by Side Diff: components/viz/frame_sinks/BUILD.gn

Issue 2873243002: Move components/display_compositor to components/viz/display_compositor (Closed)
Patch Set: Rebase Created 3 years, 7 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 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 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 component("frame_sinks") { 5 component("frame_sinks") {
6 defines = [ "VIZ_IMPLEMENTATION" ] 6 defines = [ "VIZ_IMPLEMENTATION" ]
7 7
8 sources = [ 8 sources = [
9 "display_provider.h", 9 "display_provider.h",
10 "frame_eviction_manager.cc", 10 "frame_eviction_manager.cc",
11 "frame_eviction_manager.h", 11 "frame_eviction_manager.h",
12 "frame_evictor.cc", 12 "frame_evictor.cc",
13 "frame_evictor.h", 13 "frame_evictor.h",
14 "gpu_compositor_frame_sink.cc", 14 "gpu_compositor_frame_sink.cc",
15 "gpu_compositor_frame_sink.h", 15 "gpu_compositor_frame_sink.h",
16 "gpu_compositor_frame_sink_delegate.h", 16 "gpu_compositor_frame_sink_delegate.h",
17 "gpu_root_compositor_frame_sink.cc", 17 "gpu_root_compositor_frame_sink.cc",
18 "gpu_root_compositor_frame_sink.h", 18 "gpu_root_compositor_frame_sink.h",
19 "mojo_frame_sink_manager.cc", 19 "mojo_frame_sink_manager.cc",
20 "mojo_frame_sink_manager.h", 20 "mojo_frame_sink_manager.h",
21 "viz_export.h",
22 ] 21 ]
23 22
24 deps = [ 23 deps = [
25 "//base", 24 "//base",
26 "//cc", 25 "//cc",
27 "//cc/ipc:interfaces", 26 "//cc/ipc:interfaces",
28 "//cc/surfaces", 27 "//cc/surfaces",
29 "//components/display_compositor", 28 "//components/viz/display_compositor",
30 "//gpu/ipc:command_buffer", 29 "//gpu/ipc:command_buffer",
31 ] 30 ]
32 31
33 if (is_win) { 32 if (is_win) {
34 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co m/633312) 33 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co m/633312)
35 } 34 }
36 } 35 }
OLDNEW
« no previous file with comments | « components/viz/display_compositor/yuv_readback_unittest.cc ('k') | components/viz/frame_sinks/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698