gecko/tools/profiler/moz.build

80 lines
2.1 KiB
Python

# -*- Mode: python; c-basic-offset: 4; 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/.
if CONFIG['MOZ_ENABLE_PROFILER_SPS']:
FAIL_ON_WARNINGS = not CONFIG['_MSC_VER']
LIBXUL_LIBRARY = True
MODULE = 'profiler'
LIBRARY_NAME = 'profiler'
XPIDL_SOURCES += [
'nsIProfileSaveEvent.idl',
'nsIProfiler.idl',
]
EXPORTS += [
'GeckoProfilerFunc.h',
'GeckoProfilerImpl.h',
'ProfilerMarkers.h',
'PseudoStack.h',
'shared-libraries.h',
]
EXTRA_JS_MODULES = [
'Profiler.jsm',
]
CPP_SOURCES += [
'platform.cpp',
'nsProfilerFactory.cpp',
'nsProfiler.cpp',
'TableTicker.cpp',
'SaveProfileTask.cpp',
'BreakpadSampler.cpp',
'UnwinderThread2.cpp',
'ProfileEntry.cpp',
'local_debug_info_symbolizer.cc',
'JSObjectBuilder.cpp',
'JSCustomObjectBuilder.cpp',
'IOInterposer.cpp',
'NSPRInterposer.cpp',
'ProfilerBacktrace.cpp',
'ProfilerIOInterposeObserver.cpp',
'ProfilerMarkers.cpp',
'SyncProfile.cpp',
]
if CONFIG['OS_TARGET'] in ('Android', 'Linux'):
CPP_SOURCES += [
'shared-libraries-linux.cc',
'platform-linux.cc',
]
if CONFIG['CPU_ARCH'] == 'arm':
CPP_SOURCES += [
'EHABIStackWalk.cpp',
]
elif CONFIG['OS_TARGET'] == 'Darwin':
CPP_SOURCES += [
'shared-libraries-macos.cc',
'platform-macos.cc',
]
CMMSRCS += [
'shim_mac_dump_syms.mm',
]
elif CONFIG['OS_TARGET'] == 'WINNT':
CPP_SOURCES += [
'shared-libraries-win32.cc',
'platform-win32.cc',
]
EXPORTS += [
'GeckoProfiler.h',
]
EXPORTS.mozilla += [
'IOInterposer.h',
]
XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell.ini']