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

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

Issue 2727733002: Implement AudioWorkletProcessor interface (Closed)
Patch Set: Addressing feedback from rtoy@ Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/AudioWorkletProcessorDefinition.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 29 matching lines...) Expand all
40 "AudioScheduledSourceNode.cpp", 40 "AudioScheduledSourceNode.cpp",
41 "AudioScheduledSourceNode.h", 41 "AudioScheduledSourceNode.h",
42 "AudioSummingJunction.cpp", 42 "AudioSummingJunction.cpp",
43 "AudioSummingJunction.h", 43 "AudioSummingJunction.h",
44 "AudioWorklet.cpp", 44 "AudioWorklet.cpp",
45 "AudioWorklet.h", 45 "AudioWorklet.h",
46 "AudioWorkletGlobalScope.cpp", 46 "AudioWorkletGlobalScope.cpp",
47 "AudioWorkletGlobalScope.h", 47 "AudioWorkletGlobalScope.h",
48 "AudioWorkletMessagingProxy.cpp", 48 "AudioWorkletMessagingProxy.cpp",
49 "AudioWorkletMessagingProxy.h", 49 "AudioWorkletMessagingProxy.h",
50 "AudioWorkletProcessor.cpp",
51 "AudioWorkletProcessor.h",
52 "AudioWorkletProcessorDefinition.cpp",
53 "AudioWorkletProcessorDefinition.h",
50 "AudioWorkletThread.cpp", 54 "AudioWorkletThread.cpp",
51 "AudioWorkletThread.h", 55 "AudioWorkletThread.h",
52 "BaseAudioContext.cpp", 56 "BaseAudioContext.cpp",
53 "BaseAudioContext.h", 57 "BaseAudioContext.h",
54 "BiquadDSPKernel.cpp", 58 "BiquadDSPKernel.cpp",
55 "BiquadDSPKernel.h", 59 "BiquadDSPKernel.h",
56 "BiquadFilterNode.cpp", 60 "BiquadFilterNode.cpp",
57 "BiquadFilterNode.h", 61 "BiquadFilterNode.h",
58 "BiquadProcessor.cpp", 62 "BiquadProcessor.cpp",
59 "BiquadProcessor.h", 63 "BiquadProcessor.h",
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 "WaveShaperProcessor.h", 121 "WaveShaperProcessor.h",
118 "WindowAudioWorklet.cpp", 122 "WindowAudioWorklet.cpp",
119 "WindowAudioWorklet.h", 123 "WindowAudioWorklet.h",
120 ] 124 ]
121 125
122 if (is_win) { 126 if (is_win) {
123 # Result of 32-bit shift implicitly converted to 64 bits. 127 # Result of 32-bit shift implicitly converted to 64 bits.
124 cflags = [ "/wd4334" ] 128 cflags = [ "/wd4334" ]
125 } 129 }
126 } 130 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/AudioWorkletProcessorDefinition.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698