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

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

Issue 1361233004: Implement IIRFilter node for WebAudio. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test issue by printing fewer digits. 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 'webaudio/AudioParam.idl', 217 'webaudio/AudioParam.idl',
218 'webaudio/AudioProcessingEvent.idl', 218 'webaudio/AudioProcessingEvent.idl',
219 'webaudio/AudioSourceNode.idl', 219 'webaudio/AudioSourceNode.idl',
220 'webaudio/BiquadFilterNode.idl', 220 'webaudio/BiquadFilterNode.idl',
221 'webaudio/ChannelMergerNode.idl', 221 'webaudio/ChannelMergerNode.idl',
222 'webaudio/ChannelSplitterNode.idl', 222 'webaudio/ChannelSplitterNode.idl',
223 'webaudio/ConvolverNode.idl', 223 'webaudio/ConvolverNode.idl',
224 'webaudio/DelayNode.idl', 224 'webaudio/DelayNode.idl',
225 'webaudio/DynamicsCompressorNode.idl', 225 'webaudio/DynamicsCompressorNode.idl',
226 'webaudio/GainNode.idl', 226 'webaudio/GainNode.idl',
227 'webaudio/IIRFilterNode.idl',
227 'webaudio/MediaElementAudioSourceNode.idl', 228 'webaudio/MediaElementAudioSourceNode.idl',
228 'webaudio/MediaStreamAudioDestinationNode.idl', 229 'webaudio/MediaStreamAudioDestinationNode.idl',
229 'webaudio/MediaStreamAudioSourceNode.idl', 230 'webaudio/MediaStreamAudioSourceNode.idl',
230 'webaudio/OfflineAudioCompletionEvent.idl', 231 'webaudio/OfflineAudioCompletionEvent.idl',
231 'webaudio/OfflineAudioContext.idl', 232 'webaudio/OfflineAudioContext.idl',
232 'webaudio/OscillatorNode.idl', 233 'webaudio/OscillatorNode.idl',
233 'webaudio/PannerNode.idl', 234 'webaudio/PannerNode.idl',
234 'webaudio/PeriodicWave.idl', 235 'webaudio/PeriodicWave.idl',
235 'webaudio/ScriptProcessorNode.idl', 236 'webaudio/ScriptProcessorNode.idl',
236 'webaudio/StereoPannerNode.idl', 237 'webaudio/StereoPannerNode.idl',
(...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after
1556 'webaudio/DelayDSPKernel.cpp', 1557 'webaudio/DelayDSPKernel.cpp',
1557 'webaudio/DelayDSPKernel.h', 1558 'webaudio/DelayDSPKernel.h',
1558 'webaudio/DelayNode.cpp', 1559 'webaudio/DelayNode.cpp',
1559 'webaudio/DelayNode.h', 1560 'webaudio/DelayNode.h',
1560 'webaudio/DelayProcessor.cpp', 1561 'webaudio/DelayProcessor.cpp',
1561 'webaudio/DelayProcessor.h', 1562 'webaudio/DelayProcessor.h',
1562 'webaudio/DynamicsCompressorNode.cpp', 1563 'webaudio/DynamicsCompressorNode.cpp',
1563 'webaudio/DynamicsCompressorNode.h', 1564 'webaudio/DynamicsCompressorNode.h',
1564 'webaudio/GainNode.cpp', 1565 'webaudio/GainNode.cpp',
1565 'webaudio/GainNode.h', 1566 'webaudio/GainNode.h',
1567 'webaudio/IIRDSPKernel.h',
1568 'webaudio/IIRDSPKernel.cpp',
1569 'webaudio/IIRFilterNode.cpp',
1570 'webaudio/IIRFilterNode.h',
1571 'webaudio/IIRProcessor.h',
1572 'webaudio/IIRProcessor.cpp',
1566 'webaudio/MediaElementAudioSourceNode.cpp', 1573 'webaudio/MediaElementAudioSourceNode.cpp',
1567 'webaudio/MediaElementAudioSourceNode.h', 1574 'webaudio/MediaElementAudioSourceNode.h',
1568 'webaudio/MediaStreamAudioDestinationNode.cpp', 1575 'webaudio/MediaStreamAudioDestinationNode.cpp',
1569 'webaudio/MediaStreamAudioDestinationNode.h', 1576 'webaudio/MediaStreamAudioDestinationNode.h',
1570 'webaudio/MediaStreamAudioSourceNode.cpp', 1577 'webaudio/MediaStreamAudioSourceNode.cpp',
1571 'webaudio/MediaStreamAudioSourceNode.h', 1578 'webaudio/MediaStreamAudioSourceNode.h',
1572 'webaudio/OfflineAudioCompletionEvent.cpp', 1579 'webaudio/OfflineAudioCompletionEvent.cpp',
1573 'webaudio/OfflineAudioCompletionEvent.h', 1580 'webaudio/OfflineAudioCompletionEvent.h',
1574 'webaudio/OfflineAudioContext.cpp', 1581 'webaudio/OfflineAudioContext.cpp',
1575 'webaudio/OfflineAudioContext.h', 1582 'webaudio/OfflineAudioContext.h',
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
1903 'webaudio/AudioBasicProcessorHandlerTest.cpp', 1910 'webaudio/AudioBasicProcessorHandlerTest.cpp',
1904 'webaudio/ConvolverNodeTest.cpp', 1911 'webaudio/ConvolverNodeTest.cpp',
1905 'webaudio/DynamicsCompressorNodeTest.cpp', 1912 'webaudio/DynamicsCompressorNodeTest.cpp',
1906 'webaudio/ScriptProcessorNodeTest.cpp', 1913 'webaudio/ScriptProcessorNodeTest.cpp',
1907 'webaudio/StereoPannerNodeTest.cpp', 1914 'webaudio/StereoPannerNodeTest.cpp',
1908 'websockets/DOMWebSocketTest.cpp', 1915 'websockets/DOMWebSocketTest.cpp',
1909 'websockets/DocumentWebSocketChannelTest.cpp', 1916 'websockets/DocumentWebSocketChannelTest.cpp',
1910 ], 1917 ],
1911 }, 1918 },
1912 } 1919 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/UseCounter.h ('k') | third_party/WebKit/Source/modules/webaudio/AbstractAudioContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698