2012-09-01 00:59:37 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
DEPTH := @DEPTH@
|
|
|
|
topsrcdir := @top_srcdir@
|
|
|
|
srcdir := @srcdir@
|
|
|
|
VPATH := @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
LIBRARY_NAME := gkconwebaudio_s
|
|
|
|
LIBXUL_LIBRARY := 1
|
2013-01-02 19:56:38 +04:00
|
|
|
ifndef _MSC_VER
|
|
|
|
FAIL_ON_WARNINGS := 1
|
|
|
|
endif # !_MSC_VER
|
2012-09-01 00:59:37 +04:00
|
|
|
|
|
|
|
CPPSRCS := \
|
2012-09-22 02:42:14 +04:00
|
|
|
AudioBuffer.cpp \
|
2012-09-19 03:07:33 +04:00
|
|
|
AudioBufferSourceNode.cpp \
|
2012-09-08 02:13:26 +04:00
|
|
|
AudioContext.cpp \
|
2012-09-19 03:07:33 +04:00
|
|
|
AudioDestinationNode.cpp \
|
2012-11-06 04:26:03 +04:00
|
|
|
AudioListener.cpp \
|
2012-09-19 03:07:33 +04:00
|
|
|
AudioNode.cpp \
|
2012-10-17 05:19:06 +04:00
|
|
|
AudioParam.cpp \
|
2012-09-19 03:07:33 +04:00
|
|
|
AudioSourceNode.cpp \
|
2012-11-08 05:59:14 +04:00
|
|
|
BiquadFilterNode.cpp \
|
2012-11-01 04:26:03 +04:00
|
|
|
DelayNode.cpp \
|
2012-11-07 05:01:11 +04:00
|
|
|
DynamicsCompressorNode.cpp \
|
2012-09-08 02:13:26 +04:00
|
|
|
EnableWebAudioCheck.cpp \
|
2012-10-31 23:09:32 +04:00
|
|
|
GainNode.cpp \
|
2013-02-02 02:13:23 +04:00
|
|
|
MediaBufferDecoder.cpp \
|
2012-11-06 06:14:13 +04:00
|
|
|
PannerNode.cpp \
|
2012-09-01 00:59:37 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2012-09-19 03:07:33 +04:00
|
|
|
EXPORTS_NAMESPACES := mozilla/dom
|
|
|
|
EXPORTS_mozilla/dom := \
|
2012-09-22 02:42:14 +04:00
|
|
|
AudioBuffer.h \
|
2012-09-19 03:07:33 +04:00
|
|
|
AudioBufferSourceNode.h \
|
2012-11-24 03:33:41 +04:00
|
|
|
AudioContext.h \
|
2012-09-19 03:07:33 +04:00
|
|
|
AudioDestinationNode.h \
|
2012-11-06 04:26:03 +04:00
|
|
|
AudioListener.h \
|
2012-09-19 03:07:33 +04:00
|
|
|
AudioNode.h \
|
2012-10-17 05:19:06 +04:00
|
|
|
AudioParam.h \
|
2012-09-19 03:07:33 +04:00
|
|
|
AudioSourceNode.h \
|
2012-11-08 05:59:14 +04:00
|
|
|
BiquadFilterNode.h \
|
2012-11-01 04:26:03 +04:00
|
|
|
DelayNode.h \
|
2012-11-07 05:01:11 +04:00
|
|
|
DynamicsCompressorNode.h \
|
2013-01-24 04:50:18 +04:00
|
|
|
EnableWebAudioCheck.h \
|
2012-10-31 23:09:32 +04:00
|
|
|
GainNode.h \
|
2012-11-06 06:14:13 +04:00
|
|
|
PannerNode.h \
|
2012-09-19 03:07:33 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2013-02-04 22:16:57 +04:00
|
|
|
EXPORTS := \
|
|
|
|
MediaBufferDecoder.h \
|
2013-03-12 19:16:42 +04:00
|
|
|
ThreeDPoint.h \
|
2013-02-04 22:16:57 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2012-09-01 00:59:37 +04:00
|
|
|
FORCE_STATIC_LIB := 1
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|