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 | |
Colin Cross | e0ef0a8 | 2017-07-27 21:29:18 +0000 | [diff] [blame] | 22 | source build/envsetup.sh >&/dev/null # for get_build_var |
| 23 | |
Fredrik Roubert | ad9c4a3 | 2016-11-11 19:28:18 -0800 | [diff] [blame] | 24 | # Logic for setting out_dir from build/make/core/envsetup.mk: |
| 25 | if [[ -z $OUT_DIR ]]; then |
| 26 | if [[ -z $OUT_DIR_COMMON_BASE ]]; then |
| 27 | out_dir=out |
| 28 | else |
| 29 | out_dir=${OUT_DIR_COMMON_BASE}/${PWD##*/} |
| 30 | fi |
| 31 | else |
| 32 | out_dir=${OUT_DIR} |
| 33 | fi |
| 34 | |
Colin Cross | e0ef0a8 | 2017-07-27 21:29:18 +0000 | [diff] [blame] | 35 | using_jack=$(get_build_var ANDROID_COMPILE_WITH_JACK) |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 36 | |
Nicolas Geoffray | 4b29f38 | 2015-10-07 09:28:52 +0100 | [diff] [blame] | 37 | java_libraries_dir=${out_dir}/target/common/obj/JAVA_LIBRARIES |
Andreas Gampe | 6c3e1a0 | 2017-11-09 10:29:32 -0800 | [diff] [blame] | 38 | common_targets="vogar core-tests apache-harmony-jdwp-tests-hostdex jsr166-tests mockito-target" |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 39 | mode="target" |
| 40 | j_arg="-j$(nproc)" |
Roland Levillain | b8b9356 | 2015-08-20 17:49:56 +0100 | [diff] [blame] | 41 | showcommands= |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 42 | make_command= |
| 43 | |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 44 | while true; do |
| 45 | if [[ "$1" == "--host" ]]; then |
| 46 | mode="host" |
| 47 | shift |
| 48 | elif [[ "$1" == "--target" ]]; then |
| 49 | mode="target" |
| 50 | shift |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 51 | elif [[ "$1" == -j* ]]; then |
Nicolas Geoffray | 667b99e | 2015-05-29 12:17:06 +0100 | [diff] [blame] | 52 | j_arg=$1 |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 53 | shift |
Roland Levillain | b8b9356 | 2015-08-20 17:49:56 +0100 | [diff] [blame] | 54 | elif [[ "$1" == "--showcommands" ]]; then |
| 55 | showcommands="showcommands" |
| 56 | shift |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 57 | elif [[ "$1" == "" ]]; then |
| 58 | break |
Andreas Gampe | 0dcee91 | 2017-02-01 22:07:45 -0800 | [diff] [blame] | 59 | else |
| 60 | echo "Unknown options $@" |
| 61 | exit 1 |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 62 | fi |
| 63 | done |
| 64 | |
Colin Cross | e0ef0a8 | 2017-07-27 21:29:18 +0000 | [diff] [blame] | 65 | if [[ $using_jack == "true" ]]; then |
Igor Murashkin | 84f2632 | 2017-06-06 11:36:33 -0700 | [diff] [blame] | 66 | common_targets="$common_targets ${out_dir}/host/linux-x86/bin/jack" |
| 67 | fi |
| 68 | |
Andreas Gampe | 353d818 | 2017-10-12 10:17:34 -0700 | [diff] [blame] | 69 | # Allow to build successfully in master-art. |
| 70 | extra_args=SOONG_ALLOW_MISSING_DEPENDENCIES=true |
| 71 | |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 72 | if [[ $mode == "host" ]]; then |
Andreas Gampe | 6c3e1a0 | 2017-11-09 10:29:32 -0800 | [diff] [blame] | 73 | make_command="make $j_arg $extra_args $showcommands build-art-host-tests $common_targets" |
| 74 | make_command+=" dx-tests" |
| 75 | mode_suffix="-host" |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 76 | elif [[ $mode == "target" ]]; then |
Nicolas Geoffray | ab4825d | 2018-02-05 16:12:52 +0000 | [diff] [blame] | 77 | make_command="make $j_arg $extra_args $showcommands build-art-target-tests $common_targets" |
Andreas Gampe | 6c3e1a0 | 2017-11-09 10:29:32 -0800 | [diff] [blame] | 78 | make_command+=" libjavacrypto-target libnetd_client-target linker toybox toolbox sh" |
Nicolas Geoffray | f813745 | 2016-04-28 11:58:03 +0100 | [diff] [blame] | 79 | make_command+=" ${out_dir}/host/linux-x86/bin/adb libstdc++ " |
| 80 | make_command+=" ${out_dir}/target/product/${TARGET_PRODUCT}/system/etc/public.libraries.txt" |
Andreas Gampe | 6c3e1a0 | 2017-11-09 10:29:32 -0800 | [diff] [blame] | 81 | mode_suffix="-target" |
Nicolas Geoffray | fbeca75 | 2015-05-29 10:54:12 +0100 | [diff] [blame] | 82 | fi |
| 83 | |
Andreas Gampe | 6c3e1a0 | 2017-11-09 10:29:32 -0800 | [diff] [blame] | 84 | mode_specific_libraries="libjavacoretests libjdwp libwrapagentproperties libwrapagentpropertiesd" |
| 85 | for LIB in ${mode_specific_libraries} ; do |
| 86 | make_command+=" $LIB${mode_suffix}" |
| 87 | done |
| 88 | |
| 89 | |
| 90 | |
Nicolas Geoffray | aadc986 | 2015-09-29 14:56:31 +0100 | [diff] [blame] | 91 | echo "Executing $make_command" |
David Brazdil | df76a5f | 2018-01-26 11:03:01 +0000 | [diff] [blame] | 92 | bash -c "$make_command" |