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

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

Issue 2285433002: Use compositor_frame typemap in Blink (Closed)
Patch Set: Do not write empty function in content 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
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 group("struct_traits") {
79 public_deps = [
80 ":struct_traits_sources",
81 "//cc",
82 ]
83 }
84
85 source_set("struct_traits_sources") {
86 sources = [
87 "compositor_frame_metadata_struct_traits.cc",
88 "compositor_frame_metadata_struct_traits.h",
89 "compositor_frame_struct_traits.cc",
90 "compositor_frame_struct_traits.h",
91 "filter_operation_struct_traits.h",
92 "filter_operations_struct_traits.h",
93 "quads_struct_traits.cc",
94 "quads_struct_traits.h",
95 "render_pass_id_struct_traits.h",
96 "render_pass_struct_traits.cc",
97 "render_pass_struct_traits.h",
98 "selection_struct_traits.h",
99 "shared_quad_state_struct_traits.h",
100 "surface_id_struct_traits.h",
101 "surface_sequence_struct_traits.h",
102 "transferable_resource_struct_traits.cc",
103 "transferable_resource_struct_traits.h",
104 ]
105 public_deps = [
106 ":interfaces_shared_cpp_sources",
107 "//base",
108 "//cc",
109 "//cc/surfaces:surface_id",
110 "//gpu/ipc/common:struct_traits",
111 "//mojo/common:struct_traits",
112 "//skia/public/interfaces:struct_traits",
113 "//ui/events:events_base",
114 "//ui/events/mojo:struct_traits",
115 "//ui/gfx",
116 "//ui/gfx:selection_bound",
117 "//ui/gfx/geometry/mojo:struct_traits",
118 "//ui/gfx/mojo:struct_traits",
119 ]
120 }
OLDNEW
« no previous file with comments | « no previous file | cc/ipc/compositor_frame.typemap » ('j') | cc/ipc/compositor_frame_for_blink.typemap » ('J')

Powered by Google App Engine
This is Rietveld 408576698