mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-07-20 22:29:28 +00:00
58895ea9e5
bug1355414, bug1313977, bug1357366, bug1362889, bug1152353, bug1345893, bug1343172, bug1352348, bug1356843, bug1354308, bug1355340, bug1360574, bug1358776, bug1304566, bug1334097, bug1338574
28 lines
632 B
INI
28 lines
632 B
INI
# -*- 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/.
|
|
|
|
Program('logalloc-replay')
|
|
|
|
SOURCES += [
|
|
'../FdPrintf.cpp',
|
|
'/mfbt/Assertions.cpp',
|
|
'Replay.cpp',
|
|
]
|
|
|
|
LOCAL_INCLUDES += [
|
|
'..',
|
|
]
|
|
|
|
# Link replace-malloc and the default allocator.
|
|
USE_LIBS += [
|
|
'memory',
|
|
]
|
|
|
|
# The memory library defines this, so it's needed here too.
|
|
DEFINES['IMPL_MFBT'] = True
|
|
|
|
DISABLE_STL_WRAPPING = True
|