summaryrefslogtreecommitdiffstats
path: root/tools/profiler/moz.build
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-05-24 14:06:04 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-05-24 14:06:04 +0200
commitac25827a87d86f1cf9e48aab6605f77a2c89041a (patch)
treec3533a008e606f4f6393e838b4305cf6d07f47d2 /tools/profiler/moz.build
parentc8b38a18031f6ae0fca8b2bef73daa86f6f96ae8 (diff)
downloadUXP-ac25827a87d86f1cf9e48aab6605f77a2c89041a.tar
UXP-ac25827a87d86f1cf9e48aab6605f77a2c89041a.tar.gz
UXP-ac25827a87d86f1cf9e48aab6605f77a2c89041a.tar.lz
UXP-ac25827a87d86f1cf9e48aab6605f77a2c89041a.tar.xz
UXP-ac25827a87d86f1cf9e48aab6605f77a2c89041a.zip
Remove SPS profiler.
- Conditionals and code blocks. (MOZ_ENABLE_PROFILER_SPS) - Stub out several profiler-only functions.
Diffstat (limited to 'tools/profiler/moz.build')
-rw-r--r--tools/profiler/moz.build106
1 files changed, 0 insertions, 106 deletions
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',
]