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

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

Issue 2388753003: Introduce cc::LocalFrameId and use in SurfaceFactory (Closed)
Patch Set: Fix exo_unittests Created 4 years, 2 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 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("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 7
8 component("ipc") { 8 component("ipc") {
9 output_name = "cc_ipc" 9 output_name = "cc_ipc"
10 10
(...skipping 26 matching lines...) Expand all
37 } 37 }
38 38
39 mojom("interfaces") { 39 mojom("interfaces") {
40 sources = [ 40 sources = [
41 "begin_frame_args.mojom", 41 "begin_frame_args.mojom",
42 "compositor_frame.mojom", 42 "compositor_frame.mojom",
43 "compositor_frame_metadata.mojom", 43 "compositor_frame_metadata.mojom",
44 "filter_operation.mojom", 44 "filter_operation.mojom",
45 "filter_operations.mojom", 45 "filter_operations.mojom",
46 "frame_sink_id.mojom", 46 "frame_sink_id.mojom",
47 "local_frame_id.mojom",
47 "mojo_compositor_frame_sink.mojom", 48 "mojo_compositor_frame_sink.mojom",
48 "quads.mojom", 49 "quads.mojom",
49 "render_pass.mojom", 50 "render_pass.mojom",
50 "render_pass_id.mojom", 51 "render_pass_id.mojom",
51 "returned_resource.mojom", 52 "returned_resource.mojom",
52 "selection.mojom", 53 "selection.mojom",
53 "shared_quad_state.mojom", 54 "shared_quad_state.mojom",
54 "surface_id.mojom", 55 "surface_id.mojom",
55 "surface_sequence.mojom", 56 "surface_sequence.mojom",
56 "transferable_resource.mojom", 57 "transferable_resource.mojom",
(...skipping 22 matching lines...) Expand all
79 80
80 source_set("struct_traits") { 81 source_set("struct_traits") {
81 sources = [ 82 sources = [
82 "compositor_frame_metadata_struct_traits.cc", 83 "compositor_frame_metadata_struct_traits.cc",
83 "compositor_frame_metadata_struct_traits.h", 84 "compositor_frame_metadata_struct_traits.h",
84 "compositor_frame_struct_traits.cc", 85 "compositor_frame_struct_traits.cc",
85 "compositor_frame_struct_traits.h", 86 "compositor_frame_struct_traits.h",
86 "filter_operation_struct_traits.h", 87 "filter_operation_struct_traits.h",
87 "filter_operations_struct_traits.h", 88 "filter_operations_struct_traits.h",
88 "frame_sink_id_struct_traits.h", 89 "frame_sink_id_struct_traits.h",
90 "local_frame_id_struct_traits.h",
89 "quads_struct_traits.cc", 91 "quads_struct_traits.cc",
90 "quads_struct_traits.h", 92 "quads_struct_traits.h",
91 "render_pass_id_struct_traits.h", 93 "render_pass_id_struct_traits.h",
92 "render_pass_struct_traits.cc", 94 "render_pass_struct_traits.cc",
93 "render_pass_struct_traits.h", 95 "render_pass_struct_traits.h",
94 "selection_struct_traits.h", 96 "selection_struct_traits.h",
95 "shared_quad_state_struct_traits.h", 97 "shared_quad_state_struct_traits.h",
96 "surface_id_struct_traits.h", 98 "surface_id_struct_traits.h",
97 "surface_sequence_struct_traits.h", 99 "surface_sequence_struct_traits.h",
98 "transferable_resource_struct_traits.cc", 100 "transferable_resource_struct_traits.cc",
99 "transferable_resource_struct_traits.h", 101 "transferable_resource_struct_traits.h",
100 ] 102 ]
101 public_deps = [ 103 public_deps = [
102 ":interfaces_shared_cpp_sources", 104 ":interfaces_shared_cpp_sources",
103 "//base", 105 "//base",
104 "//cc", 106 "//cc",
105 "//cc/surfaces:surface_id", 107 "//cc/surfaces:surface_id",
106 "//gpu/ipc/common:struct_traits", 108 "//gpu/ipc/common:struct_traits",
107 "//mojo/common:struct_traits", 109 "//mojo/common:struct_traits",
108 "//skia/public/interfaces:struct_traits", 110 "//skia/public/interfaces:struct_traits",
109 "//ui/events:events_base", 111 "//ui/events:events_base",
110 "//ui/events/mojo:struct_traits", 112 "//ui/events/mojo:struct_traits",
111 "//ui/gfx", 113 "//ui/gfx",
112 "//ui/gfx:selection_bound", 114 "//ui/gfx:selection_bound",
113 "//ui/gfx/geometry/mojo:struct_traits", 115 "//ui/gfx/geometry/mojo:struct_traits",
114 "//ui/gfx/mojo:struct_traits", 116 "//ui/gfx/mojo:struct_traits",
115 ] 117 ]
116 } 118 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698