Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 1 | #!/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 | |
| 17 | if [ ! -d art ]; then |
| 18 | echo "Script needs to be run at the root of the android tree" |
| 19 | exit 1 |
| 20 | fi |
| 21 | |
Fredrik Roubert | ad9c4a3 | 2016-11-11 19:28:18 -0800 | [diff] [blame] | 22 | # Logic for setting out_dir from build/make/core/envsetup.mk: |
| 23 | if [[ -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 |
| 29 | else |
| 30 | out_dir=${OUT_DIR} |
| 31 | fi |
| 32 | |
Nicolas Geoffray | 4b29f38 | 2015-10-07 09:28:52 +0100 | [diff] [blame] | 33 | java_libraries_dir=${out_dir}/target/common/obj/JAVA_LIBRARIES |
Tobias Thierer | b3ec089 | 2016-08-03 16:13:04 +0100 | [diff] [blame] | 34 | common_targets="vogar core-tests apache-harmony-jdwp-tests-hostdex jsr166-tests mockito-target ${out_dir}/host/linux-x86/bin/jack" |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 35 | mode="target" |
| 36 | j_arg="-j$(nproc)" |
Roland Levillain | b8b9356 | 2015-08-20 17:49:56 +0100 | [diff] [blame] | 37 | showcommands= |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 38 | make_command= |
| 39 | |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 40 | while true; do |
| 41 | if [[ "$1" == "--host" ]]; then |
| 42 | mode="host" |
| 43 | shift |
| 44 | elif [[ "$1" == "--target" ]]; then |
| 45 | mode="target" |
| 46 | shift |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 47 | elif [[ "$1" == -j* ]]; then |
Nicolas Geoffray | 667b99e | 2015-05-29 12:17:06 +0100 | [diff] [blame] | 48 | j_arg=$1 |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 49 | shift |
Roland Levillain | b8b9356 | 2015-08-20 17:49:56 +0100 | [diff] [blame] | 50 | elif [[ "$1" == "--showcommands" ]]; then |
| 51 | showcommands="showcommands" |
| 52 | shift |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 53 | elif [[ "$1" == "" ]]; then |
| 54 | break |
| 55 | fi |
| 56 | done |
| 57 | |
| 58 | if [[ $mode == "host" ]]; then |
Nicolas Geoffray | f813745 | 2016-04-28 11:58:03 +0100 | [diff] [blame] | 59 | make_command="make $j_arg $showcommands build-art-host-tests $common_targets" |
| 60 | make_command+=" ${out_dir}/host/linux-x86/lib/libjavacoretests.so " |
| 61 | make_command+=" ${out_dir}/host/linux-x86/lib64/libjavacoretests.so" |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 62 | elif [[ $mode == "target" ]]; then |
Nicolas Geoffray | f813745 | 2016-04-28 11:58:03 +0100 | [diff] [blame] | 63 | make_command="make $j_arg $showcommands build-art-target-tests $common_targets" |
Nicolas Geoffray | b3dab27 | 2016-06-13 15:28:38 +0100 | [diff] [blame] | 64 | make_command+=" libjavacrypto libjavacoretests libnetd_client linker toybox toolbox sh" |
Nicolas Geoffray | f813745 | 2016-04-28 11:58:03 +0100 | [diff] [blame] | 65 | make_command+=" ${out_dir}/host/linux-x86/bin/adb libstdc++ " |
| 66 | make_command+=" ${out_dir}/target/product/${TARGET_PRODUCT}/system/etc/public.libraries.txt" |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 67 | fi |
| 68 | |
Nicolas Geoffray | aadc986 | 2015-09-29 14:56:31 +0100 | [diff] [blame] | 69 | echo "Executing $make_command" |
| 70 | $make_command |