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

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

Issue 2661543002: Rename LocalFrameId to LocalSurfaceId (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 | « android_webview/browser/surfaces_instance.cc ('k') | cc/ipc/OWNERS » ('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("//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 27 matching lines...) Expand all
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 "filter_operation.mojom", 45 "filter_operation.mojom",
46 "filter_operations.mojom", 46 "filter_operations.mojom",
47 "frame_sink_id.mojom", 47 "frame_sink_id.mojom",
48 "local_frame_id.mojom", 48 "local_surface_id.mojom",
49 "mojo_compositor_frame_sink.mojom", 49 "mojo_compositor_frame_sink.mojom",
50 "quads.mojom", 50 "quads.mojom",
51 "render_pass.mojom", 51 "render_pass.mojom",
52 "returned_resource.mojom", 52 "returned_resource.mojom",
53 "selection.mojom", 53 "selection.mojom",
54 "shared_quad_state.mojom", 54 "shared_quad_state.mojom",
55 "surface_id.mojom", 55 "surface_id.mojom",
56 "surface_info.mojom", 56 "surface_info.mojom",
57 "surface_reference.mojom", 57 "surface_reference.mojom",
58 "surface_sequence.mojom", 58 "surface_sequence.mojom",
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 cc_source_set("struct_traits") { 97 cc_source_set("struct_traits") {
98 sources = [ 98 sources = [
99 "begin_frame_args_struct_traits.h", 99 "begin_frame_args_struct_traits.h",
100 "compositor_frame_metadata_struct_traits.cc", 100 "compositor_frame_metadata_struct_traits.cc",
101 "compositor_frame_metadata_struct_traits.h", 101 "compositor_frame_metadata_struct_traits.h",
102 "compositor_frame_struct_traits.cc", 102 "compositor_frame_struct_traits.cc",
103 "compositor_frame_struct_traits.h", 103 "compositor_frame_struct_traits.h",
104 "filter_operation_struct_traits.h", 104 "filter_operation_struct_traits.h",
105 "filter_operations_struct_traits.h", 105 "filter_operations_struct_traits.h",
106 "frame_sink_id_struct_traits.h", 106 "frame_sink_id_struct_traits.h",
107 "local_frame_id_struct_traits.h", 107 "local_surface_id_struct_traits.h",
108 "quads_struct_traits.cc", 108 "quads_struct_traits.cc",
109 "quads_struct_traits.h", 109 "quads_struct_traits.h",
110 "render_pass_struct_traits.cc", 110 "render_pass_struct_traits.cc",
111 "render_pass_struct_traits.h", 111 "render_pass_struct_traits.h",
112 "selection_struct_traits.h", 112 "selection_struct_traits.h",
113 "shared_quad_state_struct_traits.h", 113 "shared_quad_state_struct_traits.h",
114 "surface_id_struct_traits.h", 114 "surface_id_struct_traits.h",
115 "surface_info_struct_traits.h", 115 "surface_info_struct_traits.h",
116 "surface_reference_struct_traits.h", 116 "surface_reference_struct_traits.h",
117 "surface_sequence_struct_traits.h", 117 "surface_sequence_struct_traits.h",
118 "transferable_resource_struct_traits.cc", 118 "transferable_resource_struct_traits.cc",
119 "transferable_resource_struct_traits.h", 119 "transferable_resource_struct_traits.h",
120 ] 120 ]
121 public_deps = [ 121 public_deps = [
122 ":interfaces_shared_cpp_sources", 122 ":interfaces_shared_cpp_sources",
123 "//base", 123 "//base",
124 "//cc", 124 "//cc",
125 "//cc/surfaces:surface_id", 125 "//cc/surfaces:surface_id",
126 "//gpu/ipc/common:struct_traits", 126 "//gpu/ipc/common:struct_traits",
127 "//mojo/common:struct_traits", 127 "//mojo/common:struct_traits",
128 "//skia/public/interfaces:struct_traits", 128 "//skia/public/interfaces:struct_traits",
129 "//ui/events:events_base", 129 "//ui/events:events_base",
130 "//ui/events/mojo:struct_traits", 130 "//ui/events/mojo:struct_traits",
131 "//ui/gfx", 131 "//ui/gfx",
132 "//ui/gfx:selection_bound", 132 "//ui/gfx:selection_bound",
133 "//ui/gfx/geometry/mojo:struct_traits", 133 "//ui/gfx/geometry/mojo:struct_traits",
134 "//ui/gfx/mojo:struct_traits", 134 "//ui/gfx/mojo:struct_traits",
135 ] 135 ]
136 } 136 }
OLDNEW
« no previous file with comments | « android_webview/browser/surfaces_instance.cc ('k') | cc/ipc/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698