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

Side by Side Diff: cc/surfaces/BUILD.gn

Issue 2537343004: Add SurfaceReference class. (Closed)
Patch Set: Fixes. Created 4 years 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 | « cc/ipc/typemaps.gni ('k') | cc/surfaces/DEPS » ('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 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("//cc/cc.gni") 5 import("//cc/cc.gni")
6 6
7 cc_source_set("surface_id") { 7 cc_source_set("surface_id") {
8 sources = [ 8 sources = [
9 "frame_sink_id.cc", 9 "frame_sink_id.cc",
10 "frame_sink_id.h", 10 "frame_sink_id.h",
11 "local_frame_id.cc", 11 "local_frame_id.cc",
12 "local_frame_id.h", 12 "local_frame_id.h",
13 "surface_id.cc", 13 "surface_id.cc",
14 "surface_id.h", 14 "surface_id.h",
15 "surface_reference.cc",
16 "surface_reference.h",
15 "surface_sequence.h", 17 "surface_sequence.h",
16 "surface_sequence_generator.cc", 18 "surface_sequence_generator.cc",
17 "surface_sequence_generator.h", 19 "surface_sequence_generator.h",
18 ] 20 ]
19 21
20 deps = [ 22 deps = [
21 "//base", 23 "//base",
24 "//mojo/public/cpp/bindings:struct_traits",
22 ] 25 ]
23 } 26 }
24 27
25 cc_component("surfaces") { 28 cc_component("surfaces") {
26 output_name = "cc_surfaces" 29 output_name = "cc_surfaces"
27 sources = [ 30 sources = [
28 "direct_compositor_frame_sink.cc", 31 "direct_compositor_frame_sink.cc",
29 "direct_compositor_frame_sink.h", 32 "direct_compositor_frame_sink.h",
30 "display.cc", 33 "display.cc",
31 "display.h", 34 "display.h",
(...skipping 30 matching lines...) Expand all
62 "//base/third_party/dynamic_annotations", 65 "//base/third_party/dynamic_annotations",
63 "//cc", 66 "//cc",
64 "//gpu/command_buffer/client:gles2_interface", 67 "//gpu/command_buffer/client:gles2_interface",
65 "//gpu/command_buffer/common", 68 "//gpu/command_buffer/common",
66 "//skia", 69 "//skia",
67 "//ui/events:events_base", 70 "//ui/events:events_base",
68 "//ui/gfx", 71 "//ui/gfx",
69 "//ui/gfx/geometry", 72 "//ui/gfx/geometry",
70 ] 73 ]
71 } 74 }
OLDNEW
« no previous file with comments | « cc/ipc/typemaps.gni ('k') | cc/surfaces/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698