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

Side by Side Diff: third_party/WebKit/Source/modules/modules.gypi

Issue 2004643002: Implement BroadcastChannel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on hashtraits change Created 4 years, 6 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/AppBannerPromptResult.idl', 17 'app_banner/AppBannerPromptResult.idl',
18 'app_banner/BeforeInstallPromptEvent.idl', 18 'app_banner/BeforeInstallPromptEvent.idl',
19 'background_sync/SyncEvent.idl', 19 'background_sync/SyncEvent.idl',
20 'background_sync/SyncManager.idl', 20 'background_sync/SyncManager.idl',
21 'battery/BatteryManager.idl', 21 'battery/BatteryManager.idl',
22 'bluetooth/Bluetooth.idl', 22 'bluetooth/Bluetooth.idl',
23 'bluetooth/BluetoothDevice.idl', 23 'bluetooth/BluetoothDevice.idl',
24 'bluetooth/BluetoothCharacteristicProperties.idl', 24 'bluetooth/BluetoothCharacteristicProperties.idl',
25 'bluetooth/BluetoothRemoteGATTCharacteristic.idl', 25 'bluetooth/BluetoothRemoteGATTCharacteristic.idl',
26 'bluetooth/BluetoothRemoteGATTServer.idl', 26 'bluetooth/BluetoothRemoteGATTServer.idl',
27 'bluetooth/BluetoothRemoteGATTService.idl', 27 'bluetooth/BluetoothRemoteGATTService.idl',
28 'bluetooth/BluetoothUUID.idl', 28 'bluetooth/BluetoothUUID.idl',
29 'broadcastchannel/BroadcastChannel.idl',
29 'cachestorage/Cache.idl', 30 'cachestorage/Cache.idl',
30 'cachestorage/CacheStorage.idl', 31 'cachestorage/CacheStorage.idl',
31 'canvas2d/CanvasGradient.idl', 32 'canvas2d/CanvasGradient.idl',
32 'canvas2d/CanvasPattern.idl', 33 'canvas2d/CanvasPattern.idl',
33 'canvas2d/CanvasRenderingContext2D.idl', 34 'canvas2d/CanvasRenderingContext2D.idl',
34 'canvas2d/Path2D.idl', 35 'canvas2d/Path2D.idl',
35 'compositorworker/CompositorWorker.idl', 36 'compositorworker/CompositorWorker.idl',
36 'compositorworker/CompositorWorkerGlobalScope.idl', 37 'compositorworker/CompositorWorkerGlobalScope.idl',
37 'credentialmanager/Credential.idl', 38 'credentialmanager/Credential.idl',
38 'credentialmanager/CredentialsContainer.idl', 39 'credentialmanager/CredentialsContainer.idl',
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 'bluetooth/BluetoothRemoteGATTServer.cpp', 869 'bluetooth/BluetoothRemoteGATTServer.cpp',
869 'bluetooth/BluetoothRemoteGATTServer.h', 870 'bluetooth/BluetoothRemoteGATTServer.h',
870 'bluetooth/BluetoothRemoteGATTService.cpp', 871 'bluetooth/BluetoothRemoteGATTService.cpp',
871 'bluetooth/BluetoothRemoteGATTService.h', 872 'bluetooth/BluetoothRemoteGATTService.h',
872 'bluetooth/BluetoothSupplement.cpp', 873 'bluetooth/BluetoothSupplement.cpp',
873 'bluetooth/BluetoothSupplement.h', 874 'bluetooth/BluetoothSupplement.h',
874 'bluetooth/BluetoothUUID.cpp', 875 'bluetooth/BluetoothUUID.cpp',
875 'bluetooth/BluetoothUUID.h', 876 'bluetooth/BluetoothUUID.h',
876 'bluetooth/NavigatorBluetooth.cpp', 877 'bluetooth/NavigatorBluetooth.cpp',
877 'bluetooth/NavigatorBluetooth.h', 878 'bluetooth/NavigatorBluetooth.h',
879 'broadcastchannel/BroadcastChannel.cpp',
880 'broadcastchannel/BroadcastChannel.h',
881 'broadcastchannel/BroadcastChannelConnection.cpp',
882 'broadcastchannel/BroadcastChannelConnection.h',
878 'cachestorage/Cache.cpp', 883 'cachestorage/Cache.cpp',
879 'cachestorage/Cache.h', 884 'cachestorage/Cache.h',
880 'cachestorage/CacheStorage.cpp', 885 'cachestorage/CacheStorage.cpp',
881 'cachestorage/CacheStorage.h', 886 'cachestorage/CacheStorage.h',
882 'cachestorage/CacheStorageError.cpp', 887 'cachestorage/CacheStorageError.cpp',
883 'cachestorage/CacheStorageError.h', 888 'cachestorage/CacheStorageError.h',
884 'cachestorage/GlobalCacheStorage.cpp', 889 'cachestorage/GlobalCacheStorage.cpp',
885 'cachestorage/GlobalCacheStorage.h', 890 'cachestorage/GlobalCacheStorage.h',
886 'cachestorage/InspectorCacheStorageAgent.cpp', 891 'cachestorage/InspectorCacheStorageAgent.cpp',
887 'cachestorage/InspectorCacheStorageAgent.h', 892 'cachestorage/InspectorCacheStorageAgent.h',
(...skipping 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after
2021 'webaudio/ConvolverNodeTest.cpp', 2026 'webaudio/ConvolverNodeTest.cpp',
2022 'webaudio/DynamicsCompressorNodeTest.cpp', 2027 'webaudio/DynamicsCompressorNodeTest.cpp',
2023 'webaudio/ScriptProcessorNodeTest.cpp', 2028 'webaudio/ScriptProcessorNodeTest.cpp',
2024 'webaudio/StereoPannerNodeTest.cpp', 2029 'webaudio/StereoPannerNodeTest.cpp',
2025 'webdatabase/QuotaTrackerTest.cpp', 2030 'webdatabase/QuotaTrackerTest.cpp',
2026 'websockets/DOMWebSocketTest.cpp', 2031 'websockets/DOMWebSocketTest.cpp',
2027 'websockets/DocumentWebSocketChannelTest.cpp', 2032 'websockets/DocumentWebSocketChannelTest.cpp',
2028 ], 2033 ],
2029 }, 2034 },
2030 } 2035 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698