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

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

Issue 1963293002: Replacing Indexed DB Chromium IPC with Mojo Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some (incomplete) work on struct traits. Created 4 years, 5 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 121470ff373891aa4e3c6ffa883020c8b1f6b688..504f8c876b796e4c80d0d31e6a64630a3511da51 100644
--- a/third_party/WebKit/public/blink.gyp
+++ b/third_party/WebKit/public/blink.gyp
@@ -38,6 +38,7 @@
'platform/modules/background_sync/background_sync.mojom',
'platform/modules/bluetooth/web_bluetooth.mojom',
'platform/modules/geolocation/geolocation.mojom',
+ 'platform/modules/indexeddb/indexed_db.mojom',
'platform/modules/notifications/notification.mojom',
'platform/modules/notifications/notification_service.mojom',
'platform/modules/offscreencanvas/offscreen_canvas_surface.mojom',
@@ -47,6 +48,9 @@
'platform/modules/serviceworker/service_worker_event_status.mojom',
'platform/modules/wake_lock/wake_lock_service.mojom',
],
+ 'blink_mojom_typemaps': [
+ 'platform/modules/indexeddb/indexeddb.typemap',
+ ],
# Duplicated in GN: //third_party/WebKit/public:android_mojo_bindings
'blink_android_mojo_sources': [
'platform/modules/payments/payment_request.mojom',
@@ -120,6 +124,26 @@
],
'for_blink': 'true',
+ 'mojom_typemaps': [
+ '<@(blink_mojom_typemaps)',
+ ],
+ },
+ 'includes': [
+ '../../../mojo/mojom_bindings_generator_explicit.gypi',
+ ],
+ },
+ {
+ # GN version: //third_party/WebKit/public:url_origin_bindings_blink_mojom
+ 'target_name': 'url_origin_bindings_blink_mojom',
+ 'type': 'none',
+ 'variables': {
+ 'mojom_files': [
+ '<(DEPTH)/url/mojo/origin.mojom',
+ ],
+ 'for_blink': 'true',
+ 'mojom_typemaps': [
+ 'platform/core/mojo/origin.typemap',
+ ],
},
'dependencies' : [
'<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces_blink',
@@ -159,6 +183,7 @@
'dependencies': [
'mojo_bindings_blink_mojom',
'mojo_bindings_mojom',
+ 'url_origin_bindings_blink_mojom',
'../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
'../../../device/bluetooth/bluetooth.gyp:bluetooth_mojom',
'<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces',

Powered by Google App Engine
This is Rietveld 408576698