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

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

Issue 2811083002: Move frame eviction into components (Closed)
Patch Set: Fix win dbg compile Created 3 years, 8 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 source_set("frame_sinks") { 5 source_set("frame_sinks") {
jbauman 2017/04/13 08:01:42 I think this needs to be a component if you're mak
xing.xu 2017/04/14 03:01:30 Done.
6 defines = [ "VIZ_IMPLEMENTATION" ]
7
6 sources = [ 8 sources = [
7 "display_provider.h", 9 "display_provider.h",
10 "frame_eviction_manager.cc",
11 "frame_eviction_manager.h",
12 "frame_evictor.cc",
13 "frame_evictor.h",
8 "gpu_compositor_frame_sink.cc", 14 "gpu_compositor_frame_sink.cc",
9 "gpu_compositor_frame_sink.h", 15 "gpu_compositor_frame_sink.h",
10 "gpu_compositor_frame_sink_delegate.h", 16 "gpu_compositor_frame_sink_delegate.h",
11 "gpu_root_compositor_frame_sink.cc", 17 "gpu_root_compositor_frame_sink.cc",
12 "gpu_root_compositor_frame_sink.h", 18 "gpu_root_compositor_frame_sink.h",
13 "mojo_frame_sink_manager.cc", 19 "mojo_frame_sink_manager.cc",
14 "mojo_frame_sink_manager.h", 20 "mojo_frame_sink_manager.h",
21 "viz_export.h",
15 ] 22 ]
16 23
17 deps = [ 24 deps = [
18 "//base", 25 "//base",
19 "//cc", 26 "//cc",
20 "//cc/ipc:interfaces", 27 "//cc/ipc:interfaces",
21 "//cc/surfaces", 28 "//cc/surfaces",
22 "//components/display_compositor", 29 "//components/display_compositor",
23 "//gpu/ipc:command_buffer", 30 "//gpu/ipc:command_buffer",
24 ] 31 ]
32
33 if (is_win) {
34 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co m/633312)
35 }
25 } 36 }
OLDNEW
« no previous file with comments | « chrome/browser/task_manager/task_manager_browsertest.cc ('k') | components/viz/frame_sinks/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698