blob: 75694c340c83f20a9080150ca4d126a803aaef5c [file] [log] [blame]
Nicolas Geoffrayfbeca752015-05-29 10:54:12 +01001#!/bin/bash
2#
3# Copyright (C) 2015 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17if [ ! -d art ]; then
18 echo "Script needs to be run at the root of the android tree"
19 exit 1
20fi
21
Fredrik Roubertad9c4a32016-11-11 19:28:18 -080022# Logic for setting out_dir from build/make/core/envsetup.mk:
23if [[ -z $OUT_DIR ]]; then
24 if [[ -z $OUT_DIR_COMMON_BASE ]]; then
25 out_dir=out
26 else
27 out_dir=${OUT_DIR_COMMON_BASE}/${PWD##*/}
28 fi
29else
30 out_dir=${OUT_DIR}
31fi
32
Colin Crossd092e742017-07-27 06:03:00 +000033using_jack=true
34if [[ $ANDROID_COMPILE_WITH_JACK == false ]]; then
35 using_jack=false
36fi
Igor Murashkin84f26322017-06-06 11:36:33 -070037
Nicolas Geoffray4b29f382015-10-07 09:28:52 +010038java_libraries_dir=${out_dir}/target/common/obj/JAVA_LIBRARIES
Igor Murashkin84f26322017-06-06 11:36:33 -070039common_targets="vogar core-tests apache-harmony-jdwp-tests-hostdex jsr166-tests mockito-target"
Nicolas Geoffrayfbeca752015-05-29 10:54:12 +010040mode="target"
41j_arg="-j$(nproc)"
Roland Levillainb8b93562015-08-20 17:49:56 +010042showcommands=
Nicolas Geoffrayfbeca752015-05-29 10:54:12 +010043make_command=
44
Nicolas Geoffrayfbeca752015-05-29 10:54:12 +010045while true; do
46 if [[ "$1" == "--host" ]]; then
47 mode="host"
48 shift
49 elif [[ "$1" == "--target" ]]; then
50 mode="target"
51 shift
Nicolas Geoffrayfbeca752015-05-29 10:54:12 +010052 elif [[ "$1" == -j* ]]; then
Nicolas Geoffray667b99e2015-05-29 12:17:06 +010053 j_arg=$1
Nicolas Geoffrayfbeca752015-05-29 10:54:12 +010054 shift
Roland Levillainb8b93562015-08-20 17:49:56 +010055 elif [[ "$1" == "--showcommands" ]]; then
56 showcommands="showcommands"
57 shift
Nicolas Geoffrayfbeca752015-05-29 10:54:12 +010058 elif [[ "$1" == "" ]]; then
59 break
Andreas Gampe0dcee912017-02-01 22:07:45 -080060 else
61 echo "Unknown options $@"
62 exit 1
Nicolas Geoffrayfbeca752015-05-29 10:54:12 +010063 fi
64done
65
Colin Crossd092e742017-07-27 06:03:00 +000066if $using_jack; then
Igor Murashkin84f26322017-06-06 11:36:33 -070067 common_targets="$common_targets ${out_dir}/host/linux-x86/bin/jack"
68fi
69
Nicolas Geoffrayfbeca752015-05-29 10:54:12 +010070if [[ $mode == "host" ]]; then
Orion Hodsond0c3e832017-06-28 14:34:26 +010071 make_command="make $j_arg $showcommands build-art-host-tests $common_targets dx-tests"
Nicolas Geoffrayf8137452016-04-28 11:58:03 +010072 make_command+=" ${out_dir}/host/linux-x86/lib/libjavacoretests.so "
73 make_command+=" ${out_dir}/host/linux-x86/lib64/libjavacoretests.so"
Nicolas Geoffrayfbeca752015-05-29 10:54:12 +010074elif [[ $mode == "target" ]]; then
Nicolas Geoffrayf8137452016-04-28 11:58:03 +010075 make_command="make $j_arg $showcommands build-art-target-tests $common_targets"
Nicolas Geoffrayb3dab272016-06-13 15:28:38 +010076 make_command+=" libjavacrypto libjavacoretests libnetd_client linker toybox toolbox sh"
Nicolas Geoffrayf8137452016-04-28 11:58:03 +010077 make_command+=" ${out_dir}/host/linux-x86/bin/adb libstdc++ "
78 make_command+=" ${out_dir}/target/product/${TARGET_PRODUCT}/system/etc/public.libraries.txt"
Nicolas Geoffrayfbeca752015-05-29 10:54:12 +010079fi
80
Nicolas Geoffrayaadc9862015-09-29 14:56:31 +010081echo "Executing $make_command"
82$make_command