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

Side by Side Diff: third_party/WebKit/public/blink.gyp

Issue 2036663003: Establish mojo service between Canvas (blink) and SurfaceManager (browser) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: OWNERS change on offscreencanvas folder 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 unified diff | Download patch
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 22 matching lines...) Expand all
33 ], 33 ],
34 'variables': { 34 'variables': {
35 # Duplicated in GN: //third_party/WebKit/public:mojo_bindings 35 # Duplicated in GN: //third_party/WebKit/public:mojo_bindings
36 'blink_mojo_sources': [ 36 'blink_mojo_sources': [
37 'platform/mime_registry.mojom', 37 'platform/mime_registry.mojom',
38 'platform/modules/background_sync/background_sync.mojom', 38 'platform/modules/background_sync/background_sync.mojom',
39 'platform/modules/bluetooth/web_bluetooth.mojom', 39 'platform/modules/bluetooth/web_bluetooth.mojom',
40 'platform/modules/geolocation/geolocation.mojom', 40 'platform/modules/geolocation/geolocation.mojom',
41 'platform/modules/notifications/notification.mojom', 41 'platform/modules/notifications/notification.mojom',
42 'platform/modules/notifications/notification_service.mojom', 42 'platform/modules/notifications/notification_service.mojom',
43 'platform/modules/offscreencanvas/offscreen_canvas_surface.mojom',
43 'platform/modules/permissions/permission.mojom', 44 'platform/modules/permissions/permission.mojom',
44 'platform/modules/permissions/permission_status.mojom', 45 'platform/modules/permissions/permission_status.mojom',
45 'platform/modules/presentation/presentation.mojom', 46 'platform/modules/presentation/presentation.mojom',
46 'platform/modules/serviceworker/service_worker_event_status.mojom', 47 'platform/modules/serviceworker/service_worker_event_status.mojom',
47 'platform/modules/wake_lock/wake_lock_service.mojom', 48 'platform/modules/wake_lock/wake_lock_service.mojom',
48 ], 49 ],
49 # Duplicated in GN: //third_party/WebKit/public:android_mojo_bindings 50 # Duplicated in GN: //third_party/WebKit/public:android_mojo_bindings
50 'blink_android_mojo_sources': [ 51 'blink_android_mojo_sources': [
51 'platform/modules/payments/payment_request.mojom', 52 'platform/modules/payments/payment_request.mojom',
52 ], 53 ],
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 { 107 {
107 # GN version: //third_party/WebKit/public:mojo_bindings_blink 108 # GN version: //third_party/WebKit/public:mojo_bindings_blink
108 # (generated by //third_party/WebKit/public:mojo_bindings) 109 # (generated by //third_party/WebKit/public:mojo_bindings)
109 'target_name': 'mojo_bindings_blink_mojom', 110 'target_name': 'mojo_bindings_blink_mojom',
110 'type': 'none', 111 'type': 'none',
111 'variables': { 112 'variables': {
112 'mojom_files': [ 113 'mojom_files': [
113 '<@(blink_mojo_sources)', 114 '<@(blink_mojo_sources)',
114 '<@(blink_android_mojo_sources)', 115 '<@(blink_android_mojo_sources)',
115 ], 116 ],
117 'mojom_typemaps': [
118 '<(DEPTH)/cc/ipc/surface_id.typemap',
119 '<(DEPTH)/cc/ipc/surface_sequence.typemap',
120
121 ],
116 'for_blink': 'true', 122 'for_blink': 'true',
117 }, 123 },
124 'dependencies' : [
125 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces_blink',
126 ],
118 'includes': [ 127 'includes': [
119 '../../../mojo/mojom_bindings_generator_explicit.gypi', 128 '../../../mojo/mojom_bindings_generator_explicit.gypi',
120 ], 129 ],
121 }, 130 },
122 { 131 {
123 # GN version: //third_party/WebKit/public:mojo_bindings 132 # GN version: //third_party/WebKit/public:mojo_bindings
124 'target_name': 'mojo_bindings_mojom', 133 'target_name': 'mojo_bindings_mojom',
125 'type': 'none', 134 'type': 'none',
126 'variables': { 135 'variables': {
127 'mojom_files': [ 136 'mojom_files': [
128 '<@(blink_mojo_sources)', 137 '<@(blink_mojo_sources)',
129 '<@(blink_android_mojo_sources)', 138 '<@(blink_android_mojo_sources)',
130 ], 139 ],
131 'mojom_typemaps': [ 140 'mojom_typemaps': [
132 '../../../device/bluetooth/public/interfaces/bluetooth_uuid.ty pemap', 141 '../../../device/bluetooth/public/interfaces/bluetooth_uuid.ty pemap',
142 '<(DEPTH)/cc/ipc/surface_id.typemap',
143 '<(DEPTH)/cc/ipc/surface_sequence.typemap',
133 ], 144 ],
134 }, 145 },
146 'dependencies' : [
147 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces',
148 ],
135 'includes': [ 149 'includes': [
136 '../../../mojo/mojom_bindings_generator_explicit.gypi', 150 '../../../mojo/mojom_bindings_generator_explicit.gypi',
137 ], 151 ],
138 }, 152 },
139 { 153 {
140 # GN version: //third_party/WebKit/public:mojo_bindings 154 # GN version: //third_party/WebKit/public:mojo_bindings
141 'target_name': 'mojo_bindings', 155 'target_name': 'mojo_bindings',
142 'type': 'static_library', 156 'type': 'static_library',
143 'dependencies': [ 157 'dependencies': [
144 'mojo_bindings_blink_mojom', 158 'mojo_bindings_blink_mojom',
145 'mojo_bindings_mojom', 159 'mojo_bindings_mojom',
146 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', 160 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
147 '../../../device/bluetooth/bluetooth.gyp:bluetooth_mojom', 161 '../../../device/bluetooth/bluetooth.gyp:bluetooth_mojom',
162 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces',
163 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces_blink',
148 ], 164 ],
149 }, 165 },
150 ], 166 ],
151 'conditions': [ 167 'conditions': [
152 ['OS == "android"', { 168 ['OS == "android"', {
153 'targets': [ 169 'targets': [
154 { 170 {
155 'target_name': 'android_mojo_bindings_mojom', 171 'target_name': 'android_mojo_bindings_mojom',
156 'type': 'none', 172 'type': 'none',
157 'variables': { 173 'variables': {
158 'mojom_files': ['<@(blink_android_mojo_sources)'], 174 'mojom_files': ['<@(blink_android_mojo_sources)'],
159 }, 175 },
160 'includes': [ 176 'includes': [
161 '../../../mojo/mojom_bindings_generator_explicit.gypi', 177 '../../../mojo/mojom_bindings_generator_explicit.gypi',
162 ], 178 ],
163 }, 179 },
164 { 180 {
165 # GN version: //third_party/WebKit/public:android_mojo_bindi ngs_java 181 # GN version: //third_party/WebKit/public:android_mojo_bindi ngs_java
166 'target_name': 'android_mojo_bindings_java', 182 'target_name': 'android_mojo_bindings_java',
167 'type': 'static_library', 183 'type': 'static_library',
168 'dependencies': [ 184 'dependencies': [
169 'android_mojo_bindings_mojom', 185 'android_mojo_bindings_mojom',
170 '../../../mojo/mojo_public.gyp:mojo_bindings_java', 186 '../../../mojo/mojo_public.gyp:mojo_bindings_java',
171 ], 187 ],
172 }, 188 },
173 ], 189 ],
174 }], 190 }],
175 ], 191 ],
176 } 192 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698