michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: mtransport_lcppsrcs = [ michael@0: 'dtlsidentity.cpp', michael@0: 'nr_socket_prsock.cpp', michael@0: 'nr_timer.cpp', michael@0: 'nricectx.cpp', michael@0: 'nricemediastream.cpp', michael@0: 'nriceresolver.cpp', michael@0: 'nriceresolverfake.cpp', michael@0: 'nrinterfaceprioritizer.cpp', michael@0: 'rlogringbuffer.cpp', michael@0: 'simpletokenbucket.cpp', michael@0: 'stun_udp_socket_filter.cpp', michael@0: 'transportflow.cpp', michael@0: 'transportlayer.cpp', michael@0: 'transportlayerdtls.cpp', michael@0: 'transportlayerice.cpp', michael@0: 'transportlayerlog.cpp', michael@0: 'transportlayerloopback.cpp', michael@0: 'transportlayerprsock.cpp', michael@0: ] michael@0: michael@0: if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk': michael@0: mtransport_lcppsrcs += [ michael@0: 'gonk_addrs.cpp', michael@0: ] michael@0: michael@0: mtransport_cppsrcs = [ michael@0: '%s/media/mtransport/%s' % (TOPSRCDIR, s) for s in sorted(mtransport_lcppsrcs) michael@0: ]