Bug 946257 - Update NetUtils and WifiUtils to support KK. r=fabrice, vchang.
[gecko.git] / media / libopus / Makefile.in
blob9fa04f2107d671dd877aa8ecd2b9b6e65f6d0d38
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 file,
3 # You can obtain one at http://mozilla.org/MPL/2.0/.
5 LOCAL_INCLUDES += \
6 -I$(srcdir)/include \
7 -I$(srcdir)/celt \
8 -I$(srcdir)/silk \
9 -I$(srcdir)/src \
10 $(NULL)
12 VPATH += \
13 $(srcdir)/celt \
14 $(srcdir)/silk \
15 $(srcdir)/src \
16 $(NULL)
18 include $(srcdir)/celt_sources.mk
19 include $(srcdir)/silk_sources.mk
20 include $(srcdir)/opus_sources.mk
22 CSRCS = \
23 $(notdir $(CELT_SOURCES)) \
24 $(notdir $(SILK_SOURCES)) \
25 $(notdir $(OPUS_SOURCES)) \
26 $(NULL)
28 ifndef MOZ_SAMPLE_TYPE_FLOAT32
29 MOZ_OPUS_FIXED = 1
30 endif
32 ifdef MOZ_OPUS_FIXED
33 LOCAL_INCLUDES += -I$(srcdir)/silk/fixed
34 VPATH += $(srcdir)/silk/fixed
35 CSRCS += $(notdir $(SILK_SOURCES_FIXED))
36 else
37 LOCAL_INCLUDES += -I$(srcdir)/silk/float
38 VPATH += $(srcdir)/silk/float
39 CSRCS += $(notdir $(SILK_SOURCES_FLOAT)) \
40 $(notdir $(OPUS_SOURCES_FLOAT))
41 endif