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

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: Rebase, format, minor edits 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_service.m ojom',
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)/third_party/WebKit/Source/platform/mojo/SurfaceId. typemap',
119 '<(DEPTH)/third_party/WebKit/Source/platform/mojo/SurfaceSeq uence.typemap',
120 ],
116 'for_blink': 'true', 121 'for_blink': 'true',
117 }, 122 },
123 'dependencies' : [
124 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces_blink',
125 ],
118 'includes': [ 126 'includes': [
119 '../../../mojo/mojom_bindings_generator_explicit.gypi', 127 '../../../mojo/mojom_bindings_generator_explicit.gypi',
120 ], 128 ],
121 }, 129 },
122 { 130 {
123 # GN version: //third_party/WebKit/public:mojo_bindings 131 # GN version: //third_party/WebKit/public:mojo_bindings
124 'target_name': 'mojo_bindings_mojom', 132 'target_name': 'mojo_bindings_mojom',
125 'type': 'none', 133 'type': 'none',
126 'variables': { 134 'variables': {
127 'mojom_files': [ 135 'mojom_files': [
128 '<@(blink_mojo_sources)', 136 '<@(blink_mojo_sources)',
129 '<@(blink_android_mojo_sources)', 137 '<@(blink_android_mojo_sources)',
130 ], 138 ],
131 'mojom_typemaps': [ 139 'mojom_typemaps': [
132 '../../../device/bluetooth/public/interfaces/bluetooth_uuid.ty pemap', 140 '../../../device/bluetooth/public/interfaces/bluetooth_uuid.ty pemap',
141 '<(DEPTH)/cc/ipc/surface_id.typemap',
142 '<(DEPTH)/cc/ipc/surface_sequence.typemap',
133 ], 143 ],
134 }, 144 },
145 'dependencies' : [
146 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces',
147 ],
135 'includes': [ 148 'includes': [
136 '../../../mojo/mojom_bindings_generator_explicit.gypi', 149 '../../../mojo/mojom_bindings_generator_explicit.gypi',
137 ], 150 ],
138 }, 151 },
139 { 152 {
140 # GN version: //third_party/WebKit/public:mojo_bindings 153 # GN version: //third_party/WebKit/public:mojo_bindings
141 'target_name': 'mojo_bindings', 154 'target_name': 'mojo_bindings',
142 'type': 'static_library', 155 'type': 'static_library',
143 'dependencies': [ 156 'dependencies': [
144 'mojo_bindings_blink_mojom', 157 'mojo_bindings_blink_mojom',
145 'mojo_bindings_mojom', 158 'mojo_bindings_mojom',
146 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', 159 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
147 '../../../device/bluetooth/bluetooth.gyp:bluetooth_mojom', 160 '../../../device/bluetooth/bluetooth.gyp:bluetooth_mojom',
161 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces',
162 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces_blink',
148 ], 163 ],
149 }, 164 },
150 ], 165 ],
151 'conditions': [ 166 'conditions': [
152 ['OS == "android"', { 167 ['OS == "android"', {
153 'targets': [ 168 'targets': [
154 { 169 {
155 'target_name': 'android_mojo_bindings_mojom', 170 'target_name': 'android_mojo_bindings_mojom',
156 'type': 'none', 171 'type': 'none',
157 'variables': { 172 'variables': {
158 'mojom_files': ['<@(blink_android_mojo_sources)'], 173 'mojom_files': ['<@(blink_android_mojo_sources)'],
159 }, 174 },
160 'includes': [ 175 'includes': [
161 '../../../mojo/mojom_bindings_generator_explicit.gypi', 176 '../../../mojo/mojom_bindings_generator_explicit.gypi',
162 ], 177 ],
163 }, 178 },
164 { 179 {
165 # GN version: //third_party/WebKit/public:android_mojo_bindi ngs_java 180 # GN version: //third_party/WebKit/public:android_mojo_bindi ngs_java
166 'target_name': 'android_mojo_bindings_java', 181 'target_name': 'android_mojo_bindings_java',
167 'type': 'static_library', 182 'type': 'static_library',
168 'dependencies': [ 183 'dependencies': [
169 'android_mojo_bindings_mojom', 184 'android_mojo_bindings_mojom',
170 '../../../mojo/mojo_public.gyp:mojo_bindings_java', 185 '../../../mojo/mojo_public.gyp:mojo_bindings_java',
171 ], 186 ],
172 }, 187 },
173 ], 188 ],
174 }], 189 }],
175 ], 190 ],
176 } 191 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698