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

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

Issue 2659703002: Implemented StructTraits for cc::CopyOutputResult (Closed)
Patch Set: c Created 3 years, 10 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 | cc/ipc/copy_output_result.mojom » ('j') | cc/ipc/copy_output_result.typemap » ('J')
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("//cc/cc.gni") 6 import("//cc/cc.gni")
7 import("//mojo/public/tools/bindings/mojom.gni") 7 import("//mojo/public/tools/bindings/mojom.gni")
8 8
9 cc_component("ipc") { 9 cc_component("ipc") {
10 output_name = "cc_ipc" 10 output_name = "cc_ipc"
(...skipping 25 matching lines...) Expand all
36 "//ui/gfx/ipc/skia", 36 "//ui/gfx/ipc/skia",
37 ] 37 ]
38 } 38 }
39 39
40 mojom("interfaces") { 40 mojom("interfaces") {
41 sources = [ 41 sources = [
42 "begin_frame_args.mojom", 42 "begin_frame_args.mojom",
43 "compositor_frame.mojom", 43 "compositor_frame.mojom",
44 "compositor_frame_metadata.mojom", 44 "compositor_frame_metadata.mojom",
45 "copy_output_request.mojom", 45 "copy_output_request.mojom",
46 "copy_output_result.mojom",
46 "filter_operation.mojom", 47 "filter_operation.mojom",
47 "filter_operations.mojom", 48 "filter_operations.mojom",
48 "frame_sink_id.mojom", 49 "frame_sink_id.mojom",
49 "local_surface_id.mojom", 50 "local_surface_id.mojom",
50 "mojo_compositor_frame_sink.mojom", 51 "mojo_compositor_frame_sink.mojom",
51 "quads.mojom", 52 "quads.mojom",
52 "render_pass.mojom", 53 "render_pass.mojom",
53 "returned_resource.mojom", 54 "returned_resource.mojom",
54 "selection.mojom", 55 "selection.mojom",
55 "shared_quad_state.mojom", 56 "shared_quad_state.mojom",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 ] 97 ]
97 } 98 }
98 99
99 cc_source_set("struct_traits") { 100 cc_source_set("struct_traits") {
100 sources = [ 101 sources = [
101 "begin_frame_args_struct_traits.h", 102 "begin_frame_args_struct_traits.h",
102 "compositor_frame_metadata_struct_traits.cc", 103 "compositor_frame_metadata_struct_traits.cc",
103 "compositor_frame_metadata_struct_traits.h", 104 "compositor_frame_metadata_struct_traits.h",
104 "compositor_frame_struct_traits.cc", 105 "compositor_frame_struct_traits.cc",
105 "compositor_frame_struct_traits.h", 106 "compositor_frame_struct_traits.h",
107 "copy_output_result_struct_traits.cc",
108 "copy_output_result_struct_traits.h",
106 "filter_operation_struct_traits.h", 109 "filter_operation_struct_traits.h",
107 "filter_operations_struct_traits.h", 110 "filter_operations_struct_traits.h",
108 "frame_sink_id_struct_traits.h", 111 "frame_sink_id_struct_traits.h",
109 "local_surface_id_struct_traits.h", 112 "local_surface_id_struct_traits.h",
110 "quads_struct_traits.cc", 113 "quads_struct_traits.cc",
111 "quads_struct_traits.h", 114 "quads_struct_traits.h",
112 "render_pass_struct_traits.cc", 115 "render_pass_struct_traits.cc",
113 "render_pass_struct_traits.h", 116 "render_pass_struct_traits.h",
114 "selection_struct_traits.h", 117 "selection_struct_traits.h",
115 "shared_quad_state_struct_traits.h", 118 "shared_quad_state_struct_traits.h",
116 "surface_id_struct_traits.h", 119 "surface_id_struct_traits.h",
117 "surface_info_struct_traits.h", 120 "surface_info_struct_traits.h",
118 "surface_reference_struct_traits.h", 121 "surface_reference_struct_traits.h",
119 "surface_sequence_struct_traits.h", 122 "surface_sequence_struct_traits.h",
123 "texture_mailbox_struct_traits.h",
120 "transferable_resource_struct_traits.cc", 124 "transferable_resource_struct_traits.cc",
121 "transferable_resource_struct_traits.h", 125 "transferable_resource_struct_traits.h",
122 ] 126 ]
123 public_deps = [ 127 public_deps = [
124 ":interfaces_shared_cpp_sources", 128 ":interfaces_shared_cpp_sources",
125 "//base", 129 "//base",
126 "//cc", 130 "//cc",
127 "//cc/surfaces:surface_id", 131 "//cc/surfaces:surface_id",
128 "//gpu/ipc/common:struct_traits", 132 "//gpu/ipc/common:struct_traits",
129 "//mojo/common:struct_traits", 133 "//mojo/common:struct_traits",
134 "//skia/public/interfaces:interfaces",
Ken Rockot(use gerrit already) 2017/02/01 16:04:55 nit: "//foo/bar" implies "//foo/bar:bar" so ":inte
Saman Sami 2017/02/01 17:19:40 Done.
130 "//skia/public/interfaces:struct_traits", 135 "//skia/public/interfaces:struct_traits",
131 "//ui/events:events_base", 136 "//ui/events:events_base",
132 "//ui/events/mojo:struct_traits", 137 "//ui/events/mojo:struct_traits",
133 "//ui/gfx", 138 "//ui/gfx",
134 "//ui/gfx:selection_bound", 139 "//ui/gfx:selection_bound",
135 "//ui/gfx/geometry/mojo:struct_traits", 140 "//ui/gfx/geometry/mojo:struct_traits",
141 "//ui/gfx/mojo:mojo",
136 "//ui/gfx/mojo:struct_traits", 142 "//ui/gfx/mojo:struct_traits",
137 ] 143 ]
138 } 144 }
OLDNEW
« no previous file with comments | « no previous file | cc/ipc/copy_output_result.mojom » ('j') | cc/ipc/copy_output_result.typemap » ('J')

Powered by Google App Engine
This is Rietveld 408576698