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

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: Add missing serviceWorkerRegistration.syncManager to interface tests 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 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 d2ba53b4e410db53be18da057c77446b70e26d46..326c673f4f3ee72a6feded29cac7156f0821a97a 100644
--- a/Source/modules/modules.gypi
+++ b/Source/modules/modules.gypi
@@ -15,6 +15,9 @@
'modules_idl_files': [
'<@(extra_blink_module_idl_files)',
'app_banner/BeforeInstallPromptEvent.idl',
+ 'background_sync/SyncEvent.idl',
+ 'background_sync/SyncManager.idl',
+ 'background_sync/SyncRegistration.idl',
'battery/BatteryManager.idl',
'bluetooth/Bluetooth.idl',
'bluetooth/BluetoothDevice.idl',
@@ -221,6 +224,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',
@@ -280,6 +285,7 @@
# interfaces that inherit from Event
'modules_event_idl_files': [
'app_banner/BeforeInstallPromptEvent.idl',
+ 'background_sync/SyncEvent.idl',
'device_light/DeviceLightEvent.idl',
'device_orientation/DeviceMotionEvent.idl',
'device_orientation/DeviceOrientationEvent.idl',
@@ -313,6 +319,8 @@
],
'modules_dictionary_idl_files': [
'app_banner/BeforeInstallPromptEventInit.idl',
+ 'background_sync/SyncEventInit.idl',
+ 'background_sync/SyncRegistrationOptions.idl',
'device_light/DeviceLightEventInit.idl',
'encoding/TextDecodeOptions.idl',
'encoding/TextDecoderOptions.idl',
@@ -363,6 +371,10 @@
'generated_modules_dictionary_files': [
'<(blink_modules_output_dir)/app_banner/BeforeInstallPromptEventInit.cpp',
'<(blink_modules_output_dir)/app_banner/BeforeInstallPromptEventInit.h',
+ '<(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',
@@ -502,6 +514,19 @@
'app_banner/AppBannerController.h',
'app_banner/BeforeInstallPromptEvent.cpp',
'app_banner/BeforeInstallPromptEvent.h',
+ 'background_sync/ServiceWorkerGlobalScopeSync.h',
+ 'background_sync/ServiceWorkerRegistrationSync.cpp',
+ 'background_sync/ServiceWorkerRegistrationSync.h',
+ 'background_sync/SyncCallbacks.cpp',
+ 'background_sync/SyncCallbacks.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',
'battery/BatteryDispatcher.cpp',
'battery/BatteryDispatcher.h',
'battery/BatteryManager.cpp',
« no previous file with comments | « Source/modules/background_sync/SyncRegistrationOptions.idl ('k') | Source/modules/serviceworkers/ServiceWorkerGlobalScope.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698