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

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: Fix unit test 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 ],
139 'mojom_typemaps': [
140 '<(DEPTH)/cc/ipc/surface_id.typemap',
141 '<(DEPTH)/cc/ipc/surface_sequence.typemap',
142 ],
131 }, 143 },
144 'dependencies' : [
145 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces',
146 ],
132 'includes': [ 147 'includes': [
133 '../../../mojo/mojom_bindings_generator_explicit.gypi', 148 '../../../mojo/mojom_bindings_generator_explicit.gypi',
134 ], 149 ],
135 }, 150 },
136 { 151 {
137 # GN version: //third_party/WebKit/public:mojo_bindings 152 # GN version: //third_party/WebKit/public:mojo_bindings
138 'target_name': 'mojo_bindings', 153 'target_name': 'mojo_bindings',
139 'type': 'static_library', 154 'type': 'static_library',
140 'dependencies': [ 155 'dependencies': [
141 'mojo_bindings_blink_mojom', 156 'mojo_bindings_blink_mojom',
142 'mojo_bindings_mojom', 157 'mojo_bindings_mojom',
143 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', 158 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
159 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces',
160 '<(DEPTH)/cc/ipc/cc_ipc.gyp:interfaces_blink',
144 ], 161 ],
145 }, 162 },
146 ], 163 ],
147 'conditions': [ 164 'conditions': [
148 ['OS == "android"', { 165 ['OS == "android"', {
149 'targets': [ 166 'targets': [
150 { 167 {
151 'target_name': 'android_mojo_bindings_mojom', 168 'target_name': 'android_mojo_bindings_mojom',
152 'type': 'none', 169 'type': 'none',
153 'variables': { 170 'variables': {
154 'mojom_files': ['<@(blink_android_mojo_sources)'], 171 'mojom_files': ['<@(blink_android_mojo_sources)'],
155 }, 172 },
156 'includes': [ 173 'includes': [
157 '../../../mojo/mojom_bindings_generator_explicit.gypi', 174 '../../../mojo/mojom_bindings_generator_explicit.gypi',
158 ], 175 ],
159 }, 176 },
160 { 177 {
161 # GN version: //third_party/WebKit/public:android_mojo_bindi ngs_java 178 # GN version: //third_party/WebKit/public:android_mojo_bindi ngs_java
162 'target_name': 'android_mojo_bindings_java', 179 'target_name': 'android_mojo_bindings_java',
163 'type': 'static_library', 180 'type': 'static_library',
164 'dependencies': [ 181 'dependencies': [
165 'android_mojo_bindings_mojom', 182 'android_mojo_bindings_mojom',
166 '../../../mojo/mojo_public.gyp:mojo_bindings_java', 183 '../../../mojo/mojo_public.gyp:mojo_bindings_java',
167 ], 184 ],
168 }, 185 },
169 ], 186 ],
170 }], 187 }],
171 ], 188 ],
172 } 189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698