2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 20:47:17 +00: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/.
|
|
|
|
|
2015-05-26 06:48:21 +00:00
|
|
|
DIRS += [
|
|
|
|
'logalloc',
|
|
|
|
'replace',
|
|
|
|
]
|
2014-10-24 04:08:01 +00:00
|
|
|
|
2013-02-25 20:47:17 +00:00
|
|
|
# Build jemalloc3 as a replace-malloc lib when building with mozjemalloc
|
2015-09-04 05:45:53 +00:00
|
|
|
if not CONFIG['MOZ_JEMALLOC4']:
|
2013-02-25 20:47:17 +00:00
|
|
|
DIRS += ['jemalloc']
|
2014-03-05 00:39:06 +00:00
|
|
|
|
2014-10-18 07:16:20 +00:00
|
|
|
if CONFIG['MOZ_REPLACE_MALLOC_LINKAGE'] == 'dummy library':
|
|
|
|
DIRS += ['dummy']
|
|
|
|
|
|
|
|
if CONFIG['MOZ_DMD']:
|
|
|
|
DIRS += ['dmd']
|