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

Unified 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: Make sure ids are 64 bit; fix formatting anomaly 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 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 57ef80c9c85de3205f81993c1442359ff7ac13f2..b6078e44db2d52f6f332798ede453a52c9a53cff 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/PeriodicSyncEvent.idl',
+ 'background_sync/PeriodicSyncManager.idl',
+ 'background_sync/PeriodicSyncRegistration.idl',
'background_sync/SyncEvent.idl',
'background_sync/SyncManager.idl',
'background_sync/SyncRegistration.idl',
@@ -303,6 +306,7 @@
# interfaces that inherit from Event
'modules_event_idl_files': [
'app_banner/BeforeInstallPromptEvent.idl',
+ 'background_sync/PeriodicSyncEvent.idl',
'background_sync/SyncEvent.idl',
'device_light/DeviceLightEvent.idl',
'device_orientation/DeviceMotionEvent.idl',
@@ -336,6 +340,8 @@
],
'modules_dictionary_idl_files': [
'app_banner/BeforeInstallPromptEventInit.idl',
+ 'background_sync/PeriodicSyncEventInit.idl',
+ 'background_sync/PeriodicSyncRegistrationOptions.idl',
'background_sync/SyncEventInit.idl',
'background_sync/SyncRegistrationOptions.idl',
'cachestorage/CacheQueryOptions.idl',
@@ -392,6 +398,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/PeriodicSyncEventInit.cpp',
+ '<(blink_modules_output_dir)/background_sync/PeriodicSyncEventInit.h',
+ '<(blink_modules_output_dir)/background_sync/PeriodicSyncRegistrationOptions.cpp',
+ '<(blink_modules_output_dir)/background_sync/PeriodicSyncRegistrationOptions.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',
@@ -543,6 +553,12 @@
'app_banner/AppBannerController.h',
'app_banner/BeforeInstallPromptEvent.cpp',
'app_banner/BeforeInstallPromptEvent.h',
+ 'background_sync/PeriodicSyncEvent.cpp',
+ 'background_sync/PeriodicSyncEvent.h',
+ 'background_sync/PeriodicSyncManager.cpp',
+ 'background_sync/PeriodicSyncManager.h',
+ 'background_sync/PeriodicSyncRegistration.cpp',
+ 'background_sync/PeriodicSyncRegistration.h',
'background_sync/ServiceWorkerGlobalScopeSync.h',
'background_sync/ServiceWorkerRegistrationSync.cpp',
'background_sync/ServiceWorkerRegistrationSync.h',

Powered by Google App Engine
This is Rietveld 408576698