2013-04-01 18:36:59 +00:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 21:20:01 +00:00
|
|
|
# vim: set filetype=python:
|
2012-05-21 11:12:37 +00:00
|
|
|
# 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/.
|
1998-08-19 20:42:14 +00:00
|
|
|
|
2013-05-01 18:05:40 +00:00
|
|
|
if not CONFIG['MOZ_PROFILE_GENERATE']:
|
|
|
|
PROGRAM = 'spacetrace'
|
2013-04-23 21:54:15 +00:00
|
|
|
|
2013-08-14 07:00:13 +00:00
|
|
|
bin_suffix = CONFIG['BIN_SUFFIX']
|
|
|
|
|
|
|
|
|
|
|
|
simple_c_sources = [
|
|
|
|
'leakstats',
|
|
|
|
'tmstats',
|
|
|
|
]
|
|
|
|
|
|
|
|
CSRCS += [
|
|
|
|
'%s.c' % s for s in simple_c_sources
|
|
|
|
]
|
|
|
|
|
|
|
|
SIMPLE_PROGRAMS += [
|
|
|
|
'%s%s' % (s, bin_suffix) for s in simple_c_sources
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
simple_cpp_sources = [
|
|
|
|
'bloatblame',
|
|
|
|
'leaksoup',
|
|
|
|
]
|
|
|
|
|
2013-04-23 21:54:15 +00:00
|
|
|
CPP_SOURCES += [
|
2013-08-14 07:00:13 +00:00
|
|
|
'%s.cpp' % s for s in simple_cpp_sources
|
2013-04-23 21:54:15 +00:00
|
|
|
]
|
2013-08-14 07:00:13 +00:00
|
|
|
|
|
|
|
SIMPLE_PROGRAMS += [
|
|
|
|
'%s%s' % (s, bin_suffix) for s in simple_cpp_sources
|
|
|
|
]
|
|
|
|
|