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-04-16 23:24:43 +04:00
|
|
|
EXPORTS += [
|
|
|
|
'mozmemory.h',
|
|
|
|
'mozmemory_wrap.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_REPLACE_MALLOC']:
|
|
|
|
EXPORTS += [
|
|
|
|
'malloc_decls.h',
|
2013-05-17 05:07:12 +04:00
|
|
|
'replace_malloc.h',
|
2013-04-16 23:24:43 +04:00
|
|
|
]
|
2013-11-17 13:16:36 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-06-04 19:08:44 +04:00
|
|
|
'jemalloc_config.c',
|
|
|
|
'mozmemory_wrap.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_JEMALLOC3']:
|
2013-11-17 13:16:36 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-06-04 19:08:44 +04:00
|
|
|
'mozjemalloc_compat.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_REPLACE_MALLOC']:
|
2013-11-17 13:16:36 +04:00
|
|
|
UNIFIED_SOURCES += [
|
2013-06-04 19:08:44 +04:00
|
|
|
'replace_malloc.c',
|
|
|
|
]
|
2013-06-17 23:21:01 +04:00
|
|
|
|
|
|
|
LIBRARY_NAME = 'memory'
|
|
|
|
|
2013-11-19 06:47:14 +04:00
|
|
|
# Keep jemalloc separated when mozglue is statically linked
|
|
|
|
if CONFIG['MOZ_MEMORY'] and (CONFIG['OS_TARGET'] in ('WINNT', 'Darwin', 'Android') or
|
|
|
|
CONFIG['MOZ_NATIVE_JEMALLOC']):
|
|
|
|
FINAL_LIBRARY = 'mozglue'
|