From ac25827a87d86f1cf9e48aab6605f77a2c89041a Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Thu, 24 May 2018 14:06:04 +0200 Subject: Remove SPS profiler. - Conditionals and code blocks. (MOZ_ENABLE_PROFILER_SPS) - Stub out several profiler-only functions. --- tools/profiler/moz.build | 106 ----------------------------------------------- 1 file changed, 106 deletions(-) (limited to 'tools/profiler/moz.build') diff --git a/tools/profiler/moz.build b/tools/profiler/moz.build index 57a74cefc..465d01630 100644 --- a/tools/profiler/moz.build +++ b/tools/profiler/moz.build @@ -4,112 +4,6 @@ # 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']: - XPIDL_MODULE = 'profiler' - XPIDL_SOURCES += [ - 'gecko/nsIProfiler.idl', - 'gecko/nsIProfileSaveEvent.idl', - ] - EXPORTS += [ - 'public/GeckoProfilerFunc.h', - 'public/GeckoProfilerImpl.h', - 'public/ProfilerBacktrace.h', - 'public/ProfilerMarkers.h', - 'public/PseudoStack.h', - 'public/shared-libraries.h', - ] - EXPORTS.mozilla += [ - 'public/ProfileGatherer.h', - ] - EXTRA_JS_MODULES += [ - 'gecko/Profiler.jsm', - ] - UNIFIED_SOURCES += [ - 'core/GeckoSampler.cpp', - 'core/platform.cpp', - 'core/ProfileBuffer.cpp', - 'core/ProfileEntry.cpp', - 'core/ProfileJSONWriter.cpp', - 'core/ProfilerBacktrace.cpp', - 'core/ProfilerMarkers.cpp', - 'core/StackTop.cpp', - 'core/SyncProfile.cpp', - 'core/ThreadInfo.cpp', - 'core/ThreadProfile.cpp', - 'gecko/nsProfiler.cpp', - 'gecko/nsProfilerFactory.cpp', - 'gecko/nsProfilerStartParams.cpp', - 'gecko/ProfileGatherer.cpp', - 'gecko/ProfilerIOInterposeObserver.cpp', - 'gecko/SaveProfileTask.cpp', - 'gecko/ThreadResponsiveness.cpp', - ] - - if CONFIG['OS_TARGET'] in ('Android', 'Linux'): - UNIFIED_SOURCES += [ - 'lul/AutoObjectMapper.cpp', - 'lul/LulCommon.cpp', - 'lul/LulDwarf.cpp', - 'lul/LulDwarfSummariser.cpp', - 'lul/LulElf.cpp', - 'lul/LulMain.cpp', - 'lul/platform-linux-lul.cpp', - ] - # These files cannot be built in unified mode because of name clashes with mozglue headers on Android. - SOURCES += [ - 'core/platform-linux.cc', - 'core/shared-libraries-linux.cc', - ] - SOURCES += [ - '/toolkit/crashreporter/google-breakpad/src/common/linux/elfutils.cc', - '/toolkit/crashreporter/google-breakpad/src/common/linux/file_id.cc', - '/toolkit/crashreporter/google-breakpad/src/common/linux/guid_creator.cc', - '/toolkit/crashreporter/google-breakpad/src/common/linux/linux_libc_support.cc', - '/toolkit/crashreporter/google-breakpad/src/common/linux/memory_mapped_file.cc', - ] - if CONFIG['CPU_ARCH'] == 'arm': - SOURCES += [ - 'core/EHABIStackWalk.cpp', - ] - elif CONFIG['OS_TARGET'] == 'Darwin': - UNIFIED_SOURCES += [ - 'core/platform-macos.cc', - 'core/shared-libraries-macos.cc', - ] - elif CONFIG['OS_TARGET'] == 'WINNT': - SOURCES += [ - 'core/IntelPowerGadget.cpp', - 'core/platform-win32.cc', - 'core/shared-libraries-win32.cc', - ] - - LOCAL_INCLUDES += [ - '/docshell/base', - '/ipc/chromium/src', - '/mozglue/linker', - '/toolkit/crashreporter/google-breakpad/src', - '/tools/profiler/core/', - '/tools/profiler/gecko/', - '/xpcom/base', - ] - - if CONFIG['OS_TARGET'] == 'Android': - LOCAL_INCLUDES += [ - # We need access to Breakpad's getcontext(3) which is suitable for Android - '/toolkit/crashreporter/google-breakpad/src/common/android/include', - ] - - if CONFIG['OS_TARGET'] == 'Android': - SOURCES += ['/toolkit/crashreporter/google-breakpad/src/common/android/breakpad_getcontext.S'] - - if CONFIG['ANDROID_CPU_ARCH'] == 'armeabi': - DEFINES['ARCH_ARMV6'] = True - - if CONFIG['ENABLE_TESTS']: - DIRS += ['tests/gtest'] - - FINAL_LIBRARY = 'xul' - IPDL_SOURCES += [ 'gecko/ProfilerTypes.ipdlh', ] -- cgit v1.2.3