tor-browser

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

default_config_env (1731B)


      1 #!/bin/bash
      2 
      3 # Edit {path-to} to match the location of your copy of Mozilla's
      4 # fork of libwebrtc (at https://github.com/mozilla/libwebrtc).
      5 export MOZ_LIBWEBRTC_SRC=$STATE_DIR/moz-libwebrtc
      6 
      7 # The previous fast-forward bug number is used for some error messaging.
      8 export MOZ_PRIOR_FASTFORWARD_BUG="1995393"
      9 
     10 # Fast-forwarding each Chromium version of libwebrtc should be done
     11 # under a separate bugzilla bug.  This bug number is used when crafting
     12 # the commit summary as each upstream commit is vendored into the
     13 # mercurial repository.  The bug used for the v106 fast-forward was
     14 # 1800920.
     15 export MOZ_FASTFORWARD_BUG="2000941"
     16 
     17 # MOZ_NEXT_LIBWEBRTC_MILESTONE and MOZ_NEXT_FIREFOX_REL_TARGET are
     18 # not used during fast-forward processing, but facilitate generating this
     19 # default config.  To generate an default config for the next update, run
     20 # bash dom/media/webrtc/third_party_build/update_default_config_env.sh
     21 export MOZ_NEXT_LIBWEBRTC_MILESTONE=142
     22 export MOZ_NEXT_FIREFOX_REL_TARGET=148
     23 
     24 # For Chromium release branches, see:
     25 # https://chromiumdash.appspot.com/branches
     26 
     27 # Chromium's v141 release branch was 7390.  This is used to pre-stack
     28 # the previous release branch's commits onto the appropriate base commit
     29 # (the first common commit between trunk and the release branch).
     30 export MOZ_PRIOR_UPSTREAM_BRANCH_HEAD_NUM="7390"
     31 
     32 # New target release branch for v142 is branch-heads/7444.  This is used
     33 # to calculate the next upstream commit.
     34 export MOZ_TARGET_UPSTREAM_BRANCH_HEAD="branch-heads/7444"
     35 
     36 # For local development 'mozpatches' is fine for a branch name, but when
     37 # pushing the patch stack to github, it should be named something like
     38 # 'moz-mods-chr142-for-rel148'.
     39 export MOZ_LIBWEBRTC_BRANCH="mozpatches"