1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/media/webaudio/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,88 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +PARALLEL_DIRS += ['blink', 'test'] 1.11 + 1.12 +TEST_TOOL_DIRS += ['compiledtest'] 1.13 + 1.14 +EXPORTS += [ 1.15 + 'AudioContext.h', 1.16 + 'AudioParamTimeline.h', 1.17 + 'MediaBufferDecoder.h', 1.18 + 'ThreeDPoint.h', 1.19 + 'WebAudioUtils.h', 1.20 +] 1.21 + 1.22 +EXPORTS.mozilla += [ 1.23 + 'FFTBlock.h', 1.24 +] 1.25 + 1.26 +EXPORTS.mozilla.dom += [ 1.27 + 'AnalyserNode.h', 1.28 + 'AudioBuffer.h', 1.29 + 'AudioBufferSourceNode.h', 1.30 + 'AudioContext.h', 1.31 + 'AudioDestinationNode.h', 1.32 + 'AudioListener.h', 1.33 + 'AudioNode.h', 1.34 + 'AudioParam.h', 1.35 + 'AudioProcessingEvent.h', 1.36 + 'BiquadFilterNode.h', 1.37 + 'ChannelMergerNode.h', 1.38 + 'ChannelSplitterNode.h', 1.39 + 'ConvolverNode.h', 1.40 + 'DelayNode.h', 1.41 + 'DynamicsCompressorNode.h', 1.42 + 'GainNode.h', 1.43 + 'MediaElementAudioSourceNode.h', 1.44 + 'MediaStreamAudioDestinationNode.h', 1.45 + 'MediaStreamAudioSourceNode.h', 1.46 + 'OfflineAudioCompletionEvent.h', 1.47 + 'OscillatorNode.h', 1.48 + 'PannerNode.h', 1.49 + 'PeriodicWave.h', 1.50 + 'ScriptProcessorNode.h', 1.51 + 'WaveShaperNode.h', 1.52 +] 1.53 + 1.54 +UNIFIED_SOURCES += [ 1.55 + 'AnalyserNode.cpp', 1.56 + 'AudioBuffer.cpp', 1.57 + 'AudioBufferSourceNode.cpp', 1.58 + 'AudioContext.cpp', 1.59 + 'AudioDestinationNode.cpp', 1.60 + 'AudioListener.cpp', 1.61 + 'AudioNode.cpp', 1.62 + 'AudioParam.cpp', 1.63 + 'AudioProcessingEvent.cpp', 1.64 + 'BiquadFilterNode.cpp', 1.65 + 'ChannelMergerNode.cpp', 1.66 + 'ChannelSplitterNode.cpp', 1.67 + 'ConvolverNode.cpp', 1.68 + 'DelayBuffer.cpp', 1.69 + 'DelayNode.cpp', 1.70 + 'DynamicsCompressorNode.cpp', 1.71 + 'FFTBlock.cpp', 1.72 + 'GainNode.cpp', 1.73 + 'MediaBufferDecoder.cpp', 1.74 + 'MediaElementAudioSourceNode.cpp', 1.75 + 'MediaStreamAudioDestinationNode.cpp', 1.76 + 'MediaStreamAudioSourceNode.cpp', 1.77 + 'OfflineAudioCompletionEvent.cpp', 1.78 + 'OscillatorNode.cpp', 1.79 + 'PannerNode.cpp', 1.80 + 'PeriodicWave.cpp', 1.81 + 'ScriptProcessorNode.cpp', 1.82 + 'ThreeDPoint.cpp', 1.83 + 'WaveShaperNode.cpp', 1.84 + 'WebAudioUtils.cpp', 1.85 +] 1.86 + 1.87 +FAIL_ON_WARNINGS = True 1.88 + 1.89 +include('/ipc/chromium/chromium-config.mozbuild') 1.90 + 1.91 +FINAL_LIBRARY = 'gklayout'