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

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 OWNERS for platform/modules/background_sync 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 316b5f92985f928d234e03f0a5febf3823422846..1b73dbb0608b3ffaecf10cc18ec97cafc45b6ef0 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',
@@ -222,6 +225,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',
@@ -281,6 +286,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',
@@ -362,6 +370,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',
@@ -499,6 +511,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',

Powered by Google App Engine
This is Rietveld 408576698