jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Copyright (C) 2008 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 | # Stop if something fails. |
| 18 | set -e |
| 19 | |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 20 | if [[ $# -le 0 ]]; then |
| 21 | echo 'Error:' '$0 should have the parameters from the "build" script forwarded to it' >&2 |
| 22 | echo 'Error: An example of how do it correctly is ./default-build "$@"' |
| 23 | exit 1 |
| 24 | fi |
| 25 | |
Alex Light | 6a439bc | 2015-10-26 17:52:36 -0700 | [diff] [blame] | 26 | # Set default values for directories. |
| 27 | if [ -d smali ]; then |
| 28 | HAS_SMALI=true |
| 29 | else |
| 30 | HAS_SMALI=false |
| 31 | fi |
| 32 | |
Igor Murashkin | 4014d84 | 2017-07-11 11:58:44 -0700 | [diff] [blame] | 33 | # .j files in jasmin get compiled into classes.jar |
| 34 | if [ -d jasmin ]; then |
| 35 | HAS_JASMIN=true |
| 36 | else |
| 37 | HAS_JASMIN=false |
| 38 | fi |
| 39 | |
Alex Light | 6a439bc | 2015-10-26 17:52:36 -0700 | [diff] [blame] | 40 | if [ -d src ]; then |
| 41 | HAS_SRC=true |
| 42 | else |
| 43 | HAS_SRC=false |
| 44 | fi |
| 45 | |
Igor Murashkin | 1c843e9 | 2017-06-19 14:33:06 -0700 | [diff] [blame] | 46 | # .java files in src-art get compiled with libcore on the bootclasspath |
| 47 | if [ -d src-art ]; then |
| 48 | HAS_SRC_ART=true |
| 49 | else |
| 50 | HAS_SRC_ART=false |
| 51 | fi |
| 52 | |
Alex Light | 6a439bc | 2015-10-26 17:52:36 -0700 | [diff] [blame] | 53 | if [ -d src2 ]; then |
| 54 | HAS_SRC2=true |
| 55 | else |
| 56 | HAS_SRC2=false |
| 57 | fi |
| 58 | |
| 59 | if [ -d src-multidex ]; then |
| 60 | HAS_SRC_MULTIDEX=true |
| 61 | else |
| 62 | HAS_SRC_MULTIDEX=false |
| 63 | fi |
| 64 | |
Alex Light | fedd91d | 2016-01-07 14:49:16 -0800 | [diff] [blame] | 65 | if [ -d smali-multidex ]; then |
| 66 | HAS_SMALI_MULTIDEX=true |
| 67 | else |
| 68 | HAS_SMALI_MULTIDEX=false |
| 69 | fi |
| 70 | |
Igor Murashkin | 4014d84 | 2017-07-11 11:58:44 -0700 | [diff] [blame] | 71 | # .j files in jasmin-multidex get compiled into classes2.jar |
| 72 | if [ -d jasmin-multidex ]; then |
| 73 | HAS_JASMIN_MULTIDEX=true |
| 74 | else |
| 75 | HAS_JASMIN_MULTIDEX=false |
| 76 | fi |
| 77 | |
Alex Light | 6a439bc | 2015-10-26 17:52:36 -0700 | [diff] [blame] | 78 | if [ -d src-ex ]; then |
| 79 | HAS_SRC_EX=true |
| 80 | else |
| 81 | HAS_SRC_EX=false |
| 82 | fi |
| 83 | |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 84 | if [ -d src-dex2oat-unresolved ]; then |
| 85 | HAS_SRC_DEX2OAT_UNRESOLVED=true |
| 86 | else |
| 87 | HAS_SRC_DEX2OAT_UNRESOLVED=false |
| 88 | fi |
| 89 | |
David Brazdil | 11b67b2 | 2018-01-18 16:41:40 +0000 | [diff] [blame] | 90 | if [ -f api-light-greylist.txt -o -f api-dark-greylist.txt -o -f api-blacklist.txt ]; then |
| 91 | HAS_HIDDENAPI_SPEC=true |
| 92 | else |
| 93 | HAS_HIDDENAPI_SPEC=false |
| 94 | fi |
| 95 | |
| 96 | # USE_HIDDENAPI=false run-test... will disable hiddenapi. |
| 97 | if [ -z "${USE_HIDDENAPI}" ]; then |
| 98 | USE_HIDDENAPI=true |
| 99 | fi |
| 100 | |
Igor Murashkin | e518193 | 2017-06-15 16:03:50 -0700 | [diff] [blame] | 101 | # DESUGAR=false run-test... will disable desugar. |
| 102 | if [[ "$DESUGAR" == false ]]; then |
| 103 | USE_DESUGAR=false |
| 104 | fi |
| 105 | |
Igor Murashkin | 271a0f8 | 2017-02-14 21:14:17 +0000 | [diff] [blame] | 106 | # Allow overriding ZIP_COMPRESSION_METHOD with e.g. 'store' |
| 107 | ZIP_COMPRESSION_METHOD="deflate" |
| 108 | # Align every ZIP file made by calling $ZIPALIGN command? |
| 109 | WITH_ZIP_ALIGN=false |
| 110 | ZIP_ALIGN_BYTES="-1" |
| 111 | |
Igor Murashkin | 6919639 | 2017-06-16 15:25:32 -0700 | [diff] [blame] | 112 | DX_FLAGS="--min-sdk-version=24" |
| 113 | DX_VM_FLAGS="" |
Alex Light | 6a439bc | 2015-10-26 17:52:36 -0700 | [diff] [blame] | 114 | EXPERIMENTAL="" |
| 115 | |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 116 | BUILD_MODE="target" |
| 117 | DEV_MODE="no" |
| 118 | |
Alex Light | ea1e770 | 2016-07-11 13:39:55 -0700 | [diff] [blame] | 119 | # The key for default arguments if no experimental things are enabled. |
| 120 | DEFAULT_EXPERIMENT="no-experiment" |
| 121 | |
Alex Light | 6a439bc | 2015-10-26 17:52:36 -0700 | [diff] [blame] | 122 | # Setup experimental flag mappings in a bash associative array. |
| 123 | declare -A JACK_EXPERIMENTAL_ARGS |
Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 124 | JACK_EXPERIMENTAL_ARGS["agents"]="-D jack.java.source.version=1.8 -D jack.android.min-api-level=24" |
Yohann Roussel | 4b49567 | 2016-03-21 16:26:02 +0100 | [diff] [blame] | 125 | JACK_EXPERIMENTAL_ARGS["default-methods"]="-D jack.java.source.version=1.8 -D jack.android.min-api-level=24" |
| 126 | JACK_EXPERIMENTAL_ARGS["lambdas"]="-D jack.java.source.version=1.8 -D jack.android.min-api-level=24" |
mikaelpeltier | 3233dcc | 2016-11-18 14:23:45 +0100 | [diff] [blame] | 127 | JACK_EXPERIMENTAL_ARGS["method-handles"]="-D jack.java.source.version=1.7 -D jack.android.min-api-level=o-b1" |
Alex Light | e4893ee | 2017-02-09 15:28:53 -0800 | [diff] [blame] | 128 | JACK_EXPERIMENTAL_ARGS[${DEFAULT_EXPERIMENT}]="-D jack.java.source.version=1.8 -D jack.android.min-api-level=24" |
David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 129 | |
Alex Light | b55f1ac | 2016-04-12 15:50:55 -0700 | [diff] [blame] | 130 | declare -A SMALI_EXPERIMENTAL_ARGS |
Ben Gruver | 14fc9db | 2017-04-28 15:30:49 -0700 | [diff] [blame] | 131 | SMALI_EXPERIMENTAL_ARGS["default-methods"]="--api 24" |
| 132 | SMALI_EXPERIMENTAL_ARGS["method-handles"]="--api 26" |
Orion Hodson | 928033d | 2018-02-07 05:30:54 +0000 | [diff] [blame] | 133 | SMALI_EXPERIMENTAL_ARGS["var-handles"]="--api 26" |
Ben Gruver | 14fc9db | 2017-04-28 15:30:49 -0700 | [diff] [blame] | 134 | SMALI_EXPERIMENTAL_ARGS["agents"]="--api 26" |
Alex Light | b55f1ac | 2016-04-12 15:50:55 -0700 | [diff] [blame] | 135 | |
Alex Light | ea1e770 | 2016-07-11 13:39:55 -0700 | [diff] [blame] | 136 | declare -A JAVAC_EXPERIMENTAL_ARGS |
| 137 | JAVAC_EXPERIMENTAL_ARGS["default-methods"]="-source 1.8 -target 1.8" |
| 138 | JAVAC_EXPERIMENTAL_ARGS["lambdas"]="-source 1.8 -target 1.8" |
Narayan Kamath | 9823e78 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 139 | JAVAC_EXPERIMENTAL_ARGS["method-handles"]="-source 1.8 -target 1.8" |
Orion Hodson | 928033d | 2018-02-07 05:30:54 +0000 | [diff] [blame] | 140 | JAVAC_EXPERIMENTAL_ARGS["var-handles"]="-source 1.8 -target 1.8" |
Alex Light | 4eec3c5 | 2017-04-14 13:17:26 -0700 | [diff] [blame] | 141 | JAVAC_EXPERIMENTAL_ARGS[${DEFAULT_EXPERIMENT}]="-source 1.8 -target 1.8" |
Alex Light | dba6148 | 2016-12-21 08:20:29 -0800 | [diff] [blame] | 142 | JAVAC_EXPERIMENTAL_ARGS["agents"]="-source 1.8 -target 1.8" |
Alex Light | ea1e770 | 2016-07-11 13:39:55 -0700 | [diff] [blame] | 143 | |
Igor Murashkin | 6919639 | 2017-06-16 15:25:32 -0700 | [diff] [blame] | 144 | declare -A DX_EXPERIMENTAL_ARGS |
| 145 | DX_EXPERIMENTAL_ARGS["method-handles"]="--min-sdk-version=26" |
Orion Hodson | 928033d | 2018-02-07 05:30:54 +0000 | [diff] [blame] | 146 | DX_EXPERIMENTAL_ARGS["var-handles"]="--min-sdk-version=26" |
Igor Murashkin | 6919639 | 2017-06-16 15:25:32 -0700 | [diff] [blame] | 147 | |
David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 148 | while true; do |
| 149 | if [ "x$1" = "x--dx-option" ]; then |
| 150 | shift |
Orion Hodson | e1fb77f | 2017-02-27 13:57:18 +0000 | [diff] [blame] | 151 | option="$1" |
David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 152 | DX_FLAGS="${DX_FLAGS} $option" |
| 153 | shift |
Igor Murashkin | 6919639 | 2017-06-16 15:25:32 -0700 | [diff] [blame] | 154 | elif [ "x$1" = "x--dx-vm-option" ]; then |
| 155 | shift |
| 156 | option="$1" |
| 157 | DX_VM_FLAGS="${DX_VM_FLAGS} $option" |
| 158 | shift |
Alex Light | 6a439bc | 2015-10-26 17:52:36 -0700 | [diff] [blame] | 159 | elif [ "x$1" = "x--no-src" ]; then |
| 160 | HAS_SRC=false |
| 161 | shift |
| 162 | elif [ "x$1" = "x--no-src2" ]; then |
| 163 | HAS_SRC2=false |
| 164 | shift |
| 165 | elif [ "x$1" = "x--no-src-multidex" ]; then |
| 166 | HAS_SRC_MULTIDEX=false |
| 167 | shift |
Alex Light | fedd91d | 2016-01-07 14:49:16 -0800 | [diff] [blame] | 168 | elif [ "x$1" = "x--no-smali-multidex" ]; then |
| 169 | HAS_SMALI_MULTIDEX=false |
| 170 | shift |
Alex Light | 6a439bc | 2015-10-26 17:52:36 -0700 | [diff] [blame] | 171 | elif [ "x$1" = "x--no-src-ex" ]; then |
| 172 | HAS_SRC_EX=false |
| 173 | shift |
| 174 | elif [ "x$1" = "x--no-smali" ]; then |
| 175 | HAS_SMALI=false |
| 176 | shift |
| 177 | elif [ "x$1" = "x--experimental" ]; then |
| 178 | shift |
Alex Light | ea1e770 | 2016-07-11 13:39:55 -0700 | [diff] [blame] | 179 | # We have a specific experimental configuration so don't use the default. |
| 180 | DEFAULT_EXPERIMENT="" |
Alex Light | 6a439bc | 2015-10-26 17:52:36 -0700 | [diff] [blame] | 181 | EXPERIMENTAL="${EXPERIMENTAL} $1" |
| 182 | shift |
Igor Murashkin | 271a0f8 | 2017-02-14 21:14:17 +0000 | [diff] [blame] | 183 | elif [ "x$1" = "x--zip-compression-method" ]; then |
| 184 | # Allow using different zip compression method, e.g. 'store' |
| 185 | shift |
| 186 | ZIP_COMPRESSION_METHOD="$1" |
| 187 | shift |
| 188 | elif [ "x$1" = "x--zip-align" ]; then |
| 189 | # Align ZIP entries to some # of bytes. |
| 190 | shift |
| 191 | WITH_ZIP_ALIGN=true |
| 192 | ZIP_ALIGN_BYTES="$1" |
| 193 | shift |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 194 | elif [ "x$1" = "x--host" ]; then |
| 195 | BUILD_MODE="host" |
| 196 | shift |
| 197 | elif [ "x$1" = "x--target" ]; then |
| 198 | BUILD_MODE="target" |
| 199 | shift |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 200 | elif [ "x$1" = "x--jvm" ]; then |
| 201 | BUILD_MODE="jvm" |
| 202 | shift |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 203 | elif [ "x$1" = "x--dev" ]; then |
| 204 | DEV_MODE="yes" |
| 205 | shift |
David Brazdil | 4846d13 | 2015-01-15 19:07:08 +0000 | [diff] [blame] | 206 | elif expr "x$1" : "x--" >/dev/null 2>&1; then |
| 207 | echo "unknown $0 option: $1" 1>&2 |
| 208 | exit 1 |
| 209 | else |
| 210 | break |
| 211 | fi |
| 212 | done |
| 213 | |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 214 | if [[ $BUILD_MODE == jvm ]]; then |
| 215 | # Does not need desugar on jvm because it supports the latest functionality. |
| 216 | USE_DESUGAR=false |
| 217 | # Do not attempt to build src-art directories on jvm, it would fail without libcore. |
| 218 | HAS_SRC_ART=false |
| 219 | fi |
| 220 | |
Alex Light | ea1e770 | 2016-07-11 13:39:55 -0700 | [diff] [blame] | 221 | # Be sure to get any default arguments if not doing any experiments. |
| 222 | EXPERIMENTAL="${EXPERIMENTAL} ${DEFAULT_EXPERIMENT}" |
| 223 | |
Sebastien Hertz | 361ad55 | 2017-01-04 16:07:57 +0100 | [diff] [blame] | 224 | if [ "${JACK_SERVER}" = "false" ]; then |
| 225 | # Run in single-threaded mode for the continuous buildbot. |
| 226 | JACK_ARGS="${JACK_ARGS} -D sched.runner=single-threaded" |
| 227 | else |
| 228 | # Run with 4 threads to reduce memory footprint and thread contention. |
| 229 | JACK_ARGS="${JACK_ARGS} -D sched.runner=multi-threaded" |
| 230 | JACK_ARGS="${JACK_ARGS} -D sched.runner.thread.kind=fixed" |
| 231 | JACK_ARGS="${JACK_ARGS} -D sched.runner.thread.fixed.count=4" |
| 232 | fi |
| 233 | |
Alex Light | 6a439bc | 2015-10-26 17:52:36 -0700 | [diff] [blame] | 234 | # Add args from the experimental mappings. |
| 235 | for experiment in ${EXPERIMENTAL}; do |
| 236 | JACK_ARGS="${JACK_ARGS} ${JACK_EXPERIMENTAL_ARGS[${experiment}]}" |
Alex Light | b55f1ac | 2016-04-12 15:50:55 -0700 | [diff] [blame] | 237 | SMALI_ARGS="${SMALI_ARGS} ${SMALI_EXPERIMENTAL_ARGS[${experiment}]}" |
Alex Light | ea1e770 | 2016-07-11 13:39:55 -0700 | [diff] [blame] | 238 | JAVAC_ARGS="${JAVAC_ARGS} ${JAVAC_EXPERIMENTAL_ARGS[${experiment}]}" |
Igor Murashkin | 6919639 | 2017-06-16 15:25:32 -0700 | [diff] [blame] | 239 | DX_FLAGS="${DX_FLAGS} ${DX_EXPERIMENTAL_ARGS[${experiment}]}" |
Alex Light | 6a439bc | 2015-10-26 17:52:36 -0700 | [diff] [blame] | 240 | done |
| 241 | |
Igor Murashkin | 271a0f8 | 2017-02-14 21:14:17 +0000 | [diff] [blame] | 242 | ######################################### |
| 243 | |
| 244 | # Catch all commands to 'ZIP' and prepend extra flags. |
| 245 | # Optionally, zipalign results to some alignment. |
| 246 | function zip() { |
| 247 | local zip_target="$1" |
| 248 | local entry_src="$2" |
| 249 | shift 2 |
| 250 | |
| 251 | command zip --compression-method "$ZIP_COMPRESSION_METHOD" "$zip_target" "$entry_src" "$@" |
| 252 | |
| 253 | if "$WITH_ZIP_ALIGN"; then |
| 254 | # zipalign does not operate in-place, so write results to a temp file. |
| 255 | local tmp_file="$(mktemp)" |
| 256 | "$ZIPALIGN" -f "$ZIP_ALIGN_BYTES" "$zip_target" "$tmp_file" |
| 257 | # replace original zip target with our temp file. |
| 258 | mv "$tmp_file" "$zip_target" |
| 259 | fi |
| 260 | } |
| 261 | |
Igor Murashkin | 4014d84 | 2017-07-11 11:58:44 -0700 | [diff] [blame] | 262 | function make_jasmin() { |
| 263 | local out_directory="$1" |
| 264 | shift |
| 265 | local jasmin_sources=("$@") |
| 266 | |
| 267 | mkdir -p "$out_directory" |
| 268 | |
| 269 | if [[ $DEV_MODE == yes ]]; then |
| 270 | echo ${JASMIN} -d "$out_directory" "${jasmin_sources[@]}" |
| 271 | ${JASMIN} -d "$out_directory" "${jasmin_sources[@]}" |
| 272 | else |
| 273 | ${JASMIN} -d "$out_directory" "${jasmin_sources[@]}" >/dev/null |
| 274 | fi |
| 275 | } |
| 276 | |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 277 | function desugar() { |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 278 | local desugar_args="--mode=$BUILD_MODE" |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 279 | |
| 280 | if [[ $DEV_MODE == yes ]]; then |
| 281 | desugar_args="$desugar_args --show-commands" |
| 282 | fi |
| 283 | |
Igor Murashkin | e518193 | 2017-06-15 16:03:50 -0700 | [diff] [blame] | 284 | "$DESUGAR" --core-only $desugar_args "$@" |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 285 | } |
| 286 | |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 287 | # Like regular javac but may include libcore on the bootclasspath. |
Igor Murashkin | 1c843e9 | 2017-06-19 14:33:06 -0700 | [diff] [blame] | 288 | function javac_with_bootclasspath { |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 289 | local helper_args="--mode=$BUILD_MODE" |
Igor Murashkin | 1c843e9 | 2017-06-19 14:33:06 -0700 | [diff] [blame] | 290 | |
| 291 | if [[ $DEV_MODE == yes ]]; then |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 292 | helper_args="$helper_args --show-commands" |
Igor Murashkin | 1c843e9 | 2017-06-19 14:33:06 -0700 | [diff] [blame] | 293 | fi |
| 294 | |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 295 | # build with libcore for host and target, or openjdk for jvm |
| 296 | "$ANDROID_BUILD_TOP/art/tools/javac-helper.sh" --core-only $helper_args ${JAVAC_ARGS} "$@" |
Igor Murashkin | 1c843e9 | 2017-06-19 14:33:06 -0700 | [diff] [blame] | 297 | } |
| 298 | |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 299 | # Make a "dex" file given a directory of classes in $1. |
| 300 | # Also calls desugar on the classes first to convert lambdas. |
| 301 | function make_dex() { |
| 302 | local name="$1" |
| 303 | |
| 304 | local dx_input |
| 305 | if [[ "$USE_DESUGAR" == "true" ]]; then |
| 306 | # Make a jar first so desugar doesn't need every .class file individually. |
| 307 | jar cf "$name.before-desugar.jar" -C "$name" . |
| 308 | |
| 309 | dx_input="${name}.desugar.jar" |
| 310 | |
| 311 | # Make desugared JAR. |
| 312 | desugar --input "$name.before-desugar.jar" --output "$dx_input" |
| 313 | else |
| 314 | dx_input="${name}" |
| 315 | fi |
| 316 | |
Alan Leung | 0afa07a | 2017-10-03 16:56:30 -0700 | [diff] [blame] | 317 | local dexer="${DX}" |
| 318 | if [ ${USE_D8} = "true" ]; then |
Alan Leung | a4ba9b5 | 2017-11-16 00:19:18 -0800 | [diff] [blame] | 319 | dexer="${ANDROID_HOST_OUT}/bin/d8-compat-dx" |
Alan Leung | 0afa07a | 2017-10-03 16:56:30 -0700 | [diff] [blame] | 320 | fi |
| 321 | |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 322 | # Make dex file from desugared JAR. |
Alan Leung | 0afa07a | 2017-10-03 16:56:30 -0700 | [diff] [blame] | 323 | ${dexer} -JXmx256m ${DX_VM_FLAGS} --debug --dex --dump-to=${name}.lst --output=${name}.dex --dump-width=1000 ${DX_FLAGS} "${dx_input}" |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 324 | } |
| 325 | |
Igor Murashkin | 4014d84 | 2017-07-11 11:58:44 -0700 | [diff] [blame] | 326 | # Merge all the dex files in $1..$N into $1. Skip non-existing files, but at least 1 file must exist. |
| 327 | function make_dexmerge() { |
| 328 | # Dex file that acts as the destination. |
| 329 | local dst_file="$1" |
| 330 | |
| 331 | # Dex files that act as the source. |
| 332 | local dex_files_to_merge=() |
| 333 | |
| 334 | # Skip any non-existing files. |
| 335 | while [[ $# -gt 0 ]]; do |
| 336 | if [[ -e "$1" ]]; then |
| 337 | dex_files_to_merge+=("$1") |
| 338 | fi |
| 339 | shift |
| 340 | done |
| 341 | |
| 342 | # Should have at least 1 dex_files_to_merge here, otherwise dxmerger will print the help. |
| 343 | ${DXMERGER} "$dst_file" "${dex_files_to_merge[@]}" |
| 344 | } |
| 345 | |
David Brazdil | 11b67b2 | 2018-01-18 16:41:40 +0000 | [diff] [blame] | 346 | function make_hiddenapi() { |
| 347 | local args=() |
| 348 | while [[ $# -gt 0 ]]; do |
| 349 | args+=("--dex=$1") |
| 350 | shift |
| 351 | done |
| 352 | if [ -f api-light-greylist.txt ]; then |
| 353 | args+=("--light-greylist=api-light-greylist.txt") |
| 354 | fi |
| 355 | if [ -f api-dark-greylist.txt ]; then |
| 356 | args+=("--dark-greylist=api-dark-greylist.txt") |
| 357 | fi |
| 358 | if [ -f api-blacklist.txt ]; then |
| 359 | args+=("--blacklist=api-blacklist.txt") |
| 360 | fi |
| 361 | ${HIDDENAPI} "${args[@]}" |
| 362 | } |
| 363 | |
Igor Murashkin | 1c843e9 | 2017-06-19 14:33:06 -0700 | [diff] [blame] | 364 | # Print the directory name only if it exists. |
| 365 | function maybe_dir() { |
| 366 | local dirname="$1" |
| 367 | if [[ -d "$dirname" ]]; then |
| 368 | echo "$dirname" |
| 369 | fi |
| 370 | } |
| 371 | |
Stephen Kyle | 40d3518 | 2014-10-03 13:47:56 +0100 | [diff] [blame] | 372 | if [ -e classes.dex ]; then |
| 373 | zip $TEST_NAME.jar classes.dex |
| 374 | exit 0 |
| 375 | fi |
| 376 | |
David Brazdil | 11b67b2 | 2018-01-18 16:41:40 +0000 | [diff] [blame] | 377 | # Helper function for a common test. Evaluate with $(has_mutlidex). |
| 378 | function has_multidex() { |
| 379 | echo [ ${HAS_SRC_MULTIDEX} = "true" \ |
| 380 | -o ${HAS_JASMIN_MULTIDEX} = "true" \ |
| 381 | -o ${HAS_SMALI_MULTIDEX} = "true" ] |
| 382 | } |
| 383 | |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 384 | if [ ${HAS_SRC_DEX2OAT_UNRESOLVED} = "true" ]; then |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 385 | mkdir -p classes |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 386 | mkdir classes-ex |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 387 | javac_with_bootclasspath -implicit:none -sourcepath src-dex2oat-unresolved -d classes `find src -name '*.java'` |
| 388 | javac_with_bootclasspath -implicit:none -sourcepath src -d classes-ex `find src-dex2oat-unresolved -name '*.java'` |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 389 | if [ ${USE_JACK} = "true" ]; then |
| 390 | jar cf classes.jill.jar -C classes . |
| 391 | jar cf classes-ex.jill.jar -C classes-ex . |
| 392 | |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 393 | ${JACK} --import classes-ex.jill.jar --output-dex . |
| 394 | zip ${TEST_NAME}-ex.jar classes.dex |
Nicolas Geoffray | 44fd0e5 | 2016-03-16 15:16:06 +0000 | [diff] [blame] | 395 | ${JACK} --import classes.jill.jar --output-dex . |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 396 | else |
| 397 | if [ ${NEED_DEX} = "true" ]; then |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 398 | make_dex classes-ex |
Igor Murashkin | 6c946b5 | 2017-06-16 14:27:47 -0700 | [diff] [blame] | 399 | mv classes-ex.dex classes.dex # rename it so it shows up as "classes.dex" in the zip file. |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 400 | zip ${TEST_NAME}-ex.jar classes.dex |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 401 | make_dex classes |
Sebastien Hertz | 4856ca7 | 2016-03-03 18:08:17 +0100 | [diff] [blame] | 402 | fi |
Alex Light | 6a439bc | 2015-10-26 17:52:36 -0700 | [diff] [blame] | 403 | fi |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 404 | else |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 405 | if [ ${USE_JACK} = "true" ]; then |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 406 | # Jack toolchain |
Igor Murashkin | 1c843e9 | 2017-06-19 14:33:06 -0700 | [diff] [blame] | 407 | if [[ "$HAS_SRC" == true || "$HAS_SRC_ART" == true ]]; then |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 408 | if [ "${HAS_SRC_MULTIDEX}" = "true" ]; then |
| 409 | # Compile src and src-multidex in the same .jack file. We will apply multidex partitioning |
| 410 | # when creating the output .dex file. |
Igor Murashkin | 1c843e9 | 2017-06-19 14:33:06 -0700 | [diff] [blame] | 411 | ${JACK} ${JACK_ARGS} --output-jack src.jack $(maybe_dir src) src-multidex $(maybe_dir src-art) |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 412 | jack_extra_args="${jack_extra_args} -D jack.dex.output.policy=minimal-multidex" |
| 413 | jack_extra_args="${jack_extra_args} -D jack.preprocessor=true" |
| 414 | jack_extra_args="${jack_extra_args} -D jack.preprocessor.file=multidex.jpp" |
| 415 | else |
Igor Murashkin | 1c843e9 | 2017-06-19 14:33:06 -0700 | [diff] [blame] | 416 | ${JACK} ${JACK_ARGS} --output-jack src.jack $(maybe_dir src) $(maybe_dir src-art) |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 417 | fi |
| 418 | jack_extra_args="${jack_extra_args} --import src.jack" |
| 419 | fi |
jeffhao | 5d1ac92 | 2011-09-29 17:41:15 -0700 | [diff] [blame] | 420 | |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 421 | if [ "${HAS_SRC2}" = "true" ]; then |
| 422 | ${JACK} ${JACK_ARGS} --output-jack src2.jack src2 |
| 423 | # In case of duplicate classes, we want to take into account the classes from src2. Therefore |
| 424 | # we apply the 'keep-first' policy and import src2.jack file *before* the src.jack file. |
| 425 | jack_extra_args="${jack_extra_args} -D jack.import.type.policy=keep-first" |
| 426 | jack_extra_args="--import src2.jack ${jack_extra_args}" |
| 427 | fi |
| 428 | |
| 429 | # Compile jack files into a DEX file. |
Igor Murashkin | 4014d84 | 2017-07-11 11:58:44 -0700 | [diff] [blame] | 430 | if [ "${HAS_SRC}" = "true" ] || [ "${HAS_SRC2}" = "true" ] || [ "${HAS_SRC_ART}" = "true" ]; then |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 431 | ${JACK} ${JACK_ARGS} ${jack_extra_args} --output-dex . |
| 432 | fi |
| 433 | else |
| 434 | # Legacy toolchain with javac+dx |
| 435 | if [ "${HAS_SRC}" = "true" ]; then |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 436 | mkdir -p classes |
| 437 | javac_with_bootclasspath -implicit:none -classpath src-multidex -d classes `find src -name '*.java'` |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 438 | fi |
| 439 | |
Igor Murashkin | 1c843e9 | 2017-06-19 14:33:06 -0700 | [diff] [blame] | 440 | if [ "${HAS_SRC_ART}" = "true" ]; then |
| 441 | mkdir -p classes |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 442 | javac_with_bootclasspath -implicit:none -classpath src-multidex -d classes `find src-art -name '*.java'` |
Igor Murashkin | 1c843e9 | 2017-06-19 14:33:06 -0700 | [diff] [blame] | 443 | fi |
| 444 | |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 445 | if [ "${HAS_SRC_MULTIDEX}" = "true" ]; then |
| 446 | mkdir classes2 |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 447 | javac_with_bootclasspath -implicit:none -classpath src -d classes2 `find src-multidex -name '*.java'` |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 448 | if [ ${NEED_DEX} = "true" ]; then |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 449 | make_dex classes2 |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 450 | fi |
| 451 | fi |
| 452 | |
| 453 | if [ "${HAS_SRC2}" = "true" ]; then |
| 454 | mkdir -p classes |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 455 | javac_with_bootclasspath -classpath classes -d classes `find src2 -name '*.java'` |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 456 | fi |
| 457 | |
Igor Murashkin | 1c843e9 | 2017-06-19 14:33:06 -0700 | [diff] [blame] | 458 | if [[ "${HAS_SRC}" == "true" || "${HAS_SRC2}" == "true" || "${HAS_SRC_ART}" == "true" ]]; then |
Igor Murashkin | 4014d84 | 2017-07-11 11:58:44 -0700 | [diff] [blame] | 459 | if [ ${NEED_DEX} = "true" ]; then |
Igor Murashkin | 2a33775 | 2017-06-16 14:34:40 +0000 | [diff] [blame] | 460 | make_dex classes |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 461 | fi |
Sebastien Hertz | 19ac027 | 2015-02-24 17:39:50 +0100 | [diff] [blame] | 462 | fi |
Elliott Hughes | c717eef | 2012-06-15 16:01:26 -0700 | [diff] [blame] | 463 | fi |
Nicolas Geoffray | 44fd0e5 | 2016-03-16 15:16:06 +0000 | [diff] [blame] | 464 | fi |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 465 | |
Igor Murashkin | 4014d84 | 2017-07-11 11:58:44 -0700 | [diff] [blame] | 466 | if [[ "${HAS_JASMIN}" == true ]]; then |
| 467 | # Compile Jasmin classes as if they were part of the classes.dex file. |
| 468 | make_jasmin jasmin_classes $(find 'jasmin' -name '*.j') |
| 469 | if [[ "${NEED_DEX}" == "true" ]]; then |
| 470 | # Disable desugar because it won't handle intentional linkage errors. |
| 471 | USE_DESUGAR=false make_dex jasmin_classes |
| 472 | make_dexmerge classes.dex jasmin_classes.dex |
| 473 | else |
| 474 | # Move jasmin classes into classes directory so that they are picked up with -cp classes. |
| 475 | mkdir -p classes |
| 476 | mv jasmin_classes/* classes |
| 477 | fi |
| 478 | fi |
| 479 | |
Andreas Gampe | 2b93681 | 2017-02-07 16:03:57 -0800 | [diff] [blame] | 480 | if [ "${HAS_SMALI}" = "true" -a ${NEED_DEX} = "true" ]; then |
Nicolas Geoffray | 44fd0e5 | 2016-03-16 15:16:06 +0000 | [diff] [blame] | 481 | # Compile Smali classes |
Ben Gruver | 14fc9db | 2017-04-28 15:30:49 -0700 | [diff] [blame] | 482 | ${SMALI} -JXmx512m assemble ${SMALI_ARGS} --output smali_classes.dex `find smali -name '*.smali'` |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 483 | |
Igor Murashkin | 4014d84 | 2017-07-11 11:58:44 -0700 | [diff] [blame] | 484 | # Merge smali files into classes.dex, this takes priority over any jasmin files. |
| 485 | make_dexmerge classes.dex smali_classes.dex |
| 486 | fi |
| 487 | |
| 488 | # Compile Jasmin classes in jasmin-multidex as if they were part of the classes2.jar |
| 489 | if [[ "$HAS_JASMIN_MULTIDEX" == true ]]; then |
| 490 | make_jasmin jasmin_classes2 $(find 'jasmin-multidex' -name '*.j') |
| 491 | |
| 492 | if [[ "${NEED_DEX}" == "true" ]]; then |
| 493 | # Disable desugar because it won't handle intentional linkage errors. |
| 494 | USE_DESUGAR=false make_dex jasmin_classes2 |
| 495 | |
| 496 | # Merge jasmin_classes2.dex into classes2.dex |
| 497 | make_dexmerge classes2.dex jasmin_classes2.dex |
Nicolas Geoffray | 44fd0e5 | 2016-03-16 15:16:06 +0000 | [diff] [blame] | 498 | else |
Igor Murashkin | 4014d84 | 2017-07-11 11:58:44 -0700 | [diff] [blame] | 499 | # Move jasmin classes into classes2 directory so that they are picked up with -cp classes2. |
| 500 | mkdir -p classes2 |
| 501 | mv jasmin_classes2/* classes2 |
Nicolas Geoffray | 44fd0e5 | 2016-03-16 15:16:06 +0000 | [diff] [blame] | 502 | fi |
| 503 | fi |
| 504 | |
Andreas Gampe | 2b93681 | 2017-02-07 16:03:57 -0800 | [diff] [blame] | 505 | if [ "${HAS_SMALI_MULTIDEX}" = "true" -a ${NEED_DEX} = "true" ]; then |
Nicolas Geoffray | 44fd0e5 | 2016-03-16 15:16:06 +0000 | [diff] [blame] | 506 | # Compile Smali classes |
Ben Gruver | 14fc9db | 2017-04-28 15:30:49 -0700 | [diff] [blame] | 507 | ${SMALI} -JXmx512m assemble ${SMALI_ARGS} --output smali_classes2.dex `find smali-multidex -name '*.smali'` |
Nicolas Geoffray | 44fd0e5 | 2016-03-16 15:16:06 +0000 | [diff] [blame] | 508 | |
Igor Murashkin | 4014d84 | 2017-07-11 11:58:44 -0700 | [diff] [blame] | 509 | # Merge smali_classes2.dex into classes2.dex |
| 510 | make_dexmerge classes2.dex smali_classes2.dex |
Nicolas Geoffray | 44fd0e5 | 2016-03-16 15:16:06 +0000 | [diff] [blame] | 511 | fi |
| 512 | |
| 513 | |
| 514 | if [ ${HAS_SRC_EX} = "true" ]; then |
| 515 | if [ ${USE_JACK} = "true" ]; then |
| 516 | # Rename previous "classes.dex" so it is not overwritten. |
| 517 | mv classes.dex classes-1.dex |
| 518 | #TODO find another way to append src.jack to the jack classpath |
| 519 | ${JACK}:src.jack ${JACK_ARGS} --output-dex . src-ex |
| 520 | zip $TEST_NAME-ex.jar classes.dex |
| 521 | # Restore previous "classes.dex" so it can be zipped. |
| 522 | mv classes-1.dex classes.dex |
| 523 | else |
Igor Murashkin | 829da13 | 2017-06-21 14:47:12 -0700 | [diff] [blame] | 524 | # Build src-ex into classes-ex. |
| 525 | # Includes 'src', 'src-art' source when compiling classes-ex, but exclude their .class files. |
| 526 | if [[ "${HAS_SRC}" == "true" ]]; then |
| 527 | mkdir -p classes-tmp-for-ex |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 528 | javac_with_bootclasspath -d classes-tmp-for-ex `find src -name '*.java'` |
Igor Murashkin | 829da13 | 2017-06-21 14:47:12 -0700 | [diff] [blame] | 529 | src_tmp_for_ex="-cp classes-tmp-for-ex" |
| 530 | fi |
| 531 | if [[ "${HAS_SRC_ART}" == "true" ]]; then |
| 532 | mkdir -p classes-tmp-for-ex |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 533 | javac_with_bootclasspath -d classes-tmp-for-ex `find src-art -name '*.java'` |
Igor Murashkin | 829da13 | 2017-06-21 14:47:12 -0700 | [diff] [blame] | 534 | src_tmp_for_ex="-cp classes-tmp-for-ex" |
| 535 | fi |
Nicolas Geoffray | 44fd0e5 | 2016-03-16 15:16:06 +0000 | [diff] [blame] | 536 | mkdir classes-ex |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 537 | javac_with_bootclasspath -d classes-ex $src_tmp_for_ex `find src-ex -name '*.java'` |
Nicolas Geoffray | 404b5bf | 2016-03-16 12:39:17 +0000 | [diff] [blame] | 538 | fi |
Nicolas Geoffray | 44fd0e5 | 2016-03-16 15:16:06 +0000 | [diff] [blame] | 539 | fi |
Nicolas Geoffray | a3d05a4 | 2014-10-20 17:41:32 +0100 | [diff] [blame] | 540 | |
Igor Murashkin | 2de6e08 | 2018-02-28 15:25:23 -0800 | [diff] [blame] | 541 | if [[ -d classes-ex ]] && [ ${NEED_DEX} = "true" ]; then |
| 542 | make_dex classes-ex |
| 543 | |
| 544 | # quick shuffle so that the stored name is "classes.dex" |
| 545 | mv classes.dex classes-1.dex |
| 546 | mv classes-ex.dex classes.dex |
| 547 | zip $TEST_NAME-ex.jar classes.dex |
| 548 | mv classes.dex classes-ex.dex |
| 549 | mv classes-1.dex classes.dex |
| 550 | fi |
| 551 | |
David Brazdil | 11b67b2 | 2018-01-18 16:41:40 +0000 | [diff] [blame] | 552 | # Apply hiddenapi on the dex files if the test has API list file(s). |
| 553 | if [ ${NEED_DEX} = "true" -a ${USE_HIDDENAPI} = "true" -a ${HAS_HIDDENAPI_SPEC} = "true" ]; then |
| 554 | if $(has_multidex); then |
| 555 | make_hiddenapi classes.dex classes2.dex |
| 556 | else |
| 557 | make_hiddenapi classes.dex |
| 558 | fi |
| 559 | fi |
| 560 | |
Igor Murashkin | 4014d84 | 2017-07-11 11:58:44 -0700 | [diff] [blame] | 561 | # Create a single dex jar with two dex files for multidex. |
Vladimir Marko | c5798bf | 2016-12-09 10:20:54 +0000 | [diff] [blame] | 562 | if [ ${NEED_DEX} = "true" ]; then |
David Brazdil | 11b67b2 | 2018-01-18 16:41:40 +0000 | [diff] [blame] | 563 | if $(has_multidex); then |
Vladimir Marko | c5798bf | 2016-12-09 10:20:54 +0000 | [diff] [blame] | 564 | zip $TEST_NAME.jar classes.dex classes2.dex |
| 565 | else |
| 566 | zip $TEST_NAME.jar classes.dex |
| 567 | fi |
Nicolas Geoffray | 1250861 | 2014-11-05 12:34:24 +0000 | [diff] [blame] | 568 | fi |