Bug 1907883 - Enable ForkServer except for PGO, CCOV, ASAN, TSAN, MSAN and UBSAN r=perftest-reviewers,glandium,sparky

Differential Revision: https://phabricator.services.mozilla.com/D216998
This commit is contained in:
Alexandre Lissy 2024-08-05 08:11:46 +00:00
parent d4d4098efb
commit 60cc1f1560

View File

@ -2914,7 +2914,11 @@
#ifdef MOZ_ENABLE_FORKSERVER
- name: dom.ipc.forkserver.enable
type: bool
#if defined(MOZ_CODE_COVERAGE) || defined(MOZ_ASAN) || defined(MOZ_TSAN) || defined(MOZ_MSAN) || defined(MOZ_UBSAN) || defined(MOZ_PROFILE_GENERATE)
value: false
#else
value: @IS_NIGHTLY_BUILD@
#endif
mirror: once
#endif