Bug 849918 - Initial support for PannerNode's 3D positional audio (equalpower panning...
[gecko.git] / content / media / webaudio / Makefile.in
blobc799e1882c88ffd911e5237f5c2a2dc985913975
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 DEPTH := @DEPTH@
6 topsrcdir := @top_srcdir@
7 srcdir := @srcdir@
8 VPATH := @srcdir@
10 include $(DEPTH)/config/autoconf.mk
12 LIBRARY_NAME := gkconwebaudio_s
13 LIBXUL_LIBRARY := 1
14 ifndef _MSC_VER
15 FAIL_ON_WARNINGS := 1
16 endif # !_MSC_VER
18 CPPSRCS := \
19 AudioBuffer.cpp \
20 AudioBufferSourceNode.cpp \
21 AudioContext.cpp \
22 AudioDestinationNode.cpp \
23 AudioListener.cpp \
24 AudioNode.cpp \
25 AudioParam.cpp \
26 AudioSourceNode.cpp \
27 BiquadFilterNode.cpp \
28 DelayNode.cpp \
29 DynamicsCompressorNode.cpp \
30 EnableWebAudioCheck.cpp \
31 GainNode.cpp \
32 MediaBufferDecoder.cpp \
33 PannerNode.cpp \
34 ThreeDPoint.cpp \
35 $(NULL)
37 EXPORTS_NAMESPACES := mozilla/dom
38 EXPORTS_mozilla/dom := \
39 AudioBuffer.h \
40 AudioBufferSourceNode.h \
41 AudioContext.h \
42 AudioDestinationNode.h \
43 AudioListener.h \
44 AudioNode.h \
45 AudioParam.h \
46 AudioSourceNode.h \
47 BiquadFilterNode.h \
48 DelayNode.h \
49 DynamicsCompressorNode.h \
50 EnableWebAudioCheck.h \
51 GainNode.h \
52 PannerNode.h \
53 $(NULL)
55 EXPORTS := \
56 MediaBufferDecoder.h \
57 ThreeDPoint.h \
58 WebAudioUtils.h \
59 $(NULL)
61 FORCE_STATIC_LIB := 1
63 include $(topsrcdir)/config/rules.mk