tor-browser

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

browser.toml (1103B)


      1 [DEFAULT]
      2 # Currently disabled on debug due to debug-only failures, see bug 1549723.
      3 # Disabled on Linux asan due to bug 1549729.
      4 skip-if = [
      5  "debug",
      6  "os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && asan",
      7  "tsan",
      8 ]
      9 # to avoid overhead when running the browser normally, StartupRecorder.sys.mjs will
     10 # do almost nothing unless browser.startup.record is true.
     11 # gfx.canvas.willReadFrequently.enable is just an optimization, but needs to be
     12 # set during early startup to have an impact as a canvas will be used by
     13 # StartupRecorder.sys.mjs
     14 prefs = [
     15  "browser.startup.record=true",
     16  "gfx.canvas.willReadFrequently.enable=true",
     17 ]
     18 environment = [
     19  "GNOME_ACCESSIBILITY=0",
     20  "MOZ_PROFILER_STARTUP=1",
     21  "MOZ_PROFILER_STARTUP_PERFORMANCE_TEST=1",
     22  "MOZ_PROFILER_STARTUP_FEATURES=js,mainthreadio",
     23  "MOZ_PROFILER_STARTUP_ENTRIES=10000000",
     24 ]
     25 
     26 ["../browser_startup_content_mainthreadio.js"]
     27 
     28 ["../browser_startup_mainthreadio.js"]
     29 skip-if = [
     30  "os == 'win' && msix", # Bug 1833639
     31  "socketprocess_networking", # bug 1707724
     32 ]
     33 
     34 ["../browser_startup_syncIPC.js"]