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

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: 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 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 'cachestorage/Cache.idl', 29 'cachestorage/Cache.idl',
27 'cachestorage/CacheStorage.idl', 30 'cachestorage/CacheStorage.idl',
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 'storage/WindowStorage.idl', 299 'storage/WindowStorage.idl',
297 'vibration/NavigatorVibration.idl', 300 'vibration/NavigatorVibration.idl',
298 'vr/NavigatorVRDevice.idl', 301 'vr/NavigatorVRDevice.idl',
299 'webaudio/WindowWebAudio.idl', 302 'webaudio/WindowWebAudio.idl',
300 'webdatabase/WindowWebDatabase.idl', 303 'webdatabase/WindowWebDatabase.idl',
301 'webmidi/NavigatorWebMIDI.idl', 304 'webmidi/NavigatorWebMIDI.idl',
302 ], 305 ],
303 # interfaces that inherit from Event 306 # interfaces that inherit from Event
304 'modules_event_idl_files': [ 307 'modules_event_idl_files': [
305 'app_banner/BeforeInstallPromptEvent.idl', 308 'app_banner/BeforeInstallPromptEvent.idl',
309 'background_sync/PeriodicSyncEvent.idl',
306 'background_sync/SyncEvent.idl', 310 'background_sync/SyncEvent.idl',
307 'device_light/DeviceLightEvent.idl', 311 'device_light/DeviceLightEvent.idl',
308 'device_orientation/DeviceMotionEvent.idl', 312 'device_orientation/DeviceMotionEvent.idl',
309 'device_orientation/DeviceOrientationEvent.idl', 313 'device_orientation/DeviceOrientationEvent.idl',
310 'encryptedmedia/MediaEncryptedEvent.idl', 314 'encryptedmedia/MediaEncryptedEvent.idl',
311 'encryptedmedia/MediaKeyMessageEvent.idl', 315 'encryptedmedia/MediaKeyMessageEvent.idl',
312 'gamepad/GamepadEvent.idl', 316 'gamepad/GamepadEvent.idl',
313 'geofencing/GeofencingEvent.idl', 317 'geofencing/GeofencingEvent.idl',
314 'indexeddb/IDBVersionChangeEvent.idl', 318 'indexeddb/IDBVersionChangeEvent.idl',
315 'mediastream/MediaStreamEvent.idl', 319 'mediastream/MediaStreamEvent.idl',
(...skipping 13 matching lines...) Expand all
329 'speech/SpeechSynthesisEvent.idl', 333 'speech/SpeechSynthesisEvent.idl',
330 'storage/StorageEvent.idl', 334 'storage/StorageEvent.idl',
331 'webaudio/AudioProcessingEvent.idl', 335 'webaudio/AudioProcessingEvent.idl',
332 'webaudio/OfflineAudioCompletionEvent.idl', 336 'webaudio/OfflineAudioCompletionEvent.idl',
333 'webmidi/MIDIConnectionEvent.idl', 337 'webmidi/MIDIConnectionEvent.idl',
334 'webmidi/MIDIMessageEvent.idl', 338 'webmidi/MIDIMessageEvent.idl',
335 'websockets/CloseEvent.idl', 339 'websockets/CloseEvent.idl',
336 ], 340 ],
337 'modules_dictionary_idl_files': [ 341 'modules_dictionary_idl_files': [
338 'app_banner/BeforeInstallPromptEventInit.idl', 342 'app_banner/BeforeInstallPromptEventInit.idl',
343 'background_sync/PeriodicSyncEventInit.idl',
344 'background_sync/PeriodicSyncRegistrationOptions.idl',
339 'background_sync/SyncEventInit.idl', 345 'background_sync/SyncEventInit.idl',
340 'background_sync/SyncRegistrationOptions.idl', 346 'background_sync/SyncRegistrationOptions.idl',
341 'cachestorage/CacheQueryOptions.idl', 347 'cachestorage/CacheQueryOptions.idl',
342 'device_light/DeviceLightEventInit.idl', 348 'device_light/DeviceLightEventInit.idl',
343 'encoding/TextDecodeOptions.idl', 349 'encoding/TextDecodeOptions.idl',
344 'encoding/TextDecoderOptions.idl', 350 'encoding/TextDecoderOptions.idl',
345 'encryptedmedia/MediaEncryptedEventInit.idl', 351 'encryptedmedia/MediaEncryptedEventInit.idl',
346 'encryptedmedia/MediaKeyMessageEventInit.idl', 352 'encryptedmedia/MediaKeyMessageEventInit.idl',
347 'encryptedmedia/MediaKeySystemConfiguration.idl', 353 'encryptedmedia/MediaKeySystemConfiguration.idl',
348 'encryptedmedia/MediaKeySystemMediaCapability.idl', 354 'encryptedmedia/MediaKeySystemMediaCapability.idl',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
385 '<(blink_modules_output_dir)/EventModulesNames.cpp', 391 '<(blink_modules_output_dir)/EventModulesNames.cpp',
386 '<(blink_modules_output_dir)/EventModulesNames.h', 392 '<(blink_modules_output_dir)/EventModulesNames.h',
387 '<(blink_modules_output_dir)/EventTargetModulesNames.cpp', 393 '<(blink_modules_output_dir)/EventTargetModulesNames.cpp',
388 '<(blink_modules_output_dir)/EventTargetModulesNames.h', 394 '<(blink_modules_output_dir)/EventTargetModulesNames.h',
389 '<(blink_modules_output_dir)/IndexedDBNames.cpp', 395 '<(blink_modules_output_dir)/IndexedDBNames.cpp',
390 '<(blink_modules_output_dir)/IndexedDBNames.h', 396 '<(blink_modules_output_dir)/IndexedDBNames.h',
391 ], 397 ],
392 'generated_modules_dictionary_files': [ 398 'generated_modules_dictionary_files': [
393 '<(blink_modules_output_dir)/app_banner/BeforeInstallPromptEventInit.cpp', 399 '<(blink_modules_output_dir)/app_banner/BeforeInstallPromptEventInit.cpp',
394 '<(blink_modules_output_dir)/app_banner/BeforeInstallPromptEventInit.h', 400 '<(blink_modules_output_dir)/app_banner/BeforeInstallPromptEventInit.h',
401 '<(blink_modules_output_dir)/background_sync/PeriodicSyncEventInit.cpp',
402 '<(blink_modules_output_dir)/background_sync/PeriodicSyncEventInit.h',
403 '<(blink_modules_output_dir)/background_sync/PeriodicSyncRegistrationOptio ns.cpp',
404 '<(blink_modules_output_dir)/background_sync/PeriodicSyncRegistrationOptio ns.h',
395 '<(blink_modules_output_dir)/background_sync/SyncEventInit.cpp', 405 '<(blink_modules_output_dir)/background_sync/SyncEventInit.cpp',
396 '<(blink_modules_output_dir)/background_sync/SyncEventInit.h', 406 '<(blink_modules_output_dir)/background_sync/SyncEventInit.h',
397 '<(blink_modules_output_dir)/background_sync/SyncRegistrationOptions.cpp', 407 '<(blink_modules_output_dir)/background_sync/SyncRegistrationOptions.cpp',
398 '<(blink_modules_output_dir)/background_sync/SyncRegistrationOptions.h', 408 '<(blink_modules_output_dir)/background_sync/SyncRegistrationOptions.h',
399 '<(blink_modules_output_dir)/cachestorage/CacheQueryOptions.cpp', 409 '<(blink_modules_output_dir)/cachestorage/CacheQueryOptions.cpp',
400 '<(blink_modules_output_dir)/cachestorage/CacheQueryOptions.h', 410 '<(blink_modules_output_dir)/cachestorage/CacheQueryOptions.h',
401 '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.cpp', 411 '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.cpp',
402 '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.h', 412 '<(blink_modules_output_dir)/device_light/DeviceLightEventInit.h',
403 '<(blink_modules_output_dir)/encoding/TextDecodeOptions.cpp', 413 '<(blink_modules_output_dir)/encoding/TextDecodeOptions.cpp',
404 '<(blink_modules_output_dir)/encoding/TextDecodeOptions.h', 414 '<(blink_modules_output_dir)/encoding/TextDecodeOptions.h',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 'accessibility/AXTableHeaderContainer.cpp', 546 'accessibility/AXTableHeaderContainer.cpp',
537 'accessibility/AXTableHeaderContainer.h', 547 'accessibility/AXTableHeaderContainer.h',
538 'accessibility/AXTableRow.cpp', 548 'accessibility/AXTableRow.cpp',
539 'accessibility/AXTableRow.h', 549 'accessibility/AXTableRow.h',
540 'accessibility/InspectorAccessibilityAgent.cpp', 550 'accessibility/InspectorAccessibilityAgent.cpp',
541 'accessibility/InspectorAccessibilityAgent.h', 551 'accessibility/InspectorAccessibilityAgent.h',
542 'app_banner/AppBannerController.cpp', 552 'app_banner/AppBannerController.cpp',
543 'app_banner/AppBannerController.h', 553 'app_banner/AppBannerController.h',
544 'app_banner/BeforeInstallPromptEvent.cpp', 554 'app_banner/BeforeInstallPromptEvent.cpp',
545 'app_banner/BeforeInstallPromptEvent.h', 555 'app_banner/BeforeInstallPromptEvent.h',
556 'background_sync/PeriodicSyncEvent.cpp',
557 'background_sync/PeriodicSyncEvent.h',
558 'background_sync/PeriodicSyncManager.cpp',
559 'background_sync/PeriodicSyncManager.h',
560 'background_sync/PeriodicSyncRegistration.cpp',
561 'background_sync/PeriodicSyncRegistration.h',
546 'background_sync/ServiceWorkerGlobalScopeSync.h', 562 'background_sync/ServiceWorkerGlobalScopeSync.h',
547 'background_sync/ServiceWorkerRegistrationSync.cpp', 563 'background_sync/ServiceWorkerRegistrationSync.cpp',
548 'background_sync/ServiceWorkerRegistrationSync.h', 564 'background_sync/ServiceWorkerRegistrationSync.h',
549 'background_sync/SyncCallbacks.cpp', 565 'background_sync/SyncCallbacks.cpp',
550 'background_sync/SyncCallbacks.h', 566 'background_sync/SyncCallbacks.h',
551 'background_sync/SyncError.cpp', 567 'background_sync/SyncError.cpp',
552 'background_sync/SyncError.h', 568 'background_sync/SyncError.h',
553 'background_sync/SyncEvent.cpp', 569 'background_sync/SyncEvent.cpp',
554 'background_sync/SyncEvent.h', 570 'background_sync/SyncEvent.h',
555 'background_sync/SyncManager.cpp', 571 'background_sync/SyncManager.cpp',
(...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after
1383 'filesystem/DOMFileSystemBaseTest.cpp', 1399 'filesystem/DOMFileSystemBaseTest.cpp',
1384 'indexeddb/IDBKeyPathTest.cpp', 1400 'indexeddb/IDBKeyPathTest.cpp',
1385 'indexeddb/IDBRequestTest.cpp', 1401 'indexeddb/IDBRequestTest.cpp',
1386 'indexeddb/IDBTransactionTest.cpp', 1402 'indexeddb/IDBTransactionTest.cpp',
1387 'serviceworkers/ServiceWorkerContainerTest.cpp', 1403 'serviceworkers/ServiceWorkerContainerTest.cpp',
1388 'websockets/DOMWebSocketTest.cpp', 1404 'websockets/DOMWebSocketTest.cpp',
1389 'websockets/DocumentWebSocketChannelTest.cpp', 1405 'websockets/DocumentWebSocketChannelTest.cpp',
1390 ], 1406 ],
1391 }, 1407 },
1392 } 1408 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698