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

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

Issue 2161993004: Make geometry struct_trait shared by Blink and Chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 ec66f60b9fc81ae75287f7d5684e0e3f869adf4c..6f700369fe6856a3d97f8b399f0f46cf39c4803f 100644
--- a/third_party/WebKit/public/blink.gyp
+++ b/third_party/WebKit/public/blink.gyp
@@ -53,6 +53,11 @@
'blink_android_mojo_sources': [
'platform/modules/payments/payment_request.mojom',
],
+ 'blink_typemap_sources': [
+ '<(DEPTH)/cc/ipc/surface_id.typemap',
+ '<(DEPTH)/cc/ipc/surface_sequence.typemap',
+ '<(DEPTH)/ui/gfx/geometry/mojo/geometry.typemap',
+ ],
},
'targets': [
{
@@ -117,16 +122,14 @@
'<@(blink_android_mojo_sources)',
],
'mojom_typemaps': [
- '<(DEPTH)/cc/ipc/surface_id.typemap',
- '<(DEPTH)/cc/ipc/surface_sequence.typemap',
-
+ '<@(blink_typemap_sources)',
],
'for_blink': 'true',
},
'dependencies' : [
'<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces_blink',
],
- 'includes': [
+ 'includes': [
pdr. 2016/07/20 17:35:54 nit: indentation
'../../../mojo/mojom_bindings_generator_explicit.gypi',
],
},
@@ -140,15 +143,14 @@
'<@(blink_android_mojo_sources)',
],
'mojom_typemaps': [
- '../../../device/bluetooth/public/interfaces/bluetooth_uuid.typemap',
- '<(DEPTH)/cc/ipc/surface_id.typemap',
- '<(DEPTH)/cc/ipc/surface_sequence.typemap',
+ '../../../device/bluetooth/public/interfaces/bluetooth_uuid.typemap',
+ '<@(blink_typemap_sources)',
],
},
'dependencies' : [
'<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces',
],
- 'includes': [
+ 'includes': [
pdr. 2016/07/20 17:35:54 Nit: indentation
'../../../mojo/mojom_bindings_generator_explicit.gypi',
],
},

Powered by Google App Engine
This is Rietveld 408576698