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

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

Issue 2820113006: Remove AudioBufferCallback (Closed)
Patch Set: Slightly reorder BaseAudioContext.idl Created 3 years, 8 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",
20 "AudioBufferSourceNode.cpp", 19 "AudioBufferSourceNode.cpp",
21 "AudioBufferSourceNode.h", 20 "AudioBufferSourceNode.h",
22 "AudioContext.cpp", 21 "AudioContext.cpp",
23 "AudioContext.h", 22 "AudioContext.h",
24 "AudioDestinationNode.cpp", 23 "AudioDestinationNode.cpp",
25 "AudioDestinationNode.h", 24 "AudioDestinationNode.h",
26 "AudioListener.cpp", 25 "AudioListener.cpp",
27 "AudioListener.h", 26 "AudioListener.h",
28 "AudioNode.cpp", 27 "AudioNode.cpp",
29 "AudioNode.h", 28 "AudioNode.h",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 "WaveShaperProcessor.h", 120 "WaveShaperProcessor.h",
122 "WindowAudioWorklet.cpp", 121 "WindowAudioWorklet.cpp",
123 "WindowAudioWorklet.h", 122 "WindowAudioWorklet.h",
124 ] 123 ]
125 124
126 if (is_win) { 125 if (is_win) {
127 # Result of 32-bit shift implicitly converted to 64 bits. 126 # Result of 32-bit shift implicitly converted to 64 bits.
128 cflags = [ "/wd4334" ] 127 cflags = [ "/wd4334" ]
129 } 128 }
130 } 129 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698