gecko-dev/tools/profiler/moz.build
Mike Conley 883b7ff2db Bug 1116188 - Add async ProfileGatherer as the mechanism for gathering profiles from subprocesses. r=bgirard,bz
--HG--
extra : commitid : 3ssrVzrWpIy
extra : rebase_source : 5d389ada8f7e4c453c0b7e6a965ee46a7526e06f
2015-06-10 17:58:30 -04:00

127 lines
3.6 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 = True
XPIDL_MODULE = 'profiler'
XPIDL_SOURCES += [
'nsIProfiler.idl',
'nsIProfileSaveEvent.idl',
]
EXPORTS += [
'GeckoProfilerFunc.h',
'GeckoProfilerImpl.h',
'ProfilerBacktrace.h',
'ProfilerMarkers.h',
'PseudoStack.h',
'shared-libraries.h',
]
EXPORTS.mozilla += [
'ProfileGatherer.h',
]
EXTRA_JS_MODULES += [
'Profiler.jsm',
]
UNIFIED_SOURCES += [
'nsProfiler.cpp',
'nsProfilerFactory.cpp',
'nsProfilerStartParams.cpp',
'platform.cpp',
'ProfileEntry.cpp',
'ProfileGatherer.cpp',
'ProfileJSONWriter.cpp',
'ProfilerBacktrace.cpp',
'ProfilerIOInterposeObserver.cpp',
'ProfilerMarkers.cpp',
'SaveProfileTask.cpp',
'SyncProfile.cpp',
'TableTicker.cpp',
'ThreadResponsiveness.cpp',
]
# This file cannot be built in unified mode because of name clashes with mozglue headers on Android.
SOURCES += [
'local_debug_info_symbolizer.cc',
]
if CONFIG['OS_TARGET'] in ('Android', 'Linux'):
UNIFIED_SOURCES += [
'AutoObjectMapper.cpp',
'LulCommon.cpp',
'LulDwarf.cpp',
'LulDwarfSummariser.cpp',
'LulElf.cpp',
'LulMain.cpp',
'platform-linux-lul.cpp',
]
# These files cannot be built in unified mode because of name clashes with mozglue headers on Android.
SOURCES += [
'platform-linux.cc',
'shared-libraries-linux.cc',
]
if CONFIG['CPU_ARCH'] == 'arm':
UNIFIED_SOURCES += [
'LulExidx.cpp',
]
SOURCES += [
'EHABIStackWalk.cpp',
]
elif CONFIG['OS_TARGET'] == 'Darwin':
UNIFIED_SOURCES += [
'platform-macos.cc',
'shared-libraries-macos.cc',
'shim_mac_dump_syms.mm',
]
elif CONFIG['OS_TARGET'] == 'WINNT':
SOURCES += [
'IntelPowerGadget.cpp',
'platform-win32.cc',
'shared-libraries-win32.cc',
]
LOCAL_INCLUDES += [
'/docshell/base',
'/ipc/chromium/src',
'/mozglue/linker',
'/toolkit/crashreporter/google-breakpad/src',
'/xpcom/base',
]
# We need access to Breakpad's getcontext(3) which is suitable for Android
if CONFIG['OS_TARGET'] == 'Android':
LOCAL_INCLUDES += [
'/toolkit/crashreporter/google-breakpad/src/common/android/include',
]
if CONFIG['ANDROID_CPU_ARCH'] == 'armeabi':
DEFINES['ARCH_ARMV6'] = True
if CONFIG['ENABLE_TESTS']:
DIRS += ['tests/gtest']
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk' and (CONFIG['ANDROID_VERSION'] <= '17' or CONFIG['ANDROID_VERSION'] >= '21'):
DEFINES['ELFSIZE'] = 32
FINAL_LIBRARY = 'xul'
EXPORTS += [
'GeckoProfiler.h',
]
if CONFIG['MOZ_TASK_TRACER']:
EXPORTS += [
'GeckoTaskTracer.h',
'GeckoTaskTracerImpl.h',
'TracedTaskCommon.h',
]
UNIFIED_SOURCES += [
'GeckoTaskTracer.cpp',
'TracedTaskCommon.cpp',
]
XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell.ini']