diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-05-24 14:06:04 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-05-24 14:06:04 +0200 |
commit | ac25827a87d86f1cf9e48aab6605f77a2c89041a (patch) | |
tree | c3533a008e606f4f6393e838b4305cf6d07f47d2 /toolkit/moz.configure | |
parent | c8b38a18031f6ae0fca8b2bef73daa86f6f96ae8 (diff) | |
download | uxp-ac25827a87d86f1cf9e48aab6605f77a2c89041a.tar.gz |
Remove SPS profiler.
- Conditionals and code blocks. (MOZ_ENABLE_PROFILER_SPS)
- Stub out several profiler-only functions.
Diffstat (limited to 'toolkit/moz.configure')
-rw-r--r-- | toolkit/moz.configure | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/toolkit/moz.configure b/toolkit/moz.configure index 0ed17410ab..7d3065f53b 100644 --- a/toolkit/moz.configure +++ b/toolkit/moz.configure @@ -22,23 +22,6 @@ def systrace(value, target): set_define('MOZ_USE_SYSTRACE', systrace) -@depends(target) -def sps_profiler(target): - if target.os == 'Android': - return target.cpu in ('arm', 'x86') - elif target.kernel == 'Linux': - return target.cpu in ('x86', 'x86_64') - return target.os in ('OSX', 'WINNT') - -@depends(sps_profiler) -def sps_profiler_define(value): - if value: - return True - -set_config('MOZ_ENABLE_PROFILER_SPS', sps_profiler_define) -set_define('MOZ_ENABLE_PROFILER_SPS', sps_profiler_define) - - # JACK cubeb backend # ============================================================== option('--enable-jack', env='MOZ_JACK', |