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

Unified 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: Update failing layout test Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: Source/modules/modules.gypi
diff --git a/Source/modules/modules.gypi b/Source/modules/modules.gypi
index 7f410c637517f7beb1830216c3dfcada5d761788..6eb6f7fab4a937b44caea77e0ae7bdb4292b1f2f 100644
--- a/Source/modules/modules.gypi
+++ b/Source/modules/modules.gypi
@@ -14,6 +14,9 @@
# Files for which bindings (.cpp and .h files) will be generated
'modules_idl_files': [
'<@(extra_blink_module_idl_files)',
+ 'background_sync/SyncEvent.idl',
+ 'background_sync/SyncManager.idl',
+ 'background_sync/SyncRegistration.idl',
'battery/BatteryManager.idl',
'bluetooth/Bluetooth.idl',
'bluetooth/BluetoothDevice.idl',
@@ -219,6 +222,8 @@
],
# 'partial interface' or target (right side of) 'implements'
'modules_dependency_idl_files': [
+ 'background_sync/ServiceWorkerGlobalScopeSync.idl',
+ 'background_sync/ServiceWorkerRegistrationSync.idl',
'battery/NavigatorBattery.idl',
'beacon/NavigatorBeacon.idl',
'bluetooth/NavigatorBluetooth.idl',
@@ -276,6 +281,7 @@
],
# interfaces that inherit from Event
'modules_event_idl_files': [
+ 'background_sync/SyncEvent.idl',
'device_light/DeviceLightEvent.idl',
'device_orientation/DeviceMotionEvent.idl',
'device_orientation/DeviceOrientationEvent.idl',
@@ -306,6 +312,8 @@
'websockets/CloseEvent.idl',
],
'modules_dictionary_idl_files': [
+ 'background_sync/SyncEventInit.idl',
+ 'background_sync/SyncRegistrationOptions.idl',
'device_light/DeviceLightEventInit.idl',
'encoding/TextDecodeOptions.idl',
'encoding/TextDecoderOptions.idl',
@@ -352,6 +360,10 @@
'<(blink_modules_output_dir)/IndexedDBNames.h',
],
'generated_modules_dictionary_files': [
+ '<(blink_modules_output_dir)/background_sync/SyncEventInit.cpp',
+ '<(blink_modules_output_dir)/background_sync/SyncEventInit.h',
+ '<(blink_modules_output_dir)/background_sync/SyncRegistrationOptions.cpp',
+ '<(blink_modules_output_dir)/background_sync/SyncRegistrationOptions.h',
'<(blink_modules_output_dir)/device_light/DeviceLightEventInit.cpp',
'<(blink_modules_output_dir)/device_light/DeviceLightEventInit.h',
'<(blink_modules_output_dir)/encoding/TextDecodeOptions.cpp',
@@ -483,6 +495,19 @@
'accessibility/AXTableRow.h',
'accessibility/InspectorAccessibilityAgent.cpp',
'accessibility/InspectorAccessibilityAgent.h',
+ 'background_sync/ServiceWorkerGlobalScopeSync.h',
+ 'background_sync/ServiceWorkerRegistrationSync.cpp',
+ 'background_sync/ServiceWorkerRegistrationSync.h',
+ 'background_sync/SyncError.cpp',
+ 'background_sync/SyncError.h',
+ 'background_sync/SyncEvent.cpp',
+ 'background_sync/SyncEvent.h',
+ 'background_sync/SyncManager.cpp',
+ 'background_sync/SyncManager.h',
+ 'background_sync/SyncRegistration.cpp',
+ 'background_sync/SyncRegistration.h',
+ 'background_sync/SyncRegistrationCallbacks.cpp',
+ 'background_sync/SyncRegistrationCallbacks.h',
'battery/BatteryDispatcher.cpp',
'battery/BatteryDispatcher.h',
'battery/BatteryManager.cpp',

Powered by Google App Engine
This is Rietveld 408576698