758e92c38d62f485c64419c529ba2dfba744c5e7
[platform/framework/web/chromium-efl.git] / tizen_src / build / common.sh
1 #!/bin/bash
2
3 export SCRIPTDIR=$(readlink -e $(dirname $0))
4 export TOPDIR=$(readlink -f "${SCRIPTDIR}/../..")
5 export CHROME_SRC="${TOPDIR}"
6
7 function getHostOs() {
8   echo $(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')
9 }
10
11 function getHostArch() {
12   echo $(uname -m | sed -e \
13         's/i.86/ia32/;s/x86_64/x64/;s/amd64/x64/;s/arm.*/arm/;s/i86pc/ia32/;s/aarch64/arm64/')
14 }
15
16 function getPythonVersion() {
17   echo $(python --version  2>&1 | sed -e 's/Python \([0-9]\+\.[0-9]\+\)\.[0-9]\+/\1/')
18 }
19
20 function setIfUndef() {
21     eval original=\$$1
22     new=$2
23     if [ -n "$original" ]; then
24         echo $original
25     else
26         echo $new
27     fi
28 }
29
30
31 function hostBuldScriptUsage() {
32 cat << EOF
33 usage: $1 [OPTIONS]
34
35 Build non gbs version of chromium-efl
36
37 OPTIONS:
38    -h, --help            Show this message
39    --build-ewk-unittests Build ewk unittests
40    --ccache              Configure ccache installed in your system
41    --clang               Use chromium's clang compiler to build the sources
42    --content-shell       Build content_shell application
43    --debug               Build debug version of chromium-efl (out.${host_arch}/Debug instead of out.${host_arch}/Release)
44    -jN                   Set number of jobs, just like with make or ninja
45    --skip-gyp            Skip restore_gyp, jhbuild and gyp_chromium steps
46    --skip-ninja          Skip ninja step
47    --xwalk               Build crosswalk and friends
48
49 examples:
50 $0 --skip-gyp
51 $0 --skip-gyp --ccache
52 $0 --skip-ninja
53 EOF
54   exit
55 }
56
57 function parseHostBuildScriptParams() {
58
59   export SKIP_GYP=0
60   export USE_CCACHE=0
61   export USE_CLANG=0
62   export FORCE_JHBUILD=0
63   export SKIP_NINJA=0
64   export BUILD_EWK_UNITTESTS=0
65   export BUILD_CONTENT_SHELL=0
66   export BUILD_XWALK=0
67   export BUILD_SUBDIRECTORY=Release
68   export COMPONENT_BUILD=0
69
70   local platform="$1"
71   shift
72
73   while [[ $# > 0 ]]; do
74     case "$1" in
75       -h|--help)
76         hostBuldScriptUsage ${0}
77         ;;
78       --skip-gyp)
79         export SKIP_GYP=1
80         ;;
81       --ccache)
82         echo using ccache
83         export USE_CCACHE=1
84         source $TOPDIR/tizen_src/build/ccache_env.sh ${platform}
85         ;;
86       --clang)
87         export USE_CLANG=1
88         ;;
89       --content-shell)
90         export BUILD_CONTENT_SHELL=1
91         ;;
92       --force-jhbuild)
93         export FORCE_JHBUILD=1
94         ;;
95       --skip-ninja)
96         export SKIP_NINJA=1
97         ;;
98       --build-ewk-unittests)
99         export BUILD_EWK_UNITTESTS=1
100         ;;
101       --debug)
102         export BUILD_SUBDIRECTORY="Debug"
103         ;;
104       --xwalk)
105         export BUILD_XWALK=1
106         ;;
107       --component-build)
108         export COMPONENT_BUILD=1
109         ;;
110       -j*)
111         export JOBS="$1"
112         ;;
113       *)
114         echo "Unknown argument: $1"
115         exit 1
116         ;;
117     esac
118     shift;
119   done
120 }
121
122 function hostGypChromiumEfl() {
123   if [[ $SKIP_GYP == 0 ]]; then
124     local XWALK_ARG=""
125     local COMPONENT_ARG=""
126     if [[ $BUILD_XWALK == 1 ]]; then
127       XWALK_ARG="--xwalk"
128     fi
129     if [[ $COMPONENT_BUILD == 1 ]]; then
130       COMPONENT_ARG="-Dcomponent=shared_library"
131     fi
132     ${TOPDIR}/tizen_src/build/gyp_chromiumefl.sh $XWALK_ARG $COMPONENT_ARG $@
133   fi
134 }
135
136 function hostNinja() {
137   if [[ $SKIP_NINJA == 0 ]]; then
138     TARGETS="chromium-ewk efl_webprocess efl_webview_app ubrowser"
139     if [[ $BUILD_EWK_UNITTESTS == 1 ]]; then
140       TARGETS="$TARGETS ewk_unittests"
141     fi
142     if [[ $BUILD_CONTENT_SHELL == 1 ]]; then
143       TARGETS="$TARGETS content_shell dump_syms minidump_stackwalk"
144     fi
145     if [[ $BUILD_XWALK == 1 ]]; then
146       TARGETS="$TARGETS xwalk"
147     fi
148     BUILDDIR=${GYP_GENERATOR_OUTPUT}/${BUILD_SUBDIRECTORY}
149     ninja -C $BUILDDIR ${JOBS} ${TARGETS}
150   fi
151 }
152
153 function error_report() {
154   echo "Error: File:$1 Line:$2"
155   exit 1
156 }
157
158 function findElementInArray() {
159   local elm
160   for elm in "${@:2}"; do
161     [[ "$elm" = "$1" ]] && return 0;
162   done
163   return 1;
164 }
165
166 function setupAndExecuteTargetBuild() {
167
168   local platform="$1"
169   shift
170
171   local PROFILE
172   local ARCHITECTURE
173   local CONF_FLAG
174   local -a ARGS
175
176   # "|| :" means "or always succeeding built-in command"
177   PROFILE=$(echo "$@" | grep -Po "(?<=\-P\s)[^\s]*" || :)
178   ARCHITECTURE=$(echo "$@" | grep -Po "(?<=\-A\s)[^\s]*" || :)
179
180   if [ "$PROFILE" == "" ]; then
181     if [[ $platform == "mobile" ]]; then
182       PROFILE=tzmb_v3.0_arm64-wayland
183     elif [[ $platform == "mobile_emulator" ]]; then
184       PROFILE=tzmb_v3.0_emulator-wayland
185     elif [[ $platform == "tv" ]]; then
186       PROFILE=tztv_v3.0_arm-wayland
187     elif [[ $platform == "tv_emulator" ]]; then
188       PROFILE=tztv_v3.0_emulator-wayland
189     else
190       echo "Cannot set default PROFILE for platform=${platform}"
191       exit 1
192     fi
193   fi
194   echo "Set the profile : $PROFILE"
195
196   if [ "$ARCHITECTURE" == "" ]; then
197     if [[ $platform == "mobile" ]]; then
198       ARCHITECTURE=aarch64
199     elif [[ $platform == "mobile_emulator" ]]; then
200       ARCHITECTURE=i586
201     elif [[ $platform == "tv" ]]; then
202       ARCHITECTURE=armv7l
203     elif [[ $platform == "tv_emulator" ]]; then
204       ARCHITECTURE=i586
205     else
206       echo "Cannot set default ARCHITECTURE for platform=${platform}"
207       exit 1
208     fi
209   fi
210   echo "Set the architecture : $ARCHITECTURE"
211
212   if [ "$USE_GLOBAL_GBS_CONF" == "" ]; then
213     CONF_FLAG="--conf ${SCRIPTDIR}/gbs.conf"
214   fi
215
216   EXTRA_PACK_OPTS=""
217   if [ "$PROFILE" == "tztv_v2.2.1_prehawk" ]; then
218     EXTRA_PACK_OPTS="--extra-packs python-base-x86-arm,python-x86-arm,python-xml-x86-arm"
219   fi
220
221   if [ "$(echo "${PROFILE}" | grep -Po "v3.0")" != "" ]; then
222     prepareTizen3Build $PROFILE
223   fi
224
225   local count=0
226   while [[ $# > 0 ]]; do
227     count=$(( $count + 1 ))
228     case "$1" in
229     --debug)
230         ARGS[$count]=--define
231         count=$(( $count + 1 ))
232         ARGS[$count]="_debug_mode 1"
233     ;;
234     --skip-ninja)
235         ARGS[$count]=--define
236         count=$(( $count + 1 ))
237         ARGS[$count]="_skip_ninja 1"
238     ;;
239     --skip-gyp)
240         ARGS[$count]=--define
241         count=$(( $count + 1 ))
242         ARGS[$count]="_skip_gyp 1"
243     ;;
244     --xwalk)
245         ARGS[$count]=--define
246         count=$(( $count + 1 ))
247         ARGS[$count]="build_xwalk 1"
248     ;;
249     --component-build)
250         ARGS[$count]=--define
251         count=$(( $count + 1 ))
252         ARGS[$count]="component_build 1"
253     ;;
254     --gbs-debug)
255         ARGS[$count]=--debug
256     ;;
257     *)
258       ARGS[$count]="$1"
259     ;;
260     esac
261     shift;
262   done
263
264   cd $TOPDIR
265   rm -f packaging
266   ln -sf tizen_src/packaging packaging
267
268   gbs $CONF_FLAG build -P $PROFILE --include-all -A $ARCHITECTURE --incremental "${ARGS[@]}" $BUILD_CONF_OPTS $EXTRA_PACK_OPTS
269 }
270
271 function prepareTizen3Build() {
272   local PROFILE=$1
273   BUILD_CONF_OPTS=""
274
275   # In case of '_rpmlint 1', build.conf of gbs repo will be used, enabling rpmlint.
276   # Otherwise, locally prepared build.conf will be used, disabling rpmlint.
277   local PREVIOUS_BUILD_CONF_PATH=""
278   local LOCAL_BUILD_CONF_PATH=""
279
280   if [ "$PROFILE" == "tztv_v3.0_arm-wayland" ]; then
281     PREVIOUS_BUILD_CONF_PATH="/var/tmp/$USER-gbs/tztv_v3.0_arm-walynad.conf"
282     LOCAL_BUILD_CONF_PATH="$TOPDIR/tizen_src/build/tztv_v3.0_arm-wayland.conf"
283   elif [ "$PROFILE" == "tzmb_v3.0_arm-wayland" ]; then
284     PREVIOUS_BUILD_CONF_PATH="/var/tmp/$USER-gbs/tzmb_v3.0_arm-walynad.conf"
285     LOCAL_BUILD_CONF_PATH="$TOPDIR/tizen_src/build/tzmb_v3.0_arm-wayland.conf"
286   elif [ "$PROFILE" == "tzmb_v3.0_arm64-wayland" ]; then
287     PREVIOUS_BUILD_CONF_PATH="/var/tmp/$USER-gbs/tzmb_v3.0_arm64-walynad.conf"
288     LOCAL_BUILD_CONF_PATH="$TOPDIR/tizen_src/build/tzmb_v3.0_arm64-wayland.conf"
289   fi
290
291   local PREVIOUS_RPMLINT="!rpmlint"
292   if [ ! -f "$PREVIOUS_BUILD_CONF_PATH" ]; then
293     PREVIOUS_RPMLINT=""
294   elif [ "$(grep -Po "\!rpmlint" "$PREVIOUS_BUILD_CONF_PATH" | uniq -d)" != "!rpmlint" ]; then
295     PREVIOUS_RPMLINT="rpmlint"
296   fi
297
298   if [ "$LOCAL_BUILD_CONF_PATH" != "" ]; then
299     BUILD_CONF_OPTS="-D $LOCAL_BUILD_CONF_PATH"
300   fi
301
302   if [ "$(echo "$@" | grep -Po "_rpmlint\ 1")" == "" ]; then
303     if [ "$PREVIOUS_RPMLINT" == "rpmlint" ]; then
304       BUILD_CONF_OPTS+=" --clean"
305     fi
306   else
307     BUILD_CONF_OPTS=""
308     if [ "$PREVIOUS_RPMLINT" == "!rpmlint" ]; then
309       BUILD_CONF_OPTS="--clean"
310     fi
311   fi
312 }