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

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

Issue 2793593002: AudioWorklet prototype
Patch Set: Merge changes, AudioParam bug fix Created 3 years, 5 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 30 matching lines...) Expand all
41 "AudioScheduledSourceNode.cpp", 41 "AudioScheduledSourceNode.cpp",
42 "AudioScheduledSourceNode.h", 42 "AudioScheduledSourceNode.h",
43 "AudioSummingJunction.cpp", 43 "AudioSummingJunction.cpp",
44 "AudioSummingJunction.h", 44 "AudioSummingJunction.h",
45 "AudioWorklet.cpp", 45 "AudioWorklet.cpp",
46 "AudioWorklet.h", 46 "AudioWorklet.h",
47 "AudioWorkletGlobalScope.cpp", 47 "AudioWorkletGlobalScope.cpp",
48 "AudioWorkletGlobalScope.h", 48 "AudioWorkletGlobalScope.h",
49 "AudioWorkletMessagingProxy.cpp", 49 "AudioWorkletMessagingProxy.cpp",
50 "AudioWorkletMessagingProxy.h", 50 "AudioWorkletMessagingProxy.h",
51 "AudioWorkletNode.cpp",
52 "AudioWorkletNode.h",
53 "AudioWorkletObjectProxy.cpp",
54 "AudioWorkletObjectProxy.h",
51 "AudioWorkletProcessor.cpp", 55 "AudioWorkletProcessor.cpp",
52 "AudioWorkletProcessor.h", 56 "AudioWorkletProcessor.h",
53 "AudioWorkletProcessorDefinition.cpp", 57 "AudioWorkletProcessorDefinition.cpp",
54 "AudioWorkletProcessorDefinition.h", 58 "AudioWorkletProcessorDefinition.h",
55 "AudioWorkletThread.cpp", 59 "AudioWorkletThread.cpp",
56 "AudioWorkletThread.h", 60 "AudioWorkletThread.h",
57 "BaseAudioContext.cpp", 61 "BaseAudioContext.cpp",
58 "BaseAudioContext.h", 62 "BaseAudioContext.h",
59 "BiquadDSPKernel.cpp", 63 "BiquadDSPKernel.cpp",
60 "BiquadDSPKernel.h", 64 "BiquadDSPKernel.h",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 "WaveShaperProcessor.h", 126 "WaveShaperProcessor.h",
123 "WindowAudioWorklet.cpp", 127 "WindowAudioWorklet.cpp",
124 "WindowAudioWorklet.h", 128 "WindowAudioWorklet.h",
125 ] 129 ]
126 130
127 if (is_win) { 131 if (is_win) {
128 # Result of 32-bit shift implicitly converted to 64 bits. 132 # Result of 32-bit shift implicitly converted to 64 bits.
129 cflags = [ "/wd4334" ] 133 cflags = [ "/wd4334" ]
130 } 134 }
131 } 135 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698