Home | History | Annotate | Download | only in tools
      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 
     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 
     33 using_jack=true
     34 if [[ $ANDROID_COMPILE_WITH_JACK == false ]]; then
     35   using_jack=false
     36 fi
     37 
     38 java_libraries_dir=${out_dir}/target/common/obj/JAVA_LIBRARIES
     39 common_targets="vogar core-tests apache-harmony-jdwp-tests-hostdex jsr166-tests mockito-target"
     40 mode="target"
     41 j_arg="-j$(nproc)"
     42 showcommands=
     43 make_command=
     44 
     45 while true; do
     46   if [[ "$1" == "--host" ]]; then
     47     mode="host"
     48     shift
     49   elif [[ "$1" == "--target" ]]; then
     50     mode="target"
     51     shift
     52   elif [[ "$1" == -j* ]]; then
     53     j_arg=$1
     54     shift
     55   elif [[ "$1" == "--showcommands" ]]; then
     56     showcommands="showcommands"
     57     shift
     58   elif [[ "$1" == "" ]]; then
     59     break
     60   else
     61     echo "Unknown options $@"
     62     exit 1
     63   fi
     64 done
     65 
     66 if $using_jack; then
     67   common_targets="$common_targets ${out_dir}/host/linux-x86/bin/jack"
     68 fi
     69 
     70 if [[ $mode == "host" ]]; then
     71   make_command="make $j_arg $showcommands build-art-host-tests $common_targets dx-tests"
     72   make_command+=" ${out_dir}/host/linux-x86/lib/libjavacoretests.so "
     73   make_command+=" ${out_dir}/host/linux-x86/lib64/libjavacoretests.so"
     74 elif [[ $mode == "target" ]]; then
     75   make_command="make $j_arg $showcommands build-art-target-tests $common_targets"
     76   make_command+=" libjavacrypto libjavacoretests libnetd_client linker toybox toolbox sh"
     77   make_command+=" ${out_dir}/host/linux-x86/bin/adb libstdc++ "
     78   make_command+=" ${out_dir}/target/product/${TARGET_PRODUCT}/system/etc/public.libraries.txt"
     79 fi
     80 
     81 echo "Executing $make_command"
     82 $make_command
     83