| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//third_party/WebKit/Source/modules/modules.gni") | 5 import("//third_party/WebKit/Source/modules/modules.gni") |
| 6 | 6 |
| 7 blink_modules_sources("webaudio") { | 7 blink_modules_sources("webaudio") { |
| 8 sources = [ | 8 sources = [ |
| 9 "AnalyserNode.cpp", | 9 "AnalyserNode.cpp", |
| 10 "AnalyserNode.h", | 10 "AnalyserNode.h", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "BiquadDSPKernel.cpp", | 49 "BiquadDSPKernel.cpp", |
| 50 "BiquadDSPKernel.h", | 50 "BiquadDSPKernel.h", |
| 51 "BiquadFilterNode.cpp", | 51 "BiquadFilterNode.cpp", |
| 52 "BiquadFilterNode.h", | 52 "BiquadFilterNode.h", |
| 53 "BiquadProcessor.cpp", | 53 "BiquadProcessor.cpp", |
| 54 "BiquadProcessor.h", | 54 "BiquadProcessor.h", |
| 55 "ChannelMergerNode.cpp", | 55 "ChannelMergerNode.cpp", |
| 56 "ChannelMergerNode.h", | 56 "ChannelMergerNode.h", |
| 57 "ChannelSplitterNode.cpp", | 57 "ChannelSplitterNode.cpp", |
| 58 "ChannelSplitterNode.h", | 58 "ChannelSplitterNode.h", |
| 59 "ConstantSourceNode.cpp", |
| 60 "ConstantSourceNode.h", |
| 59 "ConvolverNode.cpp", | 61 "ConvolverNode.cpp", |
| 60 "ConvolverNode.h", | 62 "ConvolverNode.h", |
| 61 "DefaultAudioDestinationNode.cpp", | 63 "DefaultAudioDestinationNode.cpp", |
| 62 "DefaultAudioDestinationNode.h", | 64 "DefaultAudioDestinationNode.h", |
| 63 "DeferredTaskHandler.cpp", | 65 "DeferredTaskHandler.cpp", |
| 64 "DeferredTaskHandler.h", | 66 "DeferredTaskHandler.h", |
| 65 "DelayDSPKernel.cpp", | 67 "DelayDSPKernel.cpp", |
| 66 "DelayDSPKernel.h", | 68 "DelayDSPKernel.h", |
| 67 "DelayNode.cpp", | 69 "DelayNode.cpp", |
| 68 "DelayNode.h", | 70 "DelayNode.h", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "WaveShaperProcessor.h", | 112 "WaveShaperProcessor.h", |
| 111 "WindowAudioWorklet.cpp", | 113 "WindowAudioWorklet.cpp", |
| 112 "WindowAudioWorklet.h", | 114 "WindowAudioWorklet.h", |
| 113 ] | 115 ] |
| 114 | 116 |
| 115 if (is_win) { | 117 if (is_win) { |
| 116 # Result of 32-bit shift implicitly converted to 64 bits. | 118 # Result of 32-bit shift implicitly converted to 64 bits. |
| 117 cflags = [ "/wd4334" ] | 119 cflags = [ "/wd4334" ] |
| 118 } | 120 } |
| 119 } | 121 } |
| OLD | NEW |