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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/BUILD.gn

Issue 2134813002: Implement ConstantSourceNode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 2 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 # 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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698