content/media/webaudio/moz.build

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

michael@0 1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
michael@0 2 # vim: set filetype=python:
michael@0 3 # This Source Code Form is subject to the terms of the Mozilla Public
michael@0 4 # License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
michael@0 6
michael@0 7 PARALLEL_DIRS += ['blink', 'test']
michael@0 8
michael@0 9 TEST_TOOL_DIRS += ['compiledtest']
michael@0 10
michael@0 11 EXPORTS += [
michael@0 12 'AudioContext.h',
michael@0 13 'AudioParamTimeline.h',
michael@0 14 'MediaBufferDecoder.h',
michael@0 15 'ThreeDPoint.h',
michael@0 16 'WebAudioUtils.h',
michael@0 17 ]
michael@0 18
michael@0 19 EXPORTS.mozilla += [
michael@0 20 'FFTBlock.h',
michael@0 21 ]
michael@0 22
michael@0 23 EXPORTS.mozilla.dom += [
michael@0 24 'AnalyserNode.h',
michael@0 25 'AudioBuffer.h',
michael@0 26 'AudioBufferSourceNode.h',
michael@0 27 'AudioContext.h',
michael@0 28 'AudioDestinationNode.h',
michael@0 29 'AudioListener.h',
michael@0 30 'AudioNode.h',
michael@0 31 'AudioParam.h',
michael@0 32 'AudioProcessingEvent.h',
michael@0 33 'BiquadFilterNode.h',
michael@0 34 'ChannelMergerNode.h',
michael@0 35 'ChannelSplitterNode.h',
michael@0 36 'ConvolverNode.h',
michael@0 37 'DelayNode.h',
michael@0 38 'DynamicsCompressorNode.h',
michael@0 39 'GainNode.h',
michael@0 40 'MediaElementAudioSourceNode.h',
michael@0 41 'MediaStreamAudioDestinationNode.h',
michael@0 42 'MediaStreamAudioSourceNode.h',
michael@0 43 'OfflineAudioCompletionEvent.h',
michael@0 44 'OscillatorNode.h',
michael@0 45 'PannerNode.h',
michael@0 46 'PeriodicWave.h',
michael@0 47 'ScriptProcessorNode.h',
michael@0 48 'WaveShaperNode.h',
michael@0 49 ]
michael@0 50
michael@0 51 UNIFIED_SOURCES += [
michael@0 52 'AnalyserNode.cpp',
michael@0 53 'AudioBuffer.cpp',
michael@0 54 'AudioBufferSourceNode.cpp',
michael@0 55 'AudioContext.cpp',
michael@0 56 'AudioDestinationNode.cpp',
michael@0 57 'AudioListener.cpp',
michael@0 58 'AudioNode.cpp',
michael@0 59 'AudioParam.cpp',
michael@0 60 'AudioProcessingEvent.cpp',
michael@0 61 'BiquadFilterNode.cpp',
michael@0 62 'ChannelMergerNode.cpp',
michael@0 63 'ChannelSplitterNode.cpp',
michael@0 64 'ConvolverNode.cpp',
michael@0 65 'DelayBuffer.cpp',
michael@0 66 'DelayNode.cpp',
michael@0 67 'DynamicsCompressorNode.cpp',
michael@0 68 'FFTBlock.cpp',
michael@0 69 'GainNode.cpp',
michael@0 70 'MediaBufferDecoder.cpp',
michael@0 71 'MediaElementAudioSourceNode.cpp',
michael@0 72 'MediaStreamAudioDestinationNode.cpp',
michael@0 73 'MediaStreamAudioSourceNode.cpp',
michael@0 74 'OfflineAudioCompletionEvent.cpp',
michael@0 75 'OscillatorNode.cpp',
michael@0 76 'PannerNode.cpp',
michael@0 77 'PeriodicWave.cpp',
michael@0 78 'ScriptProcessorNode.cpp',
michael@0 79 'ThreeDPoint.cpp',
michael@0 80 'WaveShaperNode.cpp',
michael@0 81 'WebAudioUtils.cpp',
michael@0 82 ]
michael@0 83
michael@0 84 FAIL_ON_WARNINGS = True
michael@0 85
michael@0 86 include('/ipc/chromium/chromium-config.mozbuild')
michael@0 87
michael@0 88 FINAL_LIBRARY = 'gklayout'

mercurial