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

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

Issue 2285433002: Use compositor_frame typemap in Blink (Closed)
Patch Set: Adapt to new change after rebase Created 4 years, 3 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/compositor_frame.typemap » ('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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "quads.mojom", 46 "quads.mojom",
47 "render_pass.mojom", 47 "render_pass.mojom",
48 "render_pass_id.mojom", 48 "render_pass_id.mojom",
49 "returned_resource.mojom", 49 "returned_resource.mojom",
50 "selection.mojom", 50 "selection.mojom",
51 "shared_quad_state.mojom", 51 "shared_quad_state.mojom",
52 "surface_id.mojom",
53 "surface_sequence.mojom",
52 "transferable_resource.mojom", 54 "transferable_resource.mojom",
53 ] 55 ]
54 56
55 public_deps = [ 57 deps = [
56 ":interfaces_surfaceid_only",
57 "//gpu/ipc/common:interfaces", 58 "//gpu/ipc/common:interfaces",
58 "//mojo/common:common_custom_types", 59 "//mojo/common:common_custom_types",
59 "//skia/public/interfaces", 60 "//skia/public/interfaces",
60 "//ui/events/mojo:interfaces", 61 "//ui/events/mojo:interfaces",
61 "//ui/gfx/geometry/mojo", 62 "//ui/gfx/geometry/mojo",
62 "//ui/gfx/mojo", 63 "//ui/gfx/mojo",
63 ] 64 ]
64 } 65 }
65 66
66 mojom("interfaces_surfaceid_only") {
67 sources = [
68 "surface_id.mojom",
69 "surface_sequence.mojom",
70 ]
71 }
72
73 mojom("test_interfaces") { 67 mojom("test_interfaces") {
74 testonly = true 68 testonly = true
75 sources = [ 69 sources = [
76 "traits_test_service.mojom", 70 "traits_test_service.mojom",
77 ] 71 ]
78 72
79 public_deps = [ 73 public_deps = [
80 ":interfaces", 74 ":interfaces",
81 ":interfaces_surfaceid_only",
82 ] 75 ]
83 } 76 }
77
78 source_set("struct_traits") {
79 sources = [
80 "compositor_frame_metadata_struct_traits.cc",
81 "compositor_frame_metadata_struct_traits.h",
82 "compositor_frame_struct_traits.cc",
83 "compositor_frame_struct_traits.h",
84 "filter_operation_struct_traits.h",
85 "filter_operations_struct_traits.h",
86 "quads_struct_traits.cc",
87 "quads_struct_traits.h",
88 "render_pass_id_struct_traits.h",
89 "render_pass_struct_traits.cc",
90 "render_pass_struct_traits.h",
91 "selection_struct_traits.h",
92 "shared_quad_state_struct_traits.h",
93 "surface_id_struct_traits.h",
94 "surface_sequence_struct_traits.h",
95 "transferable_resource_struct_traits.cc",
96 "transferable_resource_struct_traits.h",
97 ]
98 public_deps = [
99 ":interfaces_shared_cpp_sources",
100 "//base",
101 "//cc",
102 "//cc/surfaces:surface_id",
103 "//gpu/ipc/common:struct_traits",
104 "//mojo/common:struct_traits",
105 "//skia/public/interfaces:struct_traits",
106 "//ui/events:events_base",
107 "//ui/events/mojo:struct_traits",
108 "//ui/gfx",
109 "//ui/gfx:selection_bound",
110 "//ui/gfx/geometry/mojo:struct_traits",
111 "//ui/gfx/mojo:struct_traits",
112 ]
113 }
OLDNEW
« no previous file with comments | « no previous file | cc/ipc/compositor_frame.typemap » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698