diff -r 000000000000 -r 6474c204b198 media/mtransport/objs.mozbuild --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/media/mtransport/objs.mozbuild Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,35 @@ +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# 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/. + +mtransport_lcppsrcs = [ + 'dtlsidentity.cpp', + 'nr_socket_prsock.cpp', + 'nr_timer.cpp', + 'nricectx.cpp', + 'nricemediastream.cpp', + 'nriceresolver.cpp', + 'nriceresolverfake.cpp', + 'nrinterfaceprioritizer.cpp', + 'rlogringbuffer.cpp', + 'simpletokenbucket.cpp', + 'stun_udp_socket_filter.cpp', + 'transportflow.cpp', + 'transportlayer.cpp', + 'transportlayerdtls.cpp', + 'transportlayerice.cpp', + 'transportlayerlog.cpp', + 'transportlayerloopback.cpp', + 'transportlayerprsock.cpp', +] + +if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk': + mtransport_lcppsrcs += [ + 'gonk_addrs.cpp', + ] + +mtransport_cppsrcs = [ + '%s/media/mtransport/%s' % (TOPSRCDIR, s) for s in sorted(mtransport_lcppsrcs) +]