2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:17 +04:00
|
|
|
# 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/.
|
2013-10-24 23:06:19 +04:00
|
|
|
NO_VISIBILITY_FLAGS = True
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'fallible.h',
|
|
|
|
'mozalloc.h',
|
|
|
|
'mozalloc_abort.h',
|
|
|
|
'mozalloc_oom.h',
|
2014-01-22 17:23:27 +04:00
|
|
|
'VolatileBuffer.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_MSVC_STL_WRAP__RAISE'] or CONFIG['MOZ_MSVC_STL_WRAP__Throw']:
|
|
|
|
build_msvc_wrappers = 1
|
|
|
|
else:
|
|
|
|
build_msvc_wrappers = 0
|
|
|
|
|
|
|
|
if CONFIG['WRAP_STL_INCLUDES']:
|
|
|
|
if CONFIG['GNU_CXX']:
|
|
|
|
EXPORTS.mozilla += ['throw_gcc.h']
|
|
|
|
elif CONFIG['_MSC_VER']:
|
2014-03-05 04:39:06 +04:00
|
|
|
DEFINES['_HAS_EXCEPTIONS'] = 0
|
2013-04-16 23:24:43 +04:00
|
|
|
if build_msvc_wrappers:
|
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'msvc_raise_wrappers.h',
|
|
|
|
'msvc_throw_wrapper.h',
|
|
|
|
'throw_msvc.h',
|
|
|
|
]
|
2013-10-25 03:23:05 +04:00
|
|
|
SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'msvc_raise_wrappers.cpp',
|
|
|
|
'msvc_throw_wrapper.cpp',
|
|
|
|
]
|
|
|
|
|
2013-11-25 15:09:59 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-24 01:54:15 +04:00
|
|
|
'mozalloc.cpp',
|
|
|
|
'mozalloc_abort.cpp',
|
|
|
|
'mozalloc_oom.cpp',
|
|
|
|
]
|
2013-06-17 23:21:01 +04:00
|
|
|
|
2014-01-22 17:23:27 +04:00
|
|
|
if CONFIG['OS_TARGET'] == 'Android':
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'VolatileBufferAshmem.cpp',
|
|
|
|
]
|
|
|
|
elif CONFIG['OS_TARGET'] == 'Darwin':
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'VolatileBufferOSX.cpp',
|
|
|
|
]
|
|
|
|
elif CONFIG['OS_TARGET'] == 'WINNT':
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'VolatileBufferWindows.cpp',
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'VolatileBufferFallback.cpp',
|
|
|
|
]
|
|
|
|
|
2014-09-03 09:10:54 +04:00
|
|
|
Library('mozalloc')
|
2013-06-17 23:21:01 +04:00
|
|
|
|
2013-10-24 21:52:00 +04:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
|
|
|
FORCE_STATIC_LIB = True
|
2013-11-19 06:47:45 +04:00
|
|
|
else:
|
|
|
|
FORCE_SHARED_LIB = True
|
2014-07-23 08:29:09 +04:00
|
|
|
SDK_LIBRARY = True
|
2013-11-27 17:55:07 +04:00
|
|
|
|
2014-02-11 02:57:01 +04:00
|
|
|
# The strndup declaration in string.h is in an ifdef __USE_GNU section
|
|
|
|
DEFINES['_GNU_SOURCE'] = True
|
2014-01-22 17:23:27 +04:00
|
|
|
|
2014-07-29 03:55:55 +04:00
|
|
|
TEST_DIRS += ['tests']
|
2014-02-18 10:05:51 +04:00
|
|
|
|
|
|
|
GENERATED_INCLUDES += ['/xpcom']
|
2014-03-05 04:39:06 +04:00
|
|
|
|
|
|
|
DISABLE_STL_WRAPPING = True
|