mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
129 lines
3.9 KiB
Python
129 lines
3.9 KiB
Python
# -*- 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/.
|
|
|
|
if CONFIG['OS_TARGET'] != 'WINNT' and CONFIG['MOZ_WIDGET_TOOLKIT'] != 'gonk':
|
|
CppUnitTests([
|
|
'buffered_stun_socket_unittest',
|
|
'ice_unittest',
|
|
'multi_tcp_socket_unittest',
|
|
'nrappkit_unittest',
|
|
'proxy_tunnel_socket_unittest',
|
|
'rlogringbuffer_unittest',
|
|
'runnable_utils_unittest',
|
|
'simpletokenbucket_unittest',
|
|
'sockettransportservice_unittest',
|
|
'test_nr_socket_unittest',
|
|
'TestSyncRunnable',
|
|
'transport_unittests',
|
|
'turn_unittest',
|
|
])
|
|
|
|
if CONFIG['MOZ_SCTP']:
|
|
CppUnitTests([
|
|
'sctp_unittest',
|
|
])
|
|
|
|
for var in ('MOZILLA_INTERNAL_API', 'MOZILLA_XPCOMRT_API', 'MOZILLA_EXTERNAL_LINKAGE', 'HAVE_STRDUP', 'NR_SOCKET_IS_VOID_PTR', 'SCTP_DEBUG', 'INET'):
|
|
DEFINES[var] = True
|
|
|
|
if CONFIG['OS_TARGET'] == 'Android':
|
|
DEFINES['LINUX'] = True
|
|
DEFINES['ANDROID'] = True
|
|
LOCAL_INCLUDES += [
|
|
'/media/mtransport/third_party/nrappkit/src/port/android/include',
|
|
]
|
|
else:
|
|
DEFINES['INET6'] = True
|
|
|
|
if CONFIG['OS_TARGET'] == 'Linux':
|
|
DEFINES['LINUX'] = True
|
|
LOCAL_INCLUDES += [
|
|
'/media/mtransport/third_party/nrappkit/src/port/linux/include',
|
|
]
|
|
USE_LIBS += [
|
|
'nspr',
|
|
]
|
|
OS_LIBS += [
|
|
'-lrt',
|
|
]
|
|
|
|
if CONFIG['OS_TARGET'] == 'Darwin':
|
|
LOCAL_INCLUDES += [
|
|
'/media/mtransport/third_party/nrappkit/src/port/darwin/include',
|
|
]
|
|
|
|
if CONFIG['OS_TARGET'] in ('DragonFly', 'FreeBSD', 'NetBSD', 'OpenBSD'):
|
|
if CONFIG['OS_TARGET'] == 'Darwin':
|
|
DEFINES['DARWIN'] = True
|
|
else:
|
|
DEFINES['BSD'] = True
|
|
LOCAL_INCLUDES += [
|
|
'/media/mtransport/third_party/nrappkit/src/port/darwin/include',
|
|
]
|
|
|
|
# SCTP DEFINES
|
|
if CONFIG['OS_TARGET'] == 'WINNT':
|
|
DEFINES['WIN'] = True
|
|
# for stun.h
|
|
DEFINES['WIN32'] = True
|
|
DEFINES['__Userspace_os_Windows'] = 1
|
|
else:
|
|
# Works for Darwin, Linux, Android. Probably doesn't work for others.
|
|
DEFINES['__Userspace_os_%s' % CONFIG['OS_TARGET']] = 1
|
|
|
|
if CONFIG['OS_TARGET'] in ('Darwin', 'Android'):
|
|
DEFINES['GTEST_USE_OWN_TR1_TUPLE'] = 1
|
|
|
|
LOCAL_INCLUDES += [
|
|
'/media/mtransport/',
|
|
'/media/mtransport/third_party/',
|
|
'/media/mtransport/third_party/nICEr/src/crypto',
|
|
'/media/mtransport/third_party/nICEr/src/ice',
|
|
'/media/mtransport/third_party/nICEr/src/net',
|
|
'/media/mtransport/third_party/nICEr/src/stun',
|
|
'/media/mtransport/third_party/nICEr/src/util',
|
|
'/media/mtransport/third_party/nrappkit/src/event',
|
|
'/media/mtransport/third_party/nrappkit/src/log',
|
|
'/media/mtransport/third_party/nrappkit/src/plugin',
|
|
'/media/mtransport/third_party/nrappkit/src/port/generic/include',
|
|
'/media/mtransport/third_party/nrappkit/src/registry',
|
|
'/media/mtransport/third_party/nrappkit/src/share',
|
|
'/media/mtransport/third_party/nrappkit/src/stats',
|
|
'/media/mtransport/third_party/nrappkit/src/util/',
|
|
'/media/mtransport/third_party/nrappkit/src/util/libekr',
|
|
'/media/webrtc/trunk/testing/gtest/include/',
|
|
'/netwerk/sctp/src/',
|
|
'/xpcom/libxpcomrt',
|
|
]
|
|
|
|
USE_LIBS += [
|
|
'/media/webrtc/trunk/testing/gtest_gtest/gtest',
|
|
'fallible',
|
|
'mfbt',
|
|
'mozglue',
|
|
'mtransport_standalone',
|
|
'necko_standalone',
|
|
'nicer',
|
|
'nrappkit',
|
|
'nspr',
|
|
'nss',
|
|
'unicharutil_standalone',
|
|
'xpcomrt',
|
|
]
|
|
|
|
if not CONFIG['MOZ_NATIVE_NSS'] and not CONFIG['MOZ_FOLD_LIBS']:
|
|
USE_LIBS += [
|
|
# Statically linking NSS libssl ensures that we can debug NSS too
|
|
'static:/security/nss/lib/ssl/ssl',
|
|
]
|
|
|
|
if CONFIG['MOZ_SCTP']:
|
|
USE_LIBS += [
|
|
'nksctp_s',
|
|
]
|
|
|
|
USE_LIBS += ['mozglue']
|