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

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

Issue 2372303002: [worklets] Add AudioWorkletGlobalScope and AudioWorkletThread (Closed)
Patch Set: Fixing nits after l-g-t-m 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
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/AudioWorkletThreadTest.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 26 matching lines...) Expand all
37 "AudioParamTimeline.h", 37 "AudioParamTimeline.h",
38 "AudioProcessingEvent.cpp", 38 "AudioProcessingEvent.cpp",
39 "AudioProcessingEvent.h", 39 "AudioProcessingEvent.h",
40 "AudioScheduledSourceNode.cpp", 40 "AudioScheduledSourceNode.cpp",
41 "AudioScheduledSourceNode.h", 41 "AudioScheduledSourceNode.h",
42 "AudioSourceNode.h", 42 "AudioSourceNode.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",
48 "AudioWorkletGlobalScope.h",
49 "AudioWorkletThread.cpp",
50 "AudioWorkletThread.h",
47 "BaseAudioContext.cpp", 51 "BaseAudioContext.cpp",
48 "BaseAudioContext.h", 52 "BaseAudioContext.h",
49 "BiquadDSPKernel.cpp", 53 "BiquadDSPKernel.cpp",
50 "BiquadDSPKernel.h", 54 "BiquadDSPKernel.h",
51 "BiquadFilterNode.cpp", 55 "BiquadFilterNode.cpp",
52 "BiquadFilterNode.h", 56 "BiquadFilterNode.h",
53 "BiquadProcessor.cpp", 57 "BiquadProcessor.cpp",
54 "BiquadProcessor.h", 58 "BiquadProcessor.h",
55 "ChannelMergerNode.cpp", 59 "ChannelMergerNode.cpp",
56 "ChannelMergerNode.h", 60 "ChannelMergerNode.h",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 "WaveShaperProcessor.h", 114 "WaveShaperProcessor.h",
111 "WindowAudioWorklet.cpp", 115 "WindowAudioWorklet.cpp",
112 "WindowAudioWorklet.h", 116 "WindowAudioWorklet.h",
113 ] 117 ]
114 118
115 if (is_win) { 119 if (is_win) {
116 # Result of 32-bit shift implicitly converted to 64 bits. 120 # Result of 32-bit shift implicitly converted to 64 bits.
117 cflags = [ "/wd4334" ] 121 cflags = [ "/wd4334" ]
118 } 122 }
119 } 123 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/AudioWorkletThreadTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698