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

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

Issue 2866503002: Revert removal of AudioBufferCallback (Closed)
Patch Set: Add AudioBufferCallback.{h,idl} Created 3 years, 7 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",
11 "AsyncAudioDecoder.cpp", 11 "AsyncAudioDecoder.cpp",
12 "AsyncAudioDecoder.h", 12 "AsyncAudioDecoder.h",
13 "AudioBasicInspectorNode.cpp", 13 "AudioBasicInspectorNode.cpp",
14 "AudioBasicInspectorNode.h", 14 "AudioBasicInspectorNode.h",
15 "AudioBasicProcessorHandler.cpp", 15 "AudioBasicProcessorHandler.cpp",
16 "AudioBasicProcessorHandler.h", 16 "AudioBasicProcessorHandler.h",
17 "AudioBuffer.cpp", 17 "AudioBuffer.cpp",
18 "AudioBuffer.h", 18 "AudioBuffer.h",
19 "AudioBufferCallback.h",
19 "AudioBufferSourceNode.cpp", 20 "AudioBufferSourceNode.cpp",
20 "AudioBufferSourceNode.h", 21 "AudioBufferSourceNode.h",
21 "AudioContext.cpp", 22 "AudioContext.cpp",
22 "AudioContext.h", 23 "AudioContext.h",
23 "AudioDestinationNode.cpp", 24 "AudioDestinationNode.cpp",
24 "AudioDestinationNode.h", 25 "AudioDestinationNode.h",
25 "AudioListener.cpp", 26 "AudioListener.cpp",
26 "AudioListener.h", 27 "AudioListener.h",
27 "AudioNode.cpp", 28 "AudioNode.cpp",
28 "AudioNode.h", 29 "AudioNode.h",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 "WaveShaperProcessor.h", 121 "WaveShaperProcessor.h",
121 "WindowAudioWorklet.cpp", 122 "WindowAudioWorklet.cpp",
122 "WindowAudioWorklet.h", 123 "WindowAudioWorklet.h",
123 ] 124 ]
124 125
125 if (is_win) { 126 if (is_win) {
126 # Result of 32-bit shift implicitly converted to 64 bits. 127 # Result of 32-bit shift implicitly converted to 64 bits.
127 cflags = [ "/wd4334" ] 128 cflags = [ "/wd4334" ]
128 } 129 }
129 } 130 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698