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

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

Issue 232053005: Implement navigator.sendBeacon() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Adjust unrelated test expectation Created 6 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 'variables': { 2 'variables': {
3 # Experimental hooks for embedder to provide extra IDL and source files. 3 # Experimental hooks for embedder to provide extra IDL and source files.
4 # 4 #
5 # Note: this is not a supported API. If you rely on this, you will be broken 5 # Note: this is not a supported API. If you rely on this, you will be broken
6 # from time to time as the code generator changes in backward incompatible 6 # from time to time as the code generator changes in backward incompatible
7 # ways. 7 # ways.
8 'extra_blink_module_idl_files': [], 8 'extra_blink_module_idl_files': [],
9 'extra_blink_module_files': [], 9 'extra_blink_module_files': [],
10 # Files for which bindings (.cpp and .h files) will be generated 10 # Files for which bindings (.cpp and .h files) will be generated
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'webmidi/MIDIMessageEvent.idl', 182 'webmidi/MIDIMessageEvent.idl',
183 'webmidi/MIDIOutput.idl', 183 'webmidi/MIDIOutput.idl',
184 'webmidi/MIDIPort.idl', 184 'webmidi/MIDIPort.idl',
185 'webmidi/MIDISuccessCallback.idl', 185 'webmidi/MIDISuccessCallback.idl',
186 'websockets/CloseEvent.idl', 186 'websockets/CloseEvent.idl',
187 'websockets/WebSocket.idl', 187 'websockets/WebSocket.idl',
188 ], 188 ],
189 # 'partial interface' or target (right side of) 'implements' 189 # 'partial interface' or target (right side of) 'implements'
190 'modules_dependency_idl_files': [ 190 'modules_dependency_idl_files': [
191 'battery/NavigatorBattery.idl', 191 'battery/NavigatorBattery.idl',
192 'beacon/NavigatorBeacon.idl',
192 'crypto/WindowCrypto.idl', 193 'crypto/WindowCrypto.idl',
193 'crypto/WorkerGlobalScopeCrypto.idl', 194 'crypto/WorkerGlobalScopeCrypto.idl',
194 'device_orientation/WindowDeviceMotion.idl', 195 'device_orientation/WindowDeviceMotion.idl',
195 'device_orientation/WindowDeviceOrientation.idl', 196 'device_orientation/WindowDeviceOrientation.idl',
196 'donottrack/NavigatorDoNotTrack.idl', 197 'donottrack/NavigatorDoNotTrack.idl',
197 'encryptedmedia/HTMLMediaElementEncryptedMedia.idl', 198 'encryptedmedia/HTMLMediaElementEncryptedMedia.idl',
198 'filesystem/DataTransferItemFileSystem.idl', 199 'filesystem/DataTransferItemFileSystem.idl',
199 'filesystem/HTMLInputElementFileSystem.idl', 200 'filesystem/HTMLInputElementFileSystem.idl',
200 'filesystem/InspectorFrontendHostFileSystem.idl', 201 'filesystem/InspectorFrontendHostFileSystem.idl',
201 'filesystem/WindowFileSystem.idl', 202 'filesystem/WindowFileSystem.idl',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 'websockets/CloseEvent.idl', 253 'websockets/CloseEvent.idl',
253 ], 254 ],
254 'modules_files': [ 255 'modules_files': [
255 '<@(extra_blink_module_files)', 256 '<@(extra_blink_module_files)',
256 'battery/BatteryManager.cpp', 257 'battery/BatteryManager.cpp',
257 'battery/BatteryManager.h', 258 'battery/BatteryManager.h',
258 'battery/BatteryStatus.cpp', 259 'battery/BatteryStatus.cpp',
259 'battery/BatteryStatus.h', 260 'battery/BatteryStatus.h',
260 'battery/NavigatorBattery.cpp', 261 'battery/NavigatorBattery.cpp',
261 'battery/NavigatorBattery.h', 262 'battery/NavigatorBattery.h',
263 'beacon/NavigatorBeacon.cpp',
264 'beacon/NavigatorBeacon.h',
262 'crypto/AesKeyAlgorithm.cpp', 265 'crypto/AesKeyAlgorithm.cpp',
263 'crypto/AesKeyAlgorithm.h', 266 'crypto/AesKeyAlgorithm.h',
264 'crypto/Crypto.cpp', 267 'crypto/Crypto.cpp',
265 'crypto/Crypto.h', 268 'crypto/Crypto.h',
266 'crypto/CryptoResultImpl.cpp', 269 'crypto/CryptoResultImpl.cpp',
267 'crypto/CryptoResultImpl.h', 270 'crypto/CryptoResultImpl.h',
268 'crypto/DOMWindowCrypto.cpp', 271 'crypto/DOMWindowCrypto.cpp',
269 'crypto/DOMWindowCrypto.h', 272 'crypto/DOMWindowCrypto.h',
270 'crypto/HmacKeyAlgorithm.cpp', 273 'crypto/HmacKeyAlgorithm.cpp',
271 'crypto/HmacKeyAlgorithm.h', 274 'crypto/HmacKeyAlgorithm.h',
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
916 'indexeddb/IDBKeyPathTest.cpp', 919 'indexeddb/IDBKeyPathTest.cpp',
917 'indexeddb/IDBRequestTest.cpp', 920 'indexeddb/IDBRequestTest.cpp',
918 'indexeddb/IDBTransactionTest.cpp', 921 'indexeddb/IDBTransactionTest.cpp',
919 'websockets/WebSocketDeflaterTest.cpp', 922 'websockets/WebSocketDeflaterTest.cpp',
920 'websockets/WebSocketExtensionDispatcherTest.cpp', 923 'websockets/WebSocketExtensionDispatcherTest.cpp',
921 'websockets/WebSocketExtensionParserTest.cpp', 924 'websockets/WebSocketExtensionParserTest.cpp',
922 'websockets/WebSocketPerMessageDeflateTest.cpp', 925 'websockets/WebSocketPerMessageDeflateTest.cpp',
923 ], 926 ],
924 }, 927 },
925 } 928 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698