media/webrtc/signaling/test/Makefile.in

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/media/webrtc/signaling/test/Makefile.in	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,110 @@
     1.4 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this file,
     1.6 +# You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.7 +
     1.8 +LIBS = \
     1.9 +  $(XPCOM_LIBS) \
    1.10 +  $(NSPR_LIBS) \
    1.11 +  $(NSS_LIBS) \
    1.12 +  $(REALTIME_LIBS) \
    1.13 +  $(DEPTH)/xpcom/glue/$(LIB_PREFIX)xpcomglue_s.$(LIB_SUFFIX) \
    1.14 +  $(DEPTH)/media/mtransport/standalone/$(LIB_PREFIX)mtransport_s.$(LIB_SUFFIX) \
    1.15 +  $(DEPTH)/media/webrtc/signalingtest/signaling_ecc/$(LIB_PREFIX)ecc.$(LIB_SUFFIX) \
    1.16 +  $(DEPTH)/media/webrtc/signalingtest/signaling_sipcc/$(LIB_PREFIX)sipcc.$(LIB_SUFFIX) \
    1.17 +  $(DEPTH)/layout/media/webrtc/$(LIB_PREFIX)webrtc.$(LIB_SUFFIX) \
    1.18 +  $(DEPTH)/layout/media/$(LIB_PREFIX)gkmedias.$(LIB_SUFFIX) \
    1.19 +  $(DEPTH)/media/webrtc/trunk/testing/gtest_gtest/$(LIB_PREFIX)gtest.$(LIB_SUFFIX) \
    1.20 +  $(DEPTH)/media/libyuv/libyuv_libyuv/$(LIB_PREFIX)yuv.$(LIB_SUFFIX) \
    1.21 +  $(DEPTH)/netwerk/srtp/src/$(LIB_PREFIX)nksrtp_s.$(LIB_SUFFIX) \
    1.22 +  $(NULL)
    1.23 +
    1.24 +ifdef BUILD_ARM_NEON
    1.25 +LIBS += $(DEPTH)/media/libyuv/libyuv_libyuv_neon/$(LIB_PREFIX)yuv_neon.$(LIB_SUFFIX)
    1.26 +endif
    1.27 +
    1.28 +ifdef JS_SHARED_LIBRARY
    1.29 +LIBS += $(MOZ_JS_LIBS)
    1.30 +endif
    1.31 +
    1.32 +ifdef MOZ_ALSA
    1.33 +LIBS += \
    1.34 +  $(MOZ_ALSA_LIBS) \
    1.35 +  $(NULL)
    1.36 +endif
    1.37 +
    1.38 +ifeq ($(OS_TARGET),Android)
    1.39 +LIBS += \
    1.40 +  $(STLPORT_LDFLAGS) \
    1.41 +  $(STLPORT_LIBS) \
    1.42 +  $(NULL)
    1.43 +CPPFLAGS += \
    1.44 +  $(STLPORT_CPPFLAGS) \
    1.45 +  $(NULL)
    1.46 +endif
    1.47 +
    1.48 +ifdef MOZ_NATIVE_JPEG
    1.49 +LIBS += \
    1.50 +  $(MOZ_JPEG_LIBS) \
    1.51 +  $(NULL)
    1.52 +endif
    1.53 +
    1.54 +ifdef MOZ_NATIVE_LIBVPX
    1.55 +LIBS += \
    1.56 +  $(MOZ_LIBVPX_LIBS) \
    1.57 +  $(NULL)
    1.58 +endif
    1.59 +
    1.60 +ifndef MOZ_TREE_PIXMAN
    1.61 +LIBS += \
    1.62 +  $(MOZ_PIXMAN_LIBS) \
    1.63 +  $(NULL)
    1.64 +endif
    1.65 +
    1.66 +ifeq (gtk2,$(MOZ_WIDGET_TOOLKIT))
    1.67 +LIBS += \
    1.68 +  $(XLIBS) \
    1.69 +  $(MOZ_GTK2_LIBS) \
    1.70 +  -lgthread-2.0 \
    1.71 +  $(NULL)
    1.72 +endif
    1.73 +
    1.74 +ifeq (gtk3,$(MOZ_WIDGET_TOOLKIT))
    1.75 +LIBS += \
    1.76 +  $(MOZ_GTK3_LIBS) \
    1.77 +  $(FT2_LIBS) \
    1.78 +  $(NULL)
    1.79 +endif
    1.80 +
    1.81 +ifeq (qt,$(MOZ_WIDGET_TOOLKIT))
    1.82 +LIBS += \
    1.83 +  $(XLIBS) \
    1.84 +  $(TK_LIBS) \
    1.85 +  $(MOZ_PANGO_LIBS) \
    1.86 +  $(NULL)
    1.87 +endif
    1.88 +
    1.89 +ifneq (,$(filter Linux DragonFly FreeBSD NetBSD OpenBSD,$(OS_TARGET)))
    1.90 +LIBS += \
    1.91 +  $(MOZ_CAIRO_OSLIBS) \
    1.92 +  $(NULL)
    1.93 +endif
    1.94 +
    1.95 +ifeq ($(OS_TARGET),Darwin)
    1.96 +LIBS += \
    1.97 +  $(TK_LIBS) \
    1.98 +  $(NULL)
    1.99 +endif
   1.100 +
   1.101 +ifeq ($(OS_TARGET),WINNT)
   1.102 +LIBS += \
   1.103 +  $(DEPTH)/staticlib/components/$(LIB_PREFIX)windowsproxy.$(LIB_SUFFIX) \
   1.104 +  $(NULL)
   1.105 +endif
   1.106 +
   1.107 +ifndef ZLIB_IN_MOZGLUE
   1.108 +LIBS += $(MOZ_ZLIB_LIBS)
   1.109 +endif
   1.110 +
   1.111 +include $(topsrcdir)/config/config.mk
   1.112 +include $(topsrcdir)/media/webrtc/webrtc-config.mk
   1.113 +include $(topsrcdir)/config/rules.mk

mercurial