forked from vsimon/webrtcbuilds-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.sh
executable file
·52 lines (44 loc) · 1.34 KB
/
environment.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
# These are some common environment variables
ENVDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
export PROJECT_NAME=webrtcbuilds
export REPO_URL="https://chromium.googlesource.com/external/webrtc"
#supported unames - 'Darwin', 'Linux', 'Windows'
export UNAME=`uname`
if [ $UNAME != 'Darwin' -a $UNAME != 'Linux' ]; then
if [ "$OS" = 'Windows_NT' ]; then
export UNAME=Windows
else
echo "Building on unsupported platform"
exit 1
fi
fi
# supported platforms names - 'linux64', 'windows', 'osx', 'android'
if [ $UNAME = 'Linux' ]; then
# set PLATFORM to android on linux host to build android
export PLATFORM=${PLATFORM:-linux64}
export OUT_DIR=$ENVDIR/out
export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64
elif [ $UNAME = 'Windows' ]; then
export PLATFORM=windows
export OUT_DIR=$ENVDIR/out
elif [ $UNAME = 'Darwin' ]; then
export PLATFORM=osx
export OUT_DIR=$ENVDIR/out
fi
mkdir -p $OUT_DIR
export DEPOT_TOOLS=$ENVDIR/depot_tools
export PATH=$DEPOT_TOOLS:$PATH
if [ $UNAME = 'Windows' ]; then
export DEPOT_TOOLS_WIN_TOOLCHAIN=0
export PATH=$DEPOT_TOOLS/python276_bin:$PATH
if [ -d $DEPOT_TOOLS ]; then
export WIN_DEPOT_TOOLS=`cd $DEPOT_TOOLS; pwd -W`
else
export WIN_DEPOT_TOOLS=""
fi
fi
# for extensibility
if [ -f $ENVDIR/environment.local ]; then
source $ENVDIR/environment.local
fi