| OLD | NEW |
| 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 21 matching lines...) Expand all Loading... |
| 32 "AudioNodeOutput.cpp", | 32 "AudioNodeOutput.cpp", |
| 33 "AudioNodeOutput.h", | 33 "AudioNodeOutput.h", |
| 34 "AudioParam.cpp", | 34 "AudioParam.cpp", |
| 35 "AudioParam.h", | 35 "AudioParam.h", |
| 36 "AudioParamTimeline.cpp", | 36 "AudioParamTimeline.cpp", |
| 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", | |
| 43 "AudioSummingJunction.cpp", | 42 "AudioSummingJunction.cpp", |
| 44 "AudioSummingJunction.h", | 43 "AudioSummingJunction.h", |
| 45 "AudioWorklet.cpp", | 44 "AudioWorklet.cpp", |
| 46 "AudioWorklet.h", | 45 "AudioWorklet.h", |
| 47 "AudioWorkletGlobalScope.cpp", | 46 "AudioWorkletGlobalScope.cpp", |
| 48 "AudioWorkletGlobalScope.h", | 47 "AudioWorkletGlobalScope.h", |
| 49 "AudioWorkletMessagingProxy.cpp", | 48 "AudioWorkletMessagingProxy.cpp", |
| 50 "AudioWorkletMessagingProxy.h", | 49 "AudioWorkletMessagingProxy.h", |
| 51 "AudioWorkletThread.cpp", | 50 "AudioWorkletThread.cpp", |
| 52 "AudioWorkletThread.h", | 51 "AudioWorkletThread.h", |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "WaveShaperProcessor.h", | 117 "WaveShaperProcessor.h", |
| 119 "WindowAudioWorklet.cpp", | 118 "WindowAudioWorklet.cpp", |
| 120 "WindowAudioWorklet.h", | 119 "WindowAudioWorklet.h", |
| 121 ] | 120 ] |
| 122 | 121 |
| 123 if (is_win) { | 122 if (is_win) { |
| 124 # Result of 32-bit shift implicitly converted to 64 bits. | 123 # Result of 32-bit shift implicitly converted to 64 bits. |
| 125 cflags = [ "/wd4334" ] | 124 cflags = [ "/wd4334" ] |
| 126 } | 125 } |
| 127 } | 126 } |
| OLD | NEW |