2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; 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 += [
|
|
|
|
'mozalloc.h',
|
|
|
|
'mozalloc_abort.h',
|
|
|
|
'mozalloc_oom.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
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
|
2015-08-19 09:55:34 +03:00
|
|
|
if CONFIG['MOZ_MSVC_STL_WRAP_RAISE']:
|
2013-04-16 23:24:43 +04:00
|
|
|
EXPORTS.mozilla += [
|
|
|
|
'msvc_raise_wrappers.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',
|
|
|
|
]
|
|
|
|
|
2016-07-19 03:45:26 +03:00
|
|
|
if CONFIG['OS_TARGET'] == 'WINNT':
|
|
|
|
# Keep this file separate to avoid #include'ing windows.h everywhere.
|
|
|
|
SOURCES += [
|
|
|
|
'winheap.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
|
|
|
|
2015-02-27 08:00:15 +03:00
|
|
|
FINAL_LIBRARY = 'mozglue'
|
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-03-05 04:39:06 +04:00
|
|
|
DISABLE_STL_WRAPPING = True
|
2014-12-04 12:11:14 +03:00
|
|
|
|
2015-02-27 08:00:15 +03:00
|
|
|
DEFINES['IMPL_MFBT'] = True
|
|
|
|
|
|
|
|
if CONFIG['_MSC_VER']:
|
|
|
|
DIRS += ['staticruntime']
|
2015-03-11 02:24:09 +03:00
|
|
|
|
2015-11-04 08:20:20 +03:00
|
|
|
LOCAL_INCLUDES += [
|
|
|
|
'!/xpcom',
|
|
|
|
'/memory/build',
|
|
|
|
]
|
2015-05-09 02:37:22 +03:00
|
|
|
|
|
|
|
DIST_INSTALL = True
|