16 lines
380 B
Bash
Executable file
16 lines
380 B
Bash
Executable file
#!/bin/bash
|
|
set -e -v -x
|
|
|
|
# This script is for building GN on Windows.
|
|
|
|
UPLOAD_DIR=$PWD/public/build
|
|
|
|
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/build-gn-common.sh
|
|
|
|
. $GECKO_PATH/taskcluster/scripts/misc/vs-cleanup.sh
|