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

Side by Side Diff: Source/modules/modules.gypi

Issue 963683002: Add IDL and initial Blink API for Background Sync (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remembering how ASCII works Created 5 years, 9 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 'includes': [ 2 'includes': [
3 '../core/core_generated.gypi', 3 '../core/core_generated.gypi',
4 'modules_generated.gypi', 4 'modules_generated.gypi',
5 ], 5 ],
6 'variables': { 6 'variables': {
7 # Experimental hooks for embedder to provide extra IDL and source files. 7 # Experimental hooks for embedder to provide extra IDL and source files.
8 # 8 #
9 # Note: this is not a supported API. If you rely on this, you will be broken 9 # Note: this is not a supported API. If you rely on this, you will be broken
10 # from time to time as the code generator changes in backward incompatible 10 # from time to time as the code generator changes in backward incompatible
11 # ways. 11 # ways.
12 'extra_blink_module_idl_files': [], 12 'extra_blink_module_idl_files': [],
13 'extra_blink_module_files': [], 13 'extra_blink_module_files': [],
14 # Files for which bindings (.cpp and .h files) will be generated 14 # Files for which bindings (.cpp and .h files) will be generated
15 'modules_idl_files': [ 15 'modules_idl_files': [
16 '<@(extra_blink_module_idl_files)', 16 '<@(extra_blink_module_idl_files)',
17 'background_sync/SyncEvent.idl',
18 'background_sync/SyncManager.idl',
19 'background_sync/SyncRegistration.idl',
17 'battery/BatteryManager.idl', 20 'battery/BatteryManager.idl',
18 'bluetooth/Bluetooth.idl', 21 'bluetooth/Bluetooth.idl',
19 'bluetooth/BluetoothDevice.idl', 22 'bluetooth/BluetoothDevice.idl',
20 'bluetooth/BluetoothDiscovery.idl', 23 'bluetooth/BluetoothDiscovery.idl',
21 'credentialmanager/Credential.idl', 24 'credentialmanager/Credential.idl',
22 'credentialmanager/CredentialsContainer.idl', 25 'credentialmanager/CredentialsContainer.idl',
23 'credentialmanager/FederatedCredential.idl', 26 'credentialmanager/FederatedCredential.idl',
24 'credentialmanager/LocalCredential.idl', 27 'credentialmanager/LocalCredential.idl',
25 'crypto/Crypto.idl', 28 'crypto/Crypto.idl',
26 'crypto/CryptoKey.idl', 29 'crypto/CryptoKey.idl',
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 'webmidi/MIDIMessageEvent.idl', 215 'webmidi/MIDIMessageEvent.idl',
213 'webmidi/MIDIOutput.idl', 216 'webmidi/MIDIOutput.idl',
214 'webmidi/MIDIOutputMap.idl', 217 'webmidi/MIDIOutputMap.idl',
215 'webmidi/MIDIPort.idl', 218 'webmidi/MIDIPort.idl',
216 'webmidi/MIDISuccessCallback.idl', 219 'webmidi/MIDISuccessCallback.idl',
217 'websockets/CloseEvent.idl', 220 'websockets/CloseEvent.idl',
218 'websockets/WebSocket.idl', 221 'websockets/WebSocket.idl',
219 ], 222 ],
220 # 'partial interface' or target (right side of) 'implements' 223 # 'partial interface' or target (right side of) 'implements'
221 'modules_dependency_idl_files': [ 224 'modules_dependency_idl_files': [
225 'background_sync/ServiceWorkerGlobalScopeSync.idl',
226 'background_sync/ServiceWorkerRegistrationSync.idl',
222 'battery/NavigatorBattery.idl', 227 'battery/NavigatorBattery.idl',
223 'beacon/NavigatorBeacon.idl', 228 'beacon/NavigatorBeacon.idl',
224 'bluetooth/NavigatorBluetooth.idl', 229 'bluetooth/NavigatorBluetooth.idl',
225 'credentialmanager/NavigatorCredentials.idl', 230 'credentialmanager/NavigatorCredentials.idl',
226 'crypto/WindowCrypto.idl', 231 'crypto/WindowCrypto.idl',
227 'crypto/WorkerGlobalScopeCrypto.idl', 232 'crypto/WorkerGlobalScopeCrypto.idl',
228 'device_light/WindowDeviceLight.idl', 233 'device_light/WindowDeviceLight.idl',
229 'device_orientation/WindowDeviceMotion.idl', 234 'device_orientation/WindowDeviceMotion.idl',
230 'device_orientation/WindowDeviceOrientation.idl', 235 'device_orientation/WindowDeviceOrientation.idl',
231 'donottrack/NavigatorDoNotTrack.idl', 236 'donottrack/NavigatorDoNotTrack.idl',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 'serviceworkers/NavigatorServiceWorker.idl', 274 'serviceworkers/NavigatorServiceWorker.idl',
270 'speech/WindowSpeech.idl', 275 'speech/WindowSpeech.idl',
271 'speech/WindowSpeechSynthesis.idl', 276 'speech/WindowSpeechSynthesis.idl',
272 'vibration/NavigatorVibration.idl', 277 'vibration/NavigatorVibration.idl',
273 'webaudio/WindowWebAudio.idl', 278 'webaudio/WindowWebAudio.idl',
274 'webdatabase/WindowWebDatabase.idl', 279 'webdatabase/WindowWebDatabase.idl',
275 'webmidi/NavigatorWebMIDI.idl', 280 'webmidi/NavigatorWebMIDI.idl',
276 ], 281 ],
277 # interfaces that inherit from Event 282 # interfaces that inherit from Event
278 'modules_event_idl_files': [ 283 'modules_event_idl_files': [
284 'background_sync/SyncEvent.idl',
279 'device_light/DeviceLightEvent.idl', 285 'device_light/DeviceLightEvent.idl',
280 'device_orientation/DeviceMotionEvent.idl', 286 'device_orientation/DeviceMotionEvent.idl',
281 'device_orientation/DeviceOrientationEvent.idl', 287 'device_orientation/DeviceOrientationEvent.idl',
282 'encryptedmedia/MediaEncryptedEvent.idl', 288 'encryptedmedia/MediaEncryptedEvent.idl',
283 'encryptedmedia/MediaKeyMessageEvent.idl', 289 'encryptedmedia/MediaKeyMessageEvent.idl',
284 'gamepad/GamepadEvent.idl', 290 'gamepad/GamepadEvent.idl',
285 'geofencing/GeofencingEvent.idl', 291 'geofencing/GeofencingEvent.idl',
286 'indexeddb/IDBVersionChangeEvent.idl', 292 'indexeddb/IDBVersionChangeEvent.idl',
287 'mediastream/MediaStreamEvent.idl', 293 'mediastream/MediaStreamEvent.idl',
288 'mediastream/MediaStreamTrackEvent.idl', 294 'mediastream/MediaStreamTrackEvent.idl',
(...skipping 10 matching lines...) Expand all
299 'speech/SpeechRecognitionError.idl', 305 'speech/SpeechRecognitionError.idl',
300 'speech/SpeechRecognitionEvent.idl', 306 'speech/SpeechRecognitionEvent.idl',
301 'speech/SpeechSynthesisEvent.idl', 307 'speech/SpeechSynthesisEvent.idl',
302 'webaudio/AudioProcessingEvent.idl', 308 'webaudio/AudioProcessingEvent.idl',
303 'webaudio/OfflineAudioCompletionEvent.idl', 309 'webaudio/OfflineAudioCompletionEvent.idl',
304 'webmidi/MIDIConnectionEvent.idl', 310 'webmidi/MIDIConnectionEvent.idl',
305 'webmidi/MIDIMessageEvent.idl', 311 'webmidi/MIDIMessageEvent.idl',
306 'websockets/CloseEvent.idl', 312 'websockets/CloseEvent.idl',
307 ], 313 ],
308 'modules_dictionary_idl_files': [ 314 'modules_dictionary_idl_files': [
315 'background_sync/SyncEventInit.idl',
316 'background_sync/SyncRegistrationOptions.idl',
309 'device_light/DeviceLightEventInit.idl', 317 'device_light/DeviceLightEventInit.idl',
310 'encoding/TextDecodeOptions.idl', 318 'encoding/TextDecodeOptions.idl',
311 'encoding/TextDecoderOptions.idl', 319 'encoding/TextDecoderOptions.idl',
312 'encryptedmedia/MediaEncryptedEventInit.idl', 320 'encryptedmedia/MediaEncryptedEventInit.idl',
313 'encryptedmedia/MediaKeyMessageEventInit.idl', 321 'encryptedmedia/MediaKeyMessageEventInit.idl',
314 'encryptedmedia/MediaKeySystemConfiguration.idl', 322 'encryptedmedia/MediaKeySystemConfiguration.idl',
315 'encryptedmedia/MediaKeySystemMediaCapability.idl', 323 'encryptedmedia/MediaKeySystemMediaCapability.idl',
316 'filesystem/FileSystemFlags.idl', 324 'filesystem/FileSystemFlags.idl',
317 'gamepad/GamepadEventInit.idl', 325 'gamepad/GamepadEventInit.idl',
318 'geofencing/CircularGeofencingRegionInit.idl', 326 'geofencing/CircularGeofencingRegionInit.idl',
(...skipping 26 matching lines...) Expand all
345 '<(blink_modules_output_dir)/EventModules.cpp', 353 '<(blink_modules_output_dir)/EventModules.cpp',
346 '<(blink_modules_output_dir)/EventModulesHeaders.h', 354 '<(blink_modules_output_dir)/EventModulesHeaders.h',
347 '<(blink_modules_output_dir)/EventModulesNames.cpp', 355 '<(blink_modules_output_dir)/EventModulesNames.cpp',
348 '<(blink_modules_output_dir)/EventModulesNames.h', 356 '<(blink_modules_output_dir)/EventModulesNames.h',
349 '<(blink_modules_output_dir)/EventTargetModulesNames.cpp', 357 '<(blink_modules_output_dir)/EventTargetModulesNames.cpp',
350 '<(blink_modules_output_dir)/EventTargetModulesNames.h', 358 '<(blink_modules_output_dir)/EventTargetModulesNames.h',
351 '<(blink_modules_output_dir)/IndexedDBNames.cpp', 359 '<(blink_modules_output_dir)/IndexedDBNames.cpp',
352 '<(blink_modules_output_dir)/IndexedDBNames.h', 360 '<(blink_modules_output_dir)/IndexedDBNames.h',
353 ], 361 ],
354 'generated_modules_dictionary_files': [ 362 'generated_modules_dictionary_files': [
363 '<(blink_modules_output_dir)/background_sync/SyncEventInit.cpp',
364 '<(blink_modules_output_dir)/background_sync/SyncEventInit.h',
365 '<(blink_modules_output_dir)/background_sync/SyncRegistrationOptions.cpp',
366 '<(blink_modules_output_dir)/background_sync/SyncRegistrationOptions.h',
355 '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.cpp', 367 '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.cpp',
356 '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.h', 368 '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.h',
357 '<(blink_modules_output_dir)/encoding/TextDecodeOptions.cpp', 369 '<(blink_modules_output_dir)/encoding/TextDecodeOptions.cpp',
358 '<(blink_modules_output_dir)/encoding/TextDecodeOptions.h', 370 '<(blink_modules_output_dir)/encoding/TextDecodeOptions.h',
359 '<(blink_modules_output_dir)/encoding/TextDecoderOptions.cpp', 371 '<(blink_modules_output_dir)/encoding/TextDecoderOptions.cpp',
360 '<(blink_modules_output_dir)/encoding/TextDecoderOptions.h', 372 '<(blink_modules_output_dir)/encoding/TextDecoderOptions.h',
361 '<(blink_modules_output_dir)/encryptedmedia/MediaEncryptedEventInit.cpp', 373 '<(blink_modules_output_dir)/encryptedmedia/MediaEncryptedEventInit.cpp',
362 '<(blink_modules_output_dir)/encryptedmedia/MediaEncryptedEventInit.h', 374 '<(blink_modules_output_dir)/encryptedmedia/MediaEncryptedEventInit.h',
363 '<(blink_modules_output_dir)/encryptedmedia/MediaKeyMessageEventInit.cpp', 375 '<(blink_modules_output_dir)/encryptedmedia/MediaKeyMessageEventInit.cpp',
364 '<(blink_modules_output_dir)/encryptedmedia/MediaKeyMessageEventInit.h', 376 '<(blink_modules_output_dir)/encryptedmedia/MediaKeyMessageEventInit.h',
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 'accessibility/AXTableCell.cpp', 488 'accessibility/AXTableCell.cpp',
477 'accessibility/AXTableCell.h', 489 'accessibility/AXTableCell.h',
478 'accessibility/AXTableColumn.cpp', 490 'accessibility/AXTableColumn.cpp',
479 'accessibility/AXTableColumn.h', 491 'accessibility/AXTableColumn.h',
480 'accessibility/AXTableHeaderContainer.cpp', 492 'accessibility/AXTableHeaderContainer.cpp',
481 'accessibility/AXTableHeaderContainer.h', 493 'accessibility/AXTableHeaderContainer.h',
482 'accessibility/AXTableRow.cpp', 494 'accessibility/AXTableRow.cpp',
483 'accessibility/AXTableRow.h', 495 'accessibility/AXTableRow.h',
484 'accessibility/InspectorAccessibilityAgent.cpp', 496 'accessibility/InspectorAccessibilityAgent.cpp',
485 'accessibility/InspectorAccessibilityAgent.h', 497 'accessibility/InspectorAccessibilityAgent.h',
498 'background_sync/ServiceWorkerGlobalScopeSync.h',
499 'background_sync/ServiceWorkerRegistrationSync.cpp',
500 'background_sync/ServiceWorkerRegistrationSync.h',
501 'background_sync/SyncError.cpp',
502 'background_sync/SyncError.h',
503 'background_sync/SyncEvent.cpp',
504 'background_sync/SyncEvent.h',
505 'background_sync/SyncManager.cpp',
506 'background_sync/SyncManager.h',
507 'background_sync/SyncRegistration.cpp',
508 'background_sync/SyncRegistration.h',
509 'background_sync/SyncRegistrationCallbacks.cpp',
510 'background_sync/SyncRegistrationCallbacks.h',
486 'battery/BatteryDispatcher.cpp', 511 'battery/BatteryDispatcher.cpp',
487 'battery/BatteryDispatcher.h', 512 'battery/BatteryDispatcher.h',
488 'battery/BatteryManager.cpp', 513 'battery/BatteryManager.cpp',
489 'battery/BatteryManager.h', 514 'battery/BatteryManager.h',
490 'battery/BatteryStatus.cpp', 515 'battery/BatteryStatus.cpp',
491 'battery/BatteryStatus.h', 516 'battery/BatteryStatus.h',
492 'battery/NavigatorBattery.cpp', 517 'battery/NavigatorBattery.cpp',
493 'battery/NavigatorBattery.h', 518 'battery/NavigatorBattery.h',
494 'beacon/NavigatorBeacon.cpp', 519 'beacon/NavigatorBeacon.cpp',
495 'beacon/NavigatorBeacon.h', 520 'beacon/NavigatorBeacon.h',
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
1239 'indexeddb/IDBKeyPathTest.cpp', 1264 'indexeddb/IDBKeyPathTest.cpp',
1240 'indexeddb/IDBRequestTest.cpp', 1265 'indexeddb/IDBRequestTest.cpp',
1241 'indexeddb/IDBTransactionTest.cpp', 1266 'indexeddb/IDBTransactionTest.cpp',
1242 'serviceworkers/CacheTest.cpp', 1267 'serviceworkers/CacheTest.cpp',
1243 'serviceworkers/ServiceWorkerContainerTest.cpp', 1268 'serviceworkers/ServiceWorkerContainerTest.cpp',
1244 'websockets/DOMWebSocketTest.cpp', 1269 'websockets/DOMWebSocketTest.cpp',
1245 'websockets/DocumentWebSocketChannelTest.cpp', 1270 'websockets/DocumentWebSocketChannelTest.cpp',
1246 ], 1271 ],
1247 }, 1272 },
1248 } 1273 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698