2012-10-02 13:04:58 -07:00
|
|
|
# -*- Mode: makefile; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- #
|
|
|
|
# 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/.
|
2013-01-23 16:31:37 -08:00
|
|
|
|
2013-06-13 19:58:22 -07:00
|
|
|
LIBS = \
|
2012-10-02 13:04:58 -07:00
|
|
|
$(XPCOM_LIBS) \
|
|
|
|
$(NSPR_LIBS) \
|
|
|
|
$(DEPTH)/media/mtransport/standalone/$(LIB_PREFIX)mtransport_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/media/mtransport/third_party/nICEr/nicer_nicer/$(LIB_PREFIX)nicer.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/media/mtransport/third_party/nrappkit/nrappkit_nrappkit/$(LIB_PREFIX)nrappkit.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/media/webrtc/trunk/testing/gtest_gtest/$(LIB_PREFIX)gtest.$(LIB_SUFFIX) \
|
|
|
|
$(NULL)
|
|
|
|
|
2014-06-15 22:02:25 -07:00
|
|
|
ifdef MOZ_NATIVE_NSS
|
|
|
|
LIBS += $(NSS_LIBS)
|
|
|
|
else
|
|
|
|
# Statically linking NSS libssl ensures that we can debug NSS too
|
|
|
|
LIBS += \
|
|
|
|
$(DEPTH)/dist/lib/$(LIB_PREFIX)ssl.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/dist/lib/$(LIB_PREFIX)nss3.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/dist/lib/$(LIB_PREFIX)nssutil3.$(LIB_SUFFIX) \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2012-10-02 13:04:58 -07:00
|
|
|
ifdef MOZ_SCTP
|
|
|
|
LIBS += $(DEPTH)/netwerk/sctp/src/$(LIB_PREFIX)nksctp_s.$(LIB_SUFFIX)
|
|
|
|
endif
|
|
|
|
|
2012-12-12 12:05:57 -08:00
|
|
|
ifeq ($(OS_TARGET), Android)
|
|
|
|
LIBS += \
|
|
|
|
$(STLPORT_LDFLAGS) \
|
|
|
|
$(STLPORT_LIBS) \
|
|
|
|
$(NULL)
|
|
|
|
CPPFLAGS += \
|
|
|
|
$(STLPORT_CPPFLAGS) \
|
|
|
|
$(NULL)
|
|
|
|
endif
|