tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

mozconfig.browser (749B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 # This mozconfig is used when analyzing the source code of the Firefox browser
      6 # for GC rooting hazards. See
      7 # <https://wiki.mozilla.org/Javascript:SpiderMonkey:ExactStackRooting>.
      8 
      9 ac_add_options --enable-project=browser
     10 ac_add_options --enable-js-shell
     11 
     12 # the sixgill wrapper is not compatible with building wasm objects with clang.
     13 export WASM_SANDBOXED_LIBRARIES=
     14 
     15 # the hazard analysis is not happy with std::filesystem uses in relrhack host
     16 # tool.
     17 ac_add_options --disable-elf-hack
     18 
     19 . $topsrcdir/js/src/devtools/rootAnalysis/mozconfig.common