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

Side by Side Diff: components/display_compositor/BUILD.gn

Issue 2795823003: Create //components/viz/frame_sinks and move code. (Closed)
Patch Set: Fix DEPS. 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
« no previous file with comments | « no previous file | components/display_compositor/gpu_compositor_frame_sink.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("display_compositor") { 8 component("display_compositor") {
9 sources = [ 9 sources = [
10 "buffer_queue.cc", 10 "buffer_queue.cc",
11 "buffer_queue.h", 11 "buffer_queue.h",
12 "compositor_overlay_candidate_validator.h", 12 "compositor_overlay_candidate_validator.h",
13 "display_compositor_export.h", 13 "display_compositor_export.h",
14 "gl_helper.cc", 14 "gl_helper.cc",
15 "gl_helper.h", 15 "gl_helper.h",
16 "gl_helper_readback_support.cc", 16 "gl_helper_readback_support.cc",
17 "gl_helper_readback_support.h", 17 "gl_helper_readback_support.h",
18 "gl_helper_scaling.cc", 18 "gl_helper_scaling.cc",
19 "gl_helper_scaling.h", 19 "gl_helper_scaling.h",
20 "gpu_compositor_frame_sink.cc",
21 "gpu_compositor_frame_sink.h",
22 "gpu_compositor_frame_sink_delegate.h",
23 "gpu_root_compositor_frame_sink.cc",
24 "gpu_root_compositor_frame_sink.h",
25 ] 20 ]
26 21
27 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 22 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
28 23
29 defines = [ "DISPLAY_COMPOSITOR_IMPLEMENTATION" ] 24 defines = [ "DISPLAY_COMPOSITOR_IMPLEMENTATION" ]
30 25
31 deps = [ 26 deps = [
32 "//base", 27 "//base",
33 "//cc", 28 "//cc",
34 "//cc/ipc:interfaces", 29 "//cc/ipc:interfaces",
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 "//skia", 164 "//skia",
170 "//testing/gmock", 165 "//testing/gmock",
171 "//testing/gtest", 166 "//testing/gtest",
172 "//ui/gl:test_support", 167 "//ui/gl:test_support",
173 ] 168 ]
174 169
175 data_deps = [ 170 data_deps = [
176 "//third_party/mesa:osmesa", 171 "//third_party/mesa:osmesa",
177 ] 172 ]
178 } 173 }
OLDNEW
« no previous file with comments | « no previous file | components/display_compositor/gpu_compositor_frame_sink.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698