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

Unified Diff: cc/ipc/cc_ipc.gyp

Issue 2043833002: Add SurfaceSequence mojom file to cc/ipc and edit corresponding GYP file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Edit Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/ipc/BUILD.gn ('k') | cc/ipc/struct_traits_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/ipc/cc_ipc.gyp
diff --git a/cc/ipc/cc_ipc.gyp b/cc/ipc/cc_ipc.gyp
index 9a7645d1e8ca6bea4e4fedb45a76dd29dc09846f..607ff51985f98dfd9b2757badb8b79e4b2208b4d 100644
--- a/cc/ipc/cc_ipc.gyp
+++ b/cc/ipc/cc_ipc.gyp
@@ -34,5 +34,43 @@
'cc_param_traits_macros.h',
],
},
+ {
+ # GN version: //cc/ipc:interfaces
+ # TODO: Add begin_frame_args, render_pass_id, returned_resources and
+ # transferable_resource .mojom and .typemap files here so that this target
+ # is consistent with that in GN build.
+ 'target_name': 'interfaces',
+ 'type': 'none',
+ 'variables': {
+ 'mojom_files': [
+ 'surface_id.mojom',
+ 'surface_sequence.mojom',
+ ],
+ 'mojom_typemaps': [
+ 'surface_id.typemap',
+ 'surface_sequence.typemap',
+ ],
+ },
+ 'includes': [ '../../mojo/mojom_bindings_generator_explicit.gypi' ],
+ },
+ {
+ # GN version: //cc/ipc:interfaces
+ # Same target as above except that this is used in Blink
+ 'target_name': 'interfaces_blink',
+ 'type': 'none',
+ 'variables': {
+ 'for_blink': 'true',
+ 'mojom_files': [
+ 'surface_id.mojom',
+ 'surface_sequence.mojom',
+ ],
+ 'mojom_typemaps': [
+ 'surface_id.typemap',
+ 'surface_sequence.typemap',
+ ],
+ },
+ 'includes': [ '../../mojo/mojom_bindings_generator_explicit.gypi' ],
+ },
+
],
}
« no previous file with comments | « cc/ipc/BUILD.gn ('k') | cc/ipc/struct_traits_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698