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

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

Issue 1096503002: [Background Sync] Converting Blink code to the MVP API (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Unregister method requires the sync registration tag Created 5 years, 8 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 'app_banner/BeforeInstallPromptEvent.idl', 17 'app_banner/BeforeInstallPromptEvent.idl',
18 'background_sync/PeriodicSyncEvent.idl',
19 'background_sync/PeriodicSyncManager.idl',
20 'background_sync/PeriodicSyncRegistration.idl',
18 'background_sync/SyncEvent.idl', 21 'background_sync/SyncEvent.idl',
19 'background_sync/SyncManager.idl', 22 'background_sync/SyncManager.idl',
20 'background_sync/SyncRegistration.idl', 23 'background_sync/SyncRegistration.idl',
21 'battery/BatteryManager.idl', 24 'battery/BatteryManager.idl',
22 'bluetooth/Bluetooth.idl', 25 'bluetooth/Bluetooth.idl',
23 'bluetooth/BluetoothDevice.idl', 26 'bluetooth/BluetoothDevice.idl',
24 'bluetooth/BluetoothDiscovery.idl', 27 'bluetooth/BluetoothDiscovery.idl',
25 'bluetooth/BluetoothGATTRemoteServer.idl', 28 'bluetooth/BluetoothGATTRemoteServer.idl',
26 'bluetooth/BluetoothUUIDs.idl', 29 'bluetooth/BluetoothUUIDs.idl',
27 'cachestorage/Cache.idl', 30 'cachestorage/Cache.idl',
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 'storage/WindowStorage.idl', 300 'storage/WindowStorage.idl',
298 'vibration/NavigatorVibration.idl', 301 'vibration/NavigatorVibration.idl',
299 'vr/NavigatorVRDevice.idl', 302 'vr/NavigatorVRDevice.idl',
300 'webaudio/WindowWebAudio.idl', 303 'webaudio/WindowWebAudio.idl',
301 'webdatabase/WindowWebDatabase.idl', 304 'webdatabase/WindowWebDatabase.idl',
302 'webmidi/NavigatorWebMIDI.idl', 305 'webmidi/NavigatorWebMIDI.idl',
303 ], 306 ],
304 # interfaces that inherit from Event 307 # interfaces that inherit from Event
305 'modules_event_idl_files': [ 308 'modules_event_idl_files': [
306 'app_banner/BeforeInstallPromptEvent.idl', 309 'app_banner/BeforeInstallPromptEvent.idl',
310 'background_sync/PeriodicSyncEvent.idl',
307 'background_sync/SyncEvent.idl', 311 'background_sync/SyncEvent.idl',
308 'device_light/DeviceLightEvent.idl', 312 'device_light/DeviceLightEvent.idl',
309 'device_orientation/DeviceMotionEvent.idl', 313 'device_orientation/DeviceMotionEvent.idl',
310 'device_orientation/DeviceOrientationEvent.idl', 314 'device_orientation/DeviceOrientationEvent.idl',
311 'encryptedmedia/MediaEncryptedEvent.idl', 315 'encryptedmedia/MediaEncryptedEvent.idl',
312 'encryptedmedia/MediaKeyMessageEvent.idl', 316 'encryptedmedia/MediaKeyMessageEvent.idl',
313 'gamepad/GamepadEvent.idl', 317 'gamepad/GamepadEvent.idl',
314 'geofencing/GeofencingEvent.idl', 318 'geofencing/GeofencingEvent.idl',
315 'indexeddb/IDBVersionChangeEvent.idl', 319 'indexeddb/IDBVersionChangeEvent.idl',
316 'mediastream/MediaStreamEvent.idl', 320 'mediastream/MediaStreamEvent.idl',
(...skipping 13 matching lines...) Expand all
330 'speech/SpeechSynthesisEvent.idl', 334 'speech/SpeechSynthesisEvent.idl',
331 'storage/StorageEvent.idl', 335 'storage/StorageEvent.idl',
332 'webaudio/AudioProcessingEvent.idl', 336 'webaudio/AudioProcessingEvent.idl',
333 'webaudio/OfflineAudioCompletionEvent.idl', 337 'webaudio/OfflineAudioCompletionEvent.idl',
334 'webmidi/MIDIConnectionEvent.idl', 338 'webmidi/MIDIConnectionEvent.idl',
335 'webmidi/MIDIMessageEvent.idl', 339 'webmidi/MIDIMessageEvent.idl',
336 'websockets/CloseEvent.idl', 340 'websockets/CloseEvent.idl',
337 ], 341 ],
338 'modules_dictionary_idl_files': [ 342 'modules_dictionary_idl_files': [
339 'app_banner/BeforeInstallPromptEventInit.idl', 343 'app_banner/BeforeInstallPromptEventInit.idl',
344 'background_sync/PeriodicSyncEventInit.idl',
345 'background_sync/PeriodicSyncRegistrationOptions.idl',
340 'background_sync/SyncEventInit.idl', 346 'background_sync/SyncEventInit.idl',
341 'background_sync/SyncRegistrationOptions.idl', 347 'background_sync/SyncRegistrationOptions.idl',
342 'cachestorage/CacheQueryOptions.idl', 348 'cachestorage/CacheQueryOptions.idl',
343 'device_light/DeviceLightEventInit.idl', 349 'device_light/DeviceLightEventInit.idl',
344 'encoding/TextDecodeOptions.idl', 350 'encoding/TextDecodeOptions.idl',
345 'encoding/TextDecoderOptions.idl', 351 'encoding/TextDecoderOptions.idl',
346 'encryptedmedia/MediaEncryptedEventInit.idl', 352 'encryptedmedia/MediaEncryptedEventInit.idl',
347 'encryptedmedia/MediaKeyMessageEventInit.idl', 353 'encryptedmedia/MediaKeyMessageEventInit.idl',
348 'encryptedmedia/MediaKeySystemConfiguration.idl', 354 'encryptedmedia/MediaKeySystemConfiguration.idl',
349 'encryptedmedia/MediaKeySystemMediaCapability.idl', 355 'encryptedmedia/MediaKeySystemMediaCapability.idl',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 '<(blink_modules_output_dir)/EventModulesNames.cpp', 393 '<(blink_modules_output_dir)/EventModulesNames.cpp',
388 '<(blink_modules_output_dir)/EventModulesNames.h', 394 '<(blink_modules_output_dir)/EventModulesNames.h',
389 '<(blink_modules_output_dir)/EventTargetModulesNames.cpp', 395 '<(blink_modules_output_dir)/EventTargetModulesNames.cpp',
390 '<(blink_modules_output_dir)/EventTargetModulesNames.h', 396 '<(blink_modules_output_dir)/EventTargetModulesNames.h',
391 '<(blink_modules_output_dir)/IndexedDBNames.cpp', 397 '<(blink_modules_output_dir)/IndexedDBNames.cpp',
392 '<(blink_modules_output_dir)/IndexedDBNames.h', 398 '<(blink_modules_output_dir)/IndexedDBNames.h',
393 ], 399 ],
394 'generated_modules_dictionary_files': [ 400 'generated_modules_dictionary_files': [
395 '<(blink_modules_output_dir)/app_banner/BeforeInstallPromptEventInit.cpp', 401 '<(blink_modules_output_dir)/app_banner/BeforeInstallPromptEventInit.cpp',
396 '<(blink_modules_output_dir)/app_banner/BeforeInstallPromptEventInit.h', 402 '<(blink_modules_output_dir)/app_banner/BeforeInstallPromptEventInit.h',
403 '<(blink_modules_output_dir)/background_sync/PeriodicSyncEventInit.cpp',
404 '<(blink_modules_output_dir)/background_sync/PeriodicSyncEventInit.h',
405 '<(blink_modules_output_dir)/background_sync/PeriodicSyncRegistrationOptio ns.cpp',
406 '<(blink_modules_output_dir)/background_sync/PeriodicSyncRegistrationOptio ns.h',
397 '<(blink_modules_output_dir)/background_sync/SyncEventInit.cpp', 407 '<(blink_modules_output_dir)/background_sync/SyncEventInit.cpp',
398 '<(blink_modules_output_dir)/background_sync/SyncEventInit.h', 408 '<(blink_modules_output_dir)/background_sync/SyncEventInit.h',
399 '<(blink_modules_output_dir)/background_sync/SyncRegistrationOptions.cpp', 409 '<(blink_modules_output_dir)/background_sync/SyncRegistrationOptions.cpp',
400 '<(blink_modules_output_dir)/background_sync/SyncRegistrationOptions.h', 410 '<(blink_modules_output_dir)/background_sync/SyncRegistrationOptions.h',
401 '<(blink_modules_output_dir)/cachestorage/CacheQueryOptions.cpp', 411 '<(blink_modules_output_dir)/cachestorage/CacheQueryOptions.cpp',
402 '<(blink_modules_output_dir)/cachestorage/CacheQueryOptions.h', 412 '<(blink_modules_output_dir)/cachestorage/CacheQueryOptions.h',
403 '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.cpp', 413 '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.cpp',
404 '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.h', 414 '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.h',
405 '<(blink_modules_output_dir)/encoding/TextDecodeOptions.cpp', 415 '<(blink_modules_output_dir)/encoding/TextDecodeOptions.cpp',
406 '<(blink_modules_output_dir)/encoding/TextDecodeOptions.h', 416 '<(blink_modules_output_dir)/encoding/TextDecodeOptions.h',
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 'accessibility/AXTableHeaderContainer.cpp', 550 'accessibility/AXTableHeaderContainer.cpp',
541 'accessibility/AXTableHeaderContainer.h', 551 'accessibility/AXTableHeaderContainer.h',
542 'accessibility/AXTableRow.cpp', 552 'accessibility/AXTableRow.cpp',
543 'accessibility/AXTableRow.h', 553 'accessibility/AXTableRow.h',
544 'accessibility/InspectorAccessibilityAgent.cpp', 554 'accessibility/InspectorAccessibilityAgent.cpp',
545 'accessibility/InspectorAccessibilityAgent.h', 555 'accessibility/InspectorAccessibilityAgent.h',
546 'app_banner/AppBannerController.cpp', 556 'app_banner/AppBannerController.cpp',
547 'app_banner/AppBannerController.h', 557 'app_banner/AppBannerController.h',
548 'app_banner/BeforeInstallPromptEvent.cpp', 558 'app_banner/BeforeInstallPromptEvent.cpp',
549 'app_banner/BeforeInstallPromptEvent.h', 559 'app_banner/BeforeInstallPromptEvent.h',
560 'background_sync/PeriodicSyncEvent.cpp',
561 'background_sync/PeriodicSyncEvent.h',
562 'background_sync/PeriodicSyncManager.cpp',
563 'background_sync/PeriodicSyncManager.h',
564 'background_sync/PeriodicSyncRegistration.cpp',
565 'background_sync/PeriodicSyncRegistration.h',
550 'background_sync/ServiceWorkerGlobalScopeSync.h', 566 'background_sync/ServiceWorkerGlobalScopeSync.h',
551 'background_sync/ServiceWorkerRegistrationSync.cpp', 567 'background_sync/ServiceWorkerRegistrationSync.cpp',
552 'background_sync/ServiceWorkerRegistrationSync.h', 568 'background_sync/ServiceWorkerRegistrationSync.h',
553 'background_sync/SyncCallbacks.cpp', 569 'background_sync/SyncCallbacks.cpp',
554 'background_sync/SyncCallbacks.h', 570 'background_sync/SyncCallbacks.h',
555 'background_sync/SyncError.cpp', 571 'background_sync/SyncError.cpp',
556 'background_sync/SyncError.h', 572 'background_sync/SyncError.h',
557 'background_sync/SyncEvent.cpp', 573 'background_sync/SyncEvent.cpp',
558 'background_sync/SyncEvent.h', 574 'background_sync/SyncEvent.h',
559 'background_sync/SyncManager.cpp', 575 'background_sync/SyncManager.cpp',
(...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after
1403 'webaudio/AudioBasicProcessorHandlerTest.cpp', 1419 'webaudio/AudioBasicProcessorHandlerTest.cpp',
1404 'webaudio/ConvolverNodeTest.cpp', 1420 'webaudio/ConvolverNodeTest.cpp',
1405 'webaudio/DynamicsCompressorNodeTest.cpp', 1421 'webaudio/DynamicsCompressorNodeTest.cpp',
1406 'webaudio/ScriptProcessorNodeTest.cpp', 1422 'webaudio/ScriptProcessorNodeTest.cpp',
1407 'webaudio/StereoPannerNodeTest.cpp', 1423 'webaudio/StereoPannerNodeTest.cpp',
1408 'websockets/DOMWebSocketTest.cpp', 1424 'websockets/DOMWebSocketTest.cpp',
1409 'websockets/DocumentWebSocketChannelTest.cpp', 1425 'websockets/DocumentWebSocketChannelTest.cpp',
1410 ], 1426 ],
1411 }, 1427 },
1412 } 1428 }
OLDNEW
« no previous file with comments | « Source/modules/background_sync/SyncRegistrationOptions.idl ('k') | Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698