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

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

Issue 2369793002: WIP: Propagate SurfaceID up window tree hierarchy
Patch Set: Fix input events: EventDispatcher ignores container windows 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
« no previous file with comments | « cc/BUILD.gn ('k') | cc/ipc/cc_param_traits.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("//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 25 matching lines...) Expand all
36 ] 36 ]
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 "mojo_compositor_frame_sink.mojom", 47 "mojo_compositor_frame_sink.mojom",
47 "quads.mojom", 48 "quads.mojom",
48 "render_pass.mojom", 49 "render_pass.mojom",
49 "render_pass_id.mojom", 50 "render_pass_id.mojom",
50 "returned_resource.mojom", 51 "returned_resource.mojom",
51 "selection.mojom", 52 "selection.mojom",
52 "shared_quad_state.mojom", 53 "shared_quad_state.mojom",
53 "surface_id.mojom", 54 "surface_id.mojom",
54 "surface_sequence.mojom", 55 "surface_sequence.mojom",
55 "transferable_resource.mojom", 56 "transferable_resource.mojom",
(...skipping 21 matching lines...) Expand all
77 } 78 }
78 79
79 source_set("struct_traits") { 80 source_set("struct_traits") {
80 sources = [ 81 sources = [
81 "compositor_frame_metadata_struct_traits.cc", 82 "compositor_frame_metadata_struct_traits.cc",
82 "compositor_frame_metadata_struct_traits.h", 83 "compositor_frame_metadata_struct_traits.h",
83 "compositor_frame_struct_traits.cc", 84 "compositor_frame_struct_traits.cc",
84 "compositor_frame_struct_traits.h", 85 "compositor_frame_struct_traits.h",
85 "filter_operation_struct_traits.h", 86 "filter_operation_struct_traits.h",
86 "filter_operations_struct_traits.h", 87 "filter_operations_struct_traits.h",
88 "frame_sink_id_struct_traits.h",
87 "quads_struct_traits.cc", 89 "quads_struct_traits.cc",
88 "quads_struct_traits.h", 90 "quads_struct_traits.h",
89 "render_pass_id_struct_traits.h", 91 "render_pass_id_struct_traits.h",
90 "render_pass_struct_traits.cc", 92 "render_pass_struct_traits.cc",
91 "render_pass_struct_traits.h", 93 "render_pass_struct_traits.h",
92 "selection_struct_traits.h", 94 "selection_struct_traits.h",
93 "shared_quad_state_struct_traits.h", 95 "shared_quad_state_struct_traits.h",
94 "surface_id_struct_traits.h", 96 "surface_id_struct_traits.h",
95 "surface_sequence_struct_traits.h", 97 "surface_sequence_struct_traits.h",
96 "transferable_resource_struct_traits.cc", 98 "transferable_resource_struct_traits.cc",
97 "transferable_resource_struct_traits.h", 99 "transferable_resource_struct_traits.h",
98 ] 100 ]
99 public_deps = [ 101 public_deps = [
100 ":interfaces_shared_cpp_sources", 102 ":interfaces_shared_cpp_sources",
101 "//base", 103 "//base",
102 "//cc", 104 "//cc",
103 "//cc/surfaces:surface_id", 105 "//cc/surfaces:surface_id",
104 "//gpu/ipc/common:struct_traits", 106 "//gpu/ipc/common:struct_traits",
105 "//mojo/common:struct_traits", 107 "//mojo/common:struct_traits",
106 "//skia/public/interfaces:struct_traits", 108 "//skia/public/interfaces:struct_traits",
107 "//ui/events:events_base", 109 "//ui/events:events_base",
108 "//ui/events/mojo:struct_traits", 110 "//ui/events/mojo:struct_traits",
109 "//ui/gfx", 111 "//ui/gfx",
110 "//ui/gfx:selection_bound", 112 "//ui/gfx:selection_bound",
111 "//ui/gfx/geometry/mojo:struct_traits", 113 "//ui/gfx/geometry/mojo:struct_traits",
112 "//ui/gfx/mojo:struct_traits", 114 "//ui/gfx/mojo:struct_traits",
113 ] 115 ]
114 } 116 }
OLDNEW
« no previous file with comments | « cc/BUILD.gn ('k') | cc/ipc/cc_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698