mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
38dbbfcffc
Differential Revision: https://phabricator.services.mozilla.com/D25021 --HG-- extra : rebase_source : 86e94499f746b18a596130341692c6a9992d4867
24 lines
624 B
Python
24 lines
624 B
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# 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/.
|
|
|
|
@template
|
|
def ReplaceMalloc(name):
|
|
if CONFIG['MOZ_REPLACE_MALLOC_STATIC']:
|
|
DEFINES['MOZ_REPLACE_MALLOC_PREFIX'] = name.replace('-', '_')
|
|
FINAL_LIBRARY = 'memory'
|
|
else:
|
|
SharedLibrary(name)
|
|
|
|
DIRS += [
|
|
'logalloc',
|
|
]
|
|
|
|
if CONFIG['MOZ_DMD']:
|
|
DIRS += ['dmd']
|
|
|
|
if CONFIG['MOZ_PHC']:
|
|
DIRS += ['phc']
|