tor-browser

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

l10n-mozconfig-devedition (836B)


      1 . "$topsrcdir/browser/config/mozconfigs/common"
      2 . "$topsrcdir/build/mozconfig.no-compile"
      3 
      4 if test `uname -s` = "Linux"; then
      5   # We need to indicate the target for cross builds
      6   ac_add_options --target=x86_64-apple-darwin
      7   export MKFSHFS=$MOZ_FETCHES_DIR/hfsplus/newfs_hfs
      8   export DMG_TOOL=$MOZ_FETCHES_DIR/dmg/dmg
      9   export HFS_TOOL=$MOZ_FETCHES_DIR/dmg/hfsplus
     10 fi
     11 
     12 ac_add_options --enable-update-channel=${MOZ_UPDATE_CHANNEL}
     13 ac_add_options --with-branding=browser/branding/aurora
     14 
     15 ac_add_options --disable-nodejs
     16 unset NODEJS
     17 
     18 if test "${MOZ_UPDATE_CHANNEL}" = "nightly"; then
     19 ac_add_options --with-macbundlename-prefix=Firefox
     20 fi
     21 
     22 export MOZILLA_OFFICIAL=1
     23 
     24 # Don't autoclobber l10n, as this can lead to missing binaries and broken builds
     25 # Bug 1283438
     26 mk_add_options AUTOCLOBBER=
     27 
     28 . "$topsrcdir/build/mozconfig.common.override"