playwright/browser_patches/build.sh
Andrey Lushnikov 9da26f9534
devops: add //browser_patches/{build.sh,clean.sh} (#8582)
These are just proxy scripts to the browsers, so you can do:

```sh
$ ./browser_patches/prepare_checkout.sh ff-beta
$ ./browser_patches/clean.sh ff-beta
$ ./browser_patches/build.sh ff-beta
$ ./browser_patches/export.sh ff-beta
```
2021-08-31 03:22:58 -07:00

38 lines
961 B
Bash
Executable File

#!/bin/bash
set -e
set +x
trap "cd $(pwd -P)" EXIT
cd "$(dirname "$0")"
if [[ ($1 == '--help') || ($1 == '-h') ]]; then
echo "usage: build.sh [firefox|webkit|firefox-beta]"
echo
exit 0
fi
if [[ $# == 0 ]]; then
echo "missing browser: 'firefox' or 'webkit'"
echo "try './build.sh --help' for more information"
exit 1
fi
if [[ ("$1" == "firefox") || ("$1" == "firefox/") || ("$1" == "ff") ]]; then
bash ./firefox/build.sh "$@"
elif [[ ("$1" == "firefox-beta") || ("$1" == "ff-beta") ]]; then
bash ./firefox-beta/build.sh "$@"
elif [[ ("$1" == "webkit") || ("$1" == "webkit/") || ("$1" == "wk") ]]; then
bash ./webkit/build.sh "$@"
elif [[ ("$1" == "chromium") || ("$1" == "chromium/") || ("$1" == "cr") ]]; then
bash ./chromium/build.sh "$@"
elif [[ ("$1" == "winldd") ]]; then
bash ./winldd/build.sh "$@"
elif [[ ("$1" == "ffmpeg") ]]; then
bash ./ffmpeg/build.sh "$@"
else
echo ERROR: unknown browser to build - "$1"
exit 1
fi