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',
|
|
|
|
]
|
|
|
|
|
|
|
|
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']:
|
|
|
|
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-10-25 03:23:05 +04:00
|
|
|
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
|
|
|
|
|
|
|
LIBRARY_NAME = 'mozalloc'
|
|
|
|
|
2013-10-24 21:52:00 +04:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk':
|
|
|
|
FORCE_STATIC_LIB = True
|