Upstream version 5.34.92.0
[platform/framework/web/crosswalk.git] / src / build / android / envsetup.sh
1 #!/bin/bash
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 # Sets up environment for building Chromium on Android.  It can either be
7 # compiled with the Android tree or using the Android SDK/NDK. To build with
8 # NDK/SDK: ". build/android/envsetup.sh".  Environment variable
9 # ANDROID_SDK_BUILD=1 will then be defined and used in the rest of the setup to
10 # specifiy build type.
11
12 # Make sure we're being sourced (possibly by another script). Check for bash
13 # since zsh sets $0 when sourcing.
14 if [[ -n "$BASH_VERSION" && "${BASH_SOURCE:-$0}" == "$0" ]]; then
15   echo "ERROR: envsetup must be sourced."
16   exit 1
17 fi
18
19 # Source functions script.  The file is in the same directory as this script.
20 SCRIPT_DIR="$(dirname "${BASH_SOURCE:-$0}")"
21 . "${SCRIPT_DIR}"/envsetup_functions.sh
22
23 export ANDROID_SDK_BUILD=1  # Default to SDK build.
24
25 process_options "$@"
26
27 # When building WebView as part of Android we can't use the SDK. Other builds
28 # default to using the SDK.
29 if [[ "${CHROME_ANDROID_BUILD_WEBVIEW}" -eq 1 ]]; then
30   export ANDROID_SDK_BUILD=0
31 fi
32
33 if [[ "${ANDROID_SDK_BUILD}" -ne 1 ]]; then
34   echo "Initializing for non-SDK build."
35 fi
36
37 # Get host architecture, and abort if it is 32-bit, unless --try-32
38 # is also used.
39 host_arch=$(uname -m)
40 case "${host_arch}" in
41   x86_64)  # pass
42     ;;
43   i?86)
44     if [[ -z "${try_32bit_host_build}" ]]; then
45       echo "ERROR: Android build requires a 64-bit host build machine."
46       echo "If you really want to try it on this machine, use the \
47 --try-32bit-host flag."
48       echo "Be warned that this may fail horribly at link time, due \
49 very large binaries."
50       return 1
51     else
52       echo "WARNING: 32-bit host build enabled. Here be dragons!"
53       host_arch=x86
54     fi
55     ;;
56   *)
57     echo "ERROR: Unsupported host architecture (${host_arch})."
58     echo "Try running this script on a Linux/x86_64 machine instead."
59     return 1
60 esac
61
62 case "${host_os}" in
63   "linux")
64     toolchain_dir="linux-${host_arch}"
65     ;;
66   "mac")
67     toolchain_dir="darwin-${host_arch}"
68     ;;
69   *)
70     echo "Host platform ${host_os} is not supported" >& 2
71     return 1
72 esac
73
74 CURRENT_DIR="$(readlink -f "${SCRIPT_DIR}/../../")"
75 if [[ -z "${CHROME_SRC}" ]]; then
76   # If $CHROME_SRC was not set, assume current directory is CHROME_SRC.
77   export CHROME_SRC="${CURRENT_DIR}"
78 fi
79
80 if [[ "${CURRENT_DIR/"${CHROME_SRC}"/}" == "${CURRENT_DIR}" ]]; then
81   # If current directory is not in $CHROME_SRC, it might be set for other
82   # source tree. If $CHROME_SRC was set correctly and we are in the correct
83   # directory, "${CURRENT_DIR/"${CHROME_SRC}"/}" will be "".
84   # Otherwise, it will equal to "${CURRENT_DIR}"
85   echo "Warning: Current directory is out of CHROME_SRC, it may not be \
86 the one you want."
87   echo "${CHROME_SRC}"
88 fi
89
90 if [[ "${ANDROID_SDK_BUILD}" -eq 1 ]]; then
91   if [[ -z "${TARGET_ARCH}" ]]; then
92     return 1
93   fi
94   sdk_build_init
95 # Sets up environment for building Chromium for Android with source. Expects
96 # android environment setup and lunch.
97 elif [[ -z "$ANDROID_BUILD_TOP" || \
98         -z "$ANDROID_TOOLCHAIN" || \
99         -z "$ANDROID_PRODUCT_OUT" ]]; then
100   echo "Android build environment variables must be set."
101   echo "Please cd to the root of your Android tree and do: "
102   echo "  . build/envsetup.sh"
103   echo "  lunch"
104   echo "Then try this again."
105   echo "Or did you mean NDK/SDK build. Run envsetup.sh without any arguments."
106   return 1
107 elif [[ -n "$CHROME_ANDROID_BUILD_WEBVIEW" ]]; then
108   webview_build_init
109 fi
110
111 # Source a bunch of helper functions
112 . ${CHROME_SRC}/build/android/adb_device_functions.sh
113
114 # Declare Android are cross compile.
115 export GYP_CROSSCOMPILE=1
116
117 # Performs a gyp_chromium run to convert gyp->Makefile for android code.
118 android_gyp() {
119   # This is just a simple wrapper of gyp_chromium, please don't add anything
120   # in this function.
121   echo "GYP_GENERATORS set to '$GYP_GENERATORS'"
122   (
123     "${CHROME_SRC}/build/gyp_chromium" --depth="${CHROME_SRC}" --check "$@"
124   )
125 }