2013-04-01 11:36:59 -07:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 12:47:17 -08: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 12:06:19 -07:00
|
|
|
NO_VISIBILITY_FLAGS = True
|
2013-03-19 11:47:00 -07:00
|
|
|
|
2013-04-16 12:24:43 -07:00
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'mozalloc.h',
|
|
|
|
'mozalloc_abort.h',
|
|
|
|
'mozalloc_oom.h',
|
|
|
|
]
|
|
|
|
|
2015-02-02 17:35:19 -08:00
|
|
|
if CONFIG['MOZ_MSVC_STL_WRAP_RAISE'] or CONFIG['MOZ_MSVC_STL_WRAP_Throw']:
|
2013-04-16 12:24:43 -07:00
|
|
|
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-04 16:39:06 -08:00
|
|
|
DEFINES['_HAS_EXCEPTIONS'] = 0
|
2013-04-16 12:24:43 -07:00
|
|
|
if build_msvc_wrappers:
|
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'msvc_raise_wrappers.h',
|
|
|
|
'msvc_throw_wrapper.h',
|
|
|
|
'throw_msvc.h',
|
|
|
|
]
|
2013-10-24 16:23:05 -07:00
|
|
|
SOURCES += [
|
2013-04-23 14:54:15 -07:00
|
|
|
'msvc_raise_wrappers.cpp',
|
|
|
|
'msvc_throw_wrapper.cpp',
|
|
|
|
]
|
|
|
|
|
2013-11-25 03:09:59 -08:00
|
|
|
UNIFIED_SOURCES += [
|
2013-04-23 14:54:15 -07:00
|
|
|
'mozalloc.cpp',
|
|
|
|
'mozalloc_abort.cpp',
|
|
|
|
'mozalloc_oom.cpp',
|
|
|
|
]
|
2013-06-17 12:21:01 -07:00
|
|
|
|
2015-02-26 21:00:15 -08:00
|
|
|
FINAL_LIBRARY = 'mozglue'
|
2013-11-27 05:55:07 -08:00
|
|
|
|
2014-02-10 14:57:01 -08:00
|
|
|
# The strndup declaration in string.h is in an ifdef __USE_GNU section
|
|
|
|
DEFINES['_GNU_SOURCE'] = True
|
2014-01-22 05:23:27 -08:00
|
|
|
|
2014-02-17 22:05:51 -08:00
|
|
|
GENERATED_INCLUDES += ['/xpcom']
|
2014-03-04 16:39:06 -08:00
|
|
|
|
|
|
|
DISABLE_STL_WRAPPING = True
|
2014-12-04 01:11:14 -08:00
|
|
|
|
2014-12-08 21:26:27 -08:00
|
|
|
if CONFIG['CLANG_CXX'] or CONFIG['_MSC_VER']:
|
2014-12-04 01:11:14 -08:00
|
|
|
FAIL_ON_WARNINGS = True
|
2015-02-26 21:00:15 -08:00
|
|
|
|
|
|
|
DEFINES['IMPL_MFBT'] = True
|
|
|
|
|
|
|
|
if CONFIG['_MSC_VER']:
|
|
|
|
DIRS += ['staticruntime']
|
2015-03-10 16:24:09 -07:00
|
|
|
|
|
|
|
LOCAL_INCLUDES += ['/memory/build']
|