зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
445 B
Bash
Executable File
19 строки
445 B
Bash
Executable File
#!/bin/bash
|
|
set -e -v -x
|
|
|
|
# This script is for building GN on Windows.
|
|
|
|
UPLOAD_DIR=$PWD/public/build
|
|
COMPRESS_EXT=bz2
|
|
|
|
cd $GECKO_PATH
|
|
|
|
export PATH="$(cd $MOZ_FETCHES_DIR && pwd)/ninja/bin:$PATH"
|
|
export PATH="$(cd $MOZ_FETCHES_DIR && pwd)/mingw64/bin:$PATH"
|
|
|
|
. taskcluster/scripts/misc/vs-setup.sh
|
|
. taskcluster/scripts/misc/tooltool-download.sh
|
|
. taskcluster/scripts/misc/build-gn-common.sh
|
|
|
|
. $GECKO_PATH/taskcluster/scripts/misc/vs-cleanup.sh
|