https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 63254fa16f70a245e6d33bfd4bcc94018c1b300b authored by ffxbld on 14 February 2017, 01:04:26 UTC
Added FENNEC_51_0_4_RELEASE FENNEC_51_0_4_BUILD1 tag(s) for changeset a622e89121a7. DONTBUILD CLOSED TREE a=release
Tip revision: 63254fa
moz.build
# -*- Mode: python; 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/.

EXPORTS.mozilla.net += [
    'DataChannel.h',
    'DataChannelListener.h',
    'DataChannelProtocol.h'
]

SOURCES += [
    'DataChannel.cpp',
]

include('/ipc/chromium/chromium-config.mozbuild')

FINAL_LIBRARY = 'xul'

LOCAL_INCLUDES += [
    '/media/mtransport',
    '/netwerk/sctp/src',
]

DEFINES['INET'] = 1
DEFINES['SCTP_DEBUG'] = 1

if CONFIG['OS_TARGET'] != 'Android':
    DEFINES['INET6'] = 1

if CONFIG['OS_TARGET'] == 'WINNT':
    DEFINES['__Userspace_os_Windows'] = 1
else:
    DEFINES['__Userspace_os_%s' % CONFIG['OS_TARGET']] = 1

NO_PGO = True # Don't PGO

if CONFIG['GNU_CXX']:
    CXXFLAGS += ['-Wno-error=shadow']
back to top