tor-browser

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

build.js (500B)


      1 #!/bin/sh
      2 /* This Source Code Form is subject to the terms of the Mozilla Public
      3 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
      4 * You can obtain one at http://mozilla.org/MPL/2.0/. */
      5 
      6 
      7 set -e
      8 
      9 cd $SOURCE
     10 ./mach configure
     11 ./mach build export
     12 ./mach build -X nsprpub mfbt memory memory/mozalloc modules/zlib mozglue js/src xpcom/glue js/xpconnect/loader js/xpconnect/wrappers js/xpconnect/src
     13 status=$?
     14 echo "[[[[ build.js complete, exit code $status ]]]]"
     15 exit $status