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

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

Issue 2262483003: Worklet: Move common worklet code from modules/worklet to core/workers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove modules/worklet directory Created 4 years, 4 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 'webusb/USBConfiguration.idl', 326 'webusb/USBConfiguration.idl',
327 'webusb/USBConnectionEvent.idl', 327 'webusb/USBConnectionEvent.idl',
328 'webusb/USBDevice.idl', 328 'webusb/USBDevice.idl',
329 'webusb/USBInTransferResult.idl', 329 'webusb/USBInTransferResult.idl',
330 'webusb/USBInterface.idl', 330 'webusb/USBInterface.idl',
331 'webusb/USBIsochronousInTransferPacket.idl', 331 'webusb/USBIsochronousInTransferPacket.idl',
332 'webusb/USBIsochronousInTransferResult.idl', 332 'webusb/USBIsochronousInTransferResult.idl',
333 'webusb/USBIsochronousOutTransferPacket.idl', 333 'webusb/USBIsochronousOutTransferPacket.idl',
334 'webusb/USBIsochronousOutTransferResult.idl', 334 'webusb/USBIsochronousOutTransferResult.idl',
335 'webusb/USBOutTransferResult.idl', 335 'webusb/USBOutTransferResult.idl',
336 'worklet/Worklet.idl',
337 ], 336 ],
338 # 'partial interface' or target (right side of) 'implements' 337 # 'partial interface' or target (right side of) 'implements'
339 'modules_dependency_idl_files': [ 338 'modules_dependency_idl_files': [
340 'audio_output_devices/HTMLMediaElementAudioOutputDevice.idl', 339 'audio_output_devices/HTMLMediaElementAudioOutputDevice.idl',
341 'background_sync/ServiceWorkerGlobalScopeSync.idl', 340 'background_sync/ServiceWorkerGlobalScopeSync.idl',
342 'background_sync/ServiceWorkerRegistrationSync.idl', 341 'background_sync/ServiceWorkerRegistrationSync.idl',
343 'battery/NavigatorBattery.idl', 342 'battery/NavigatorBattery.idl',
344 'beacon/NavigatorBeacon.idl', 343 'beacon/NavigatorBeacon.idl',
345 'bluetooth/NavigatorBluetooth.idl', 344 'bluetooth/NavigatorBluetooth.idl',
346 'budget/BudgetChunk.idl', 345 'budget/BudgetChunk.idl',
(...skipping 1641 matching lines...) Expand 10 before | Expand all | Expand 10 after
1988 'webusb/USBEndpoint.cpp', 1987 'webusb/USBEndpoint.cpp',
1989 'webusb/USBEndpoint.h', 1988 'webusb/USBEndpoint.h',
1990 'webusb/USBInTransferResult.h', 1989 'webusb/USBInTransferResult.h',
1991 'webusb/USBInterface.cpp', 1990 'webusb/USBInterface.cpp',
1992 'webusb/USBInterface.h', 1991 'webusb/USBInterface.h',
1993 'webusb/USBIsochronousInTransferPacket.h', 1992 'webusb/USBIsochronousInTransferPacket.h',
1994 'webusb/USBIsochronousInTransferResult.h', 1993 'webusb/USBIsochronousInTransferResult.h',
1995 'webusb/USBIsochronousOutTransferPacket.h', 1994 'webusb/USBIsochronousOutTransferPacket.h',
1996 'webusb/USBIsochronousOutTransferResult.h', 1995 'webusb/USBIsochronousOutTransferResult.h',
1997 'webusb/USBOutTransferResult.h', 1996 'webusb/USBOutTransferResult.h',
1998 'worklet/ThreadedWorkletGlobalScopeProxy.h',
1999 'worklet/Worklet.cpp',
2000 'worklet/Worklet.h',
2001 'worklet/WorkletScriptLoader.cpp',
2002 'worklet/WorkletScriptLoader.h',
2003 ], 1997 ],
2004 # 'partial interface' or target (right side of) 'implements' 1998 # 'partial interface' or target (right side of) 'implements'
2005 'modules_testing_dependency_idl_files' : [ 1999 'modules_testing_dependency_idl_files' : [
2006 'accessibility/testing/InternalsAccessibility.idl', 2000 'accessibility/testing/InternalsAccessibility.idl',
2007 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl', 2001 'navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl',
2008 'peerconnection/testing/InternalsRTCCertificate.idl', 2002 'peerconnection/testing/InternalsRTCCertificate.idl',
2009 'serviceworkers/testing/InternalsServiceWorker.idl', 2003 'serviceworkers/testing/InternalsServiceWorker.idl',
2010 'speech/testing/InternalsSpeechSynthesis.idl', 2004 'speech/testing/InternalsSpeechSynthesis.idl',
2011 'vibration/testing/InternalsVibration.idl', 2005 'vibration/testing/InternalsVibration.idl',
2012 'webaudio/testing/InternalsWebAudio.idl', 2006 'webaudio/testing/InternalsWebAudio.idl',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
2086 'webaudio/ConvolverNodeTest.cpp', 2080 'webaudio/ConvolverNodeTest.cpp',
2087 'webaudio/DynamicsCompressorNodeTest.cpp', 2081 'webaudio/DynamicsCompressorNodeTest.cpp',
2088 'webaudio/ScriptProcessorNodeTest.cpp', 2082 'webaudio/ScriptProcessorNodeTest.cpp',
2089 'webaudio/StereoPannerNodeTest.cpp', 2083 'webaudio/StereoPannerNodeTest.cpp',
2090 'webdatabase/QuotaTrackerTest.cpp', 2084 'webdatabase/QuotaTrackerTest.cpp',
2091 'websockets/DOMWebSocketTest.cpp', 2085 'websockets/DOMWebSocketTest.cpp',
2092 'websockets/DocumentWebSocketChannelTest.cpp', 2086 'websockets/DocumentWebSocketChannelTest.cpp',
2093 ], 2087 ],
2094 }, 2088 },
2095 } 2089 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/csspaint/PaintWorklet.h ('k') | third_party/WebKit/Source/modules/worklet/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698