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

Unified Diff: third_party/WebKit/public/blink.gyp

Issue 1913043002: Convert ManifestManager IPCs to Mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: third_party/WebKit/public/blink.gyp
diff --git a/third_party/WebKit/public/blink.gyp b/third_party/WebKit/public/blink.gyp
index 5cf3b8088e1bb4a03185d595a6ee4fd1381e61c4..e74e1cf1117bd79927c6657139fd5fe8023c72a4 100644
--- a/third_party/WebKit/public/blink.gyp
+++ b/third_party/WebKit/public/blink.gyp
@@ -34,6 +34,7 @@
'variables': {
# Duplicated in GN: //third_party/WebKit/public:mojo_bindings
'blink_mojo_sources': [
+ 'platform/display_mode.mojom',
'platform/mime_registry.mojom',
'platform/modules/background_sync/background_sync.mojom',
'platform/modules/bluetooth/web_bluetooth.mojom',
@@ -43,6 +44,7 @@
'platform/modules/permissions/permission.mojom',
'platform/modules/permissions/permission_status.mojom',
'platform/modules/presentation/presentation.mojom',
+ 'platform/modules/screen_orientation/screen_orientation.mojom',
'platform/modules/serviceworker/service_worker_event_status.mojom',
'platform/modules/wake_lock/wake_lock_service.mojom',
],
@@ -57,7 +59,7 @@
'target_name': 'blink',
'type': 'none',
'dependencies': [
- 'mojo_bindings',
+ 'mojo_bindings_blink',
'../Source/platform/blink_platform.gyp:blink_platform',
'../Source/web/web.gyp:blink_web',
'<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl',
@@ -127,21 +129,46 @@
'mojom_files': [
'<@(blink_mojo_sources)',
'<@(blink_android_mojo_sources)',
+ 'platform/modules/manifest/manifest.mojom',
+ 'platform/modules/manifest/manifest_manager.mojom',
+ ],
+ 'mojom_typemaps': [
+ '<(DEPTH)/content/public/common/manifest.typemap',
+ '<(DEPTH)/ui/gfx/geometry/mojo/geometry.typemap',
+ '<(DEPTH)/url/mojo/gurl.typemap',
],
},
'includes': [
'../../../mojo/mojom_bindings_generator_explicit.gypi',
],
+ 'dependencies': [
+ '<(DEPTH)/url/url.gyp:url_interfaces_mojom',
+ ]
},
{
# GN version: //third_party/WebKit/public:mojo_bindings
- 'target_name': 'mojo_bindings',
+ 'target_name': 'mojo_bindings_blink',
'type': 'static_library',
'dependencies': [
'mojo_bindings_blink_mojom',
+ '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
+ ],
+ },
+ {
+ # GN version: //third_party/WebKit/public:mojo_bindings
+ 'target_name': 'mojo_bindings',
+ 'type': 'static_library',
+ 'dependencies': [
'mojo_bindings_mojom',
'../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
+ '<(DEPTH)/ui/gfx/gfx.gyp:mojo_geometry_bindings',
+ '<(DEPTH)/url/url.gyp:url_mojom',
+ '<(DEPTH)/url/url.gyp:url_lib',
],
+ 'sources': [
+ '<(DEPTH)/content/public/common/manifest_struct_traits.cc',
+ '<(DEPTH)/content/public/common/manifest_struct_traits.h',
+ ]
},
],
'conditions': [

Powered by Google App Engine
This is Rietveld 408576698