netwerk/sctp/datachannel/moz.build

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/netwerk/sctp/datachannel/moz.build	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,40 @@
     1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
     1.5 +# vim: set filetype=python:
     1.6 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.9 +
    1.10 +EXPORTS.mozilla.net += [
    1.11 +    'DataChannel.h',
    1.12 +    'DataChannelListener.h',
    1.13 +    'DataChannelProtocol.h'
    1.14 +]
    1.15 +
    1.16 +SOURCES += [
    1.17 +    'DataChannel.cpp',
    1.18 +]
    1.19 +
    1.20 +FAIL_ON_WARNINGS = True
    1.21 +
    1.22 +include('/ipc/chromium/chromium-config.mozbuild')
    1.23 +
    1.24 +FINAL_LIBRARY = 'necko'
    1.25 +
    1.26 +LOCAL_INCLUDES += [
    1.27 +    '../src',
    1.28 +    '/media/mtransport',
    1.29 +    '/media/webrtc/trunk/third_party/libjingle/source',
    1.30 +]
    1.31 +
    1.32 +DEFINES['INET'] = 1
    1.33 +DEFINES['SCTP_DEBUG'] = 1
    1.34 +
    1.35 +if CONFIG['OS_TARGET'] != 'Android':
    1.36 +    DEFINES['INET6'] = 1
    1.37 +
    1.38 +if CONFIG['OS_TARGET'] == 'WINNT':
    1.39 +    DEFINES['__Userspace_os_Windows'] = 1
    1.40 +else:
    1.41 +    DEFINES['__Userspace_os_%s' % CONFIG['OS_TARGET']] = 1
    1.42 +
    1.43 +NO_PGO = True # Don't PGO

mercurial