tor-browser

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

.lldbinit.in (902B)


      1 # This must be the first Python variable set in this file
      2 script ignore__see_bug_1605268 = True
      3 
      4 #filter substitution
      5 script topsrcdir = "@topsrcdir@"; lldb.debugger.HandleCommand("command source -s true '%s'" % os.path.join(topsrcdir, ".lldbinit"))
      6 
      7 #ifdef MOZ_WIDGET_ANDROID
      8 settings set symbols.enable-external-lookup true
      9 
     10 # This is where libxul.so and libmozglue.so are produced in full builds.
     11 settings append target.exec-search-paths @topobjdir@/dist/bin
     12 
     13 # This is where artifact builds unpacks "crashreporter-symbols-full" uncompressed ELF debug symbols.
     14 settings append target.debug-file-search-paths @topobjdir@/dist/crashreporter-symbols
     15 
     16 # These are specific paths encoded into Mozilla's automation outputs.
     17 settings append target.source-map /builds/worker/workspace/build/src/obj-firefox @topobjdir@
     18 settings append target.source-map /builds/worker/workspace/build/src @topsrcdir@
     19 #endif