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

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

Issue 1535943005: Initial implementation of bindings and basic classes for worklets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 11 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
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 'websockets/WebSocket.idl', 304 'websockets/WebSocket.idl',
305 'webusb/USB.idl', 305 'webusb/USB.idl',
306 'webusb/USBAlternateInterface.idl', 306 'webusb/USBAlternateInterface.idl',
307 'webusb/USBEndpoint.idl', 307 'webusb/USBEndpoint.idl',
308 'webusb/USBConfiguration.idl', 308 'webusb/USBConfiguration.idl',
309 'webusb/USBConnectionEvent.idl', 309 'webusb/USBConnectionEvent.idl',
310 'webusb/USBDevice.idl', 310 'webusb/USBDevice.idl',
311 'webusb/USBInTransferResult.idl', 311 'webusb/USBInTransferResult.idl',
312 'webusb/USBInterface.idl', 312 'webusb/USBInterface.idl',
313 'webusb/USBOutTransferResult.idl', 313 'webusb/USBOutTransferResult.idl',
314 'worklet/Worklet.idl',
315 'worklet/WorkletGlobalScope.idl',
314 ], 316 ],
315 # 'partial interface' or target (right side of) 'implements' 317 # 'partial interface' or target (right side of) 'implements'
316 'modules_dependency_idl_files': [ 318 'modules_dependency_idl_files': [
317 'audio_output_devices/HTMLMediaElementAudioOutputDevice.idl', 319 'audio_output_devices/HTMLMediaElementAudioOutputDevice.idl',
318 'background_sync/ServiceWorkerGlobalScopeSync.idl', 320 'background_sync/ServiceWorkerGlobalScopeSync.idl',
319 'background_sync/ServiceWorkerRegistrationSync.idl', 321 'background_sync/ServiceWorkerRegistrationSync.idl',
320 'battery/NavigatorBattery.idl', 322 'battery/NavigatorBattery.idl',
321 'beacon/NavigatorBeacon.idl', 323 'beacon/NavigatorBeacon.idl',
322 'bluetooth/NavigatorBluetooth.idl', 324 'bluetooth/NavigatorBluetooth.idl',
323 'cachestorage/WindowCacheStorage.idl', 325 'cachestorage/WindowCacheStorage.idl',
(...skipping 1501 matching lines...) Expand 10 before | Expand all | Expand 10 after
1825 'webusb/USBDevice.cpp', 1827 'webusb/USBDevice.cpp',
1826 'webusb/USBDevice.h', 1828 'webusb/USBDevice.h',
1827 'webusb/USBEndpoint.cpp', 1829 'webusb/USBEndpoint.cpp',
1828 'webusb/USBEndpoint.h', 1830 'webusb/USBEndpoint.h',
1829 'webusb/USBError.cpp', 1831 'webusb/USBError.cpp',
1830 'webusb/USBError.h', 1832 'webusb/USBError.h',
1831 'webusb/USBInTransferResult.h', 1833 'webusb/USBInTransferResult.h',
1832 'webusb/USBInterface.cpp', 1834 'webusb/USBInterface.cpp',
1833 'webusb/USBInterface.h', 1835 'webusb/USBInterface.h',
1834 'webusb/USBOutTransferResult.h', 1836 'webusb/USBOutTransferResult.h',
1837 'worklet/Worklet.cpp',
1838 'worklet/Worklet.h',
1839 'worklet/WorkletGlobalScope.cpp',
1840 'worklet/WorkletGlobalScope.h',
1835 ], 1841 ],
1836 # 'partial interface' or target (right side of) 'implements' 1842 # 'partial interface' or target (right side of) 'implements'
1837 'modules_testing_dependency_idl_files' : [ 1843 'modules_testing_dependency_idl_files' : [
1838 'accessibility/testing/InternalsAccessibility.idl', 1844 'accessibility/testing/InternalsAccessibility.idl',
1839 'geolocation/testing/InternalsGeolocation.idl', 1845 'geolocation/testing/InternalsGeolocation.idl',
1840 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl', 1846 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl',
1841 'serviceworkers/testing/InternalsServiceWorker.idl', 1847 'serviceworkers/testing/InternalsServiceWorker.idl',
1842 'speech/testing/InternalsSpeechSynthesis.idl', 1848 'speech/testing/InternalsSpeechSynthesis.idl',
1843 'vibration/testing/InternalsVibration.idl', 1849 'vibration/testing/InternalsVibration.idl',
1844 'webaudio/testing/InternalsWebAudio.idl', 1850 'webaudio/testing/InternalsWebAudio.idl',
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
1899 'webaudio/AudioBasicProcessorHandlerTest.cpp', 1905 'webaudio/AudioBasicProcessorHandlerTest.cpp',
1900 'webaudio/ConvolverNodeTest.cpp', 1906 'webaudio/ConvolverNodeTest.cpp',
1901 'webaudio/DynamicsCompressorNodeTest.cpp', 1907 'webaudio/DynamicsCompressorNodeTest.cpp',
1902 'webaudio/ScriptProcessorNodeTest.cpp', 1908 'webaudio/ScriptProcessorNodeTest.cpp',
1903 'webaudio/StereoPannerNodeTest.cpp', 1909 'webaudio/StereoPannerNodeTest.cpp',
1904 'websockets/DOMWebSocketTest.cpp', 1910 'websockets/DOMWebSocketTest.cpp',
1905 'websockets/DocumentWebSocketChannelTest.cpp', 1911 'websockets/DocumentWebSocketChannelTest.cpp',
1906 ], 1912 ],
1907 }, 1913 },
1908 } 1914 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698