blob: c61de0ab6eb2090ad2ca329a3dc179f7ed447c72 [file] [log] [blame]
jeffhao5d1ac922011-09-29 17:41:15 -07001#!/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.
18set -e
19
Igor Murashkin2de6e082018-02-28 15:25:23 -080020if [[ $# -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
24fi
25
Alex Light6a439bc2015-10-26 17:52:36 -070026# Set default values for directories.
27if [ -d smali ]; then
28 HAS_SMALI=true
29else
30 HAS_SMALI=false
31fi
32
Igor Murashkin4014d842017-07-11 11:58:44 -070033# .j files in jasmin get compiled into classes.jar
34if [ -d jasmin ]; then
35 HAS_JASMIN=true
36else
37 HAS_JASMIN=false
38fi
39
Alex Light6a439bc2015-10-26 17:52:36 -070040if [ -d src ]; then
41 HAS_SRC=true
42else
43 HAS_SRC=false
44fi
45
Igor Murashkin1c843e92017-06-19 14:33:06 -070046# .java files in src-art get compiled with libcore on the bootclasspath
47if [ -d src-art ]; then
48 HAS_SRC_ART=true
49else
50 HAS_SRC_ART=false
51fi
52
Alex Light6a439bc2015-10-26 17:52:36 -070053if [ -d src2 ]; then
54 HAS_SRC2=true
55else
56 HAS_SRC2=false
57fi
58
59if [ -d src-multidex ]; then
60 HAS_SRC_MULTIDEX=true
61else
62 HAS_SRC_MULTIDEX=false
63fi
64
Alex Lightfedd91d2016-01-07 14:49:16 -080065if [ -d smali-multidex ]; then
66 HAS_SMALI_MULTIDEX=true
67else
68 HAS_SMALI_MULTIDEX=false
69fi
70
Igor Murashkin4014d842017-07-11 11:58:44 -070071# .j files in jasmin-multidex get compiled into classes2.jar
72if [ -d jasmin-multidex ]; then
73 HAS_JASMIN_MULTIDEX=true
74else
75 HAS_JASMIN_MULTIDEX=false
76fi
77
Alex Light6a439bc2015-10-26 17:52:36 -070078if [ -d src-ex ]; then
79 HAS_SRC_EX=true
80else
81 HAS_SRC_EX=false
82fi
83
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +000084if [ -d src-dex2oat-unresolved ]; then
85 HAS_SRC_DEX2OAT_UNRESOLVED=true
86else
87 HAS_SRC_DEX2OAT_UNRESOLVED=false
88fi
89
David Brazdil11b67b22018-01-18 16:41:40 +000090if [ -f api-light-greylist.txt -o -f api-dark-greylist.txt -o -f api-blacklist.txt ]; then
91 HAS_HIDDENAPI_SPEC=true
92else
93 HAS_HIDDENAPI_SPEC=false
94fi
95
96# USE_HIDDENAPI=false run-test... will disable hiddenapi.
97if [ -z "${USE_HIDDENAPI}" ]; then
98 USE_HIDDENAPI=true
99fi
100
Igor Murashkine5181932017-06-15 16:03:50 -0700101# DESUGAR=false run-test... will disable desugar.
102if [[ "$DESUGAR" == false ]]; then
103 USE_DESUGAR=false
104fi
105
Igor Murashkin271a0f82017-02-14 21:14:17 +0000106# Allow overriding ZIP_COMPRESSION_METHOD with e.g. 'store'
107ZIP_COMPRESSION_METHOD="deflate"
108# Align every ZIP file made by calling $ZIPALIGN command?
109WITH_ZIP_ALIGN=false
110ZIP_ALIGN_BYTES="-1"
111
Igor Murashkin69196392017-06-16 15:25:32 -0700112DX_FLAGS="--min-sdk-version=24"
113DX_VM_FLAGS=""
Alex Light6a439bc2015-10-26 17:52:36 -0700114EXPERIMENTAL=""
115
Igor Murashkin2a337752017-06-16 14:34:40 +0000116BUILD_MODE="target"
117DEV_MODE="no"
118
Alex Lightea1e7702016-07-11 13:39:55 -0700119# The key for default arguments if no experimental things are enabled.
120DEFAULT_EXPERIMENT="no-experiment"
121
Alex Light6a439bc2015-10-26 17:52:36 -0700122# Setup experimental flag mappings in a bash associative array.
123declare -A JACK_EXPERIMENTAL_ARGS
Alex Lightdba61482016-12-21 08:20:29 -0800124JACK_EXPERIMENTAL_ARGS["agents"]="-D jack.java.source.version=1.8 -D jack.android.min-api-level=24"
Yohann Roussel4b495672016-03-21 16:26:02 +0100125JACK_EXPERIMENTAL_ARGS["default-methods"]="-D jack.java.source.version=1.8 -D jack.android.min-api-level=24"
126JACK_EXPERIMENTAL_ARGS["lambdas"]="-D jack.java.source.version=1.8 -D jack.android.min-api-level=24"
mikaelpeltier3233dcc2016-11-18 14:23:45 +0100127JACK_EXPERIMENTAL_ARGS["method-handles"]="-D jack.java.source.version=1.7 -D jack.android.min-api-level=o-b1"
Alex Lighte4893ee2017-02-09 15:28:53 -0800128JACK_EXPERIMENTAL_ARGS[${DEFAULT_EXPERIMENT}]="-D jack.java.source.version=1.8 -D jack.android.min-api-level=24"
David Brazdil4846d132015-01-15 19:07:08 +0000129
Alex Lightb55f1ac2016-04-12 15:50:55 -0700130declare -A SMALI_EXPERIMENTAL_ARGS
Ben Gruver14fc9db2017-04-28 15:30:49 -0700131SMALI_EXPERIMENTAL_ARGS["default-methods"]="--api 24"
132SMALI_EXPERIMENTAL_ARGS["method-handles"]="--api 26"
Orion Hodson928033d2018-02-07 05:30:54 +0000133SMALI_EXPERIMENTAL_ARGS["var-handles"]="--api 26"
Ben Gruver14fc9db2017-04-28 15:30:49 -0700134SMALI_EXPERIMENTAL_ARGS["agents"]="--api 26"
Alex Lightb55f1ac2016-04-12 15:50:55 -0700135
Alex Lightea1e7702016-07-11 13:39:55 -0700136declare -A JAVAC_EXPERIMENTAL_ARGS
137JAVAC_EXPERIMENTAL_ARGS["default-methods"]="-source 1.8 -target 1.8"
138JAVAC_EXPERIMENTAL_ARGS["lambdas"]="-source 1.8 -target 1.8"
Narayan Kamath9823e782016-08-03 12:46:58 +0100139JAVAC_EXPERIMENTAL_ARGS["method-handles"]="-source 1.8 -target 1.8"
Orion Hodson58143d22018-02-20 08:44:20 +0000140JAVAC_EXPERIMENTAL_ARGS["parameter-annotations"]="-source 1.8 -target 1.8"
Orion Hodson928033d2018-02-07 05:30:54 +0000141JAVAC_EXPERIMENTAL_ARGS["var-handles"]="-source 1.8 -target 1.8"
Alex Light4eec3c52017-04-14 13:17:26 -0700142JAVAC_EXPERIMENTAL_ARGS[${DEFAULT_EXPERIMENT}]="-source 1.8 -target 1.8"
Alex Lightdba61482016-12-21 08:20:29 -0800143JAVAC_EXPERIMENTAL_ARGS["agents"]="-source 1.8 -target 1.8"
Alex Lightea1e7702016-07-11 13:39:55 -0700144
Igor Murashkin69196392017-06-16 15:25:32 -0700145declare -A DX_EXPERIMENTAL_ARGS
146DX_EXPERIMENTAL_ARGS["method-handles"]="--min-sdk-version=26"
Orion Hodson58143d22018-02-20 08:44:20 +0000147DX_EXPERIMENTAL_ARGS["parameter-annotations"]="--min-sdk-version=25"
Alan Leung276d29b2018-04-05 11:37:40 -0700148DX_EXPERIMENTAL_ARGS["var-handles"]="--min-sdk-version=28"
Igor Murashkin69196392017-06-16 15:25:32 -0700149
David Brazdil4846d132015-01-15 19:07:08 +0000150while true; do
151 if [ "x$1" = "x--dx-option" ]; then
152 shift
Orion Hodsone1fb77f2017-02-27 13:57:18 +0000153 option="$1"
David Brazdil4846d132015-01-15 19:07:08 +0000154 DX_FLAGS="${DX_FLAGS} $option"
155 shift
Igor Murashkin69196392017-06-16 15:25:32 -0700156 elif [ "x$1" = "x--dx-vm-option" ]; then
157 shift
158 option="$1"
159 DX_VM_FLAGS="${DX_VM_FLAGS} $option"
160 shift
Alex Light6a439bc2015-10-26 17:52:36 -0700161 elif [ "x$1" = "x--no-src" ]; then
162 HAS_SRC=false
163 shift
164 elif [ "x$1" = "x--no-src2" ]; then
165 HAS_SRC2=false
166 shift
167 elif [ "x$1" = "x--no-src-multidex" ]; then
168 HAS_SRC_MULTIDEX=false
169 shift
Alex Lightfedd91d2016-01-07 14:49:16 -0800170 elif [ "x$1" = "x--no-smali-multidex" ]; then
171 HAS_SMALI_MULTIDEX=false
172 shift
Alex Light6a439bc2015-10-26 17:52:36 -0700173 elif [ "x$1" = "x--no-src-ex" ]; then
174 HAS_SRC_EX=false
175 shift
176 elif [ "x$1" = "x--no-smali" ]; then
177 HAS_SMALI=false
178 shift
179 elif [ "x$1" = "x--experimental" ]; then
180 shift
Alex Lightea1e7702016-07-11 13:39:55 -0700181 # We have a specific experimental configuration so don't use the default.
182 DEFAULT_EXPERIMENT=""
Alex Light6a439bc2015-10-26 17:52:36 -0700183 EXPERIMENTAL="${EXPERIMENTAL} $1"
184 shift
Igor Murashkin271a0f82017-02-14 21:14:17 +0000185 elif [ "x$1" = "x--zip-compression-method" ]; then
186 # Allow using different zip compression method, e.g. 'store'
187 shift
188 ZIP_COMPRESSION_METHOD="$1"
189 shift
190 elif [ "x$1" = "x--zip-align" ]; then
191 # Align ZIP entries to some # of bytes.
192 shift
193 WITH_ZIP_ALIGN=true
194 ZIP_ALIGN_BYTES="$1"
195 shift
Igor Murashkin2a337752017-06-16 14:34:40 +0000196 elif [ "x$1" = "x--host" ]; then
197 BUILD_MODE="host"
198 shift
199 elif [ "x$1" = "x--target" ]; then
200 BUILD_MODE="target"
201 shift
Igor Murashkin2de6e082018-02-28 15:25:23 -0800202 elif [ "x$1" = "x--jvm" ]; then
203 BUILD_MODE="jvm"
204 shift
Igor Murashkin2a337752017-06-16 14:34:40 +0000205 elif [ "x$1" = "x--dev" ]; then
206 DEV_MODE="yes"
207 shift
David Brazdil4846d132015-01-15 19:07:08 +0000208 elif expr "x$1" : "x--" >/dev/null 2>&1; then
209 echo "unknown $0 option: $1" 1>&2
210 exit 1
211 else
212 break
213 fi
214done
215
Igor Murashkin2de6e082018-02-28 15:25:23 -0800216if [[ $BUILD_MODE == jvm ]]; then
217 # Does not need desugar on jvm because it supports the latest functionality.
218 USE_DESUGAR=false
219 # Do not attempt to build src-art directories on jvm, it would fail without libcore.
220 HAS_SRC_ART=false
221fi
222
Alex Lightea1e7702016-07-11 13:39:55 -0700223# Be sure to get any default arguments if not doing any experiments.
224EXPERIMENTAL="${EXPERIMENTAL} ${DEFAULT_EXPERIMENT}"
225
Sebastien Hertz361ad552017-01-04 16:07:57 +0100226if [ "${JACK_SERVER}" = "false" ]; then
227 # Run in single-threaded mode for the continuous buildbot.
228 JACK_ARGS="${JACK_ARGS} -D sched.runner=single-threaded"
229else
230 # Run with 4 threads to reduce memory footprint and thread contention.
231 JACK_ARGS="${JACK_ARGS} -D sched.runner=multi-threaded"
232 JACK_ARGS="${JACK_ARGS} -D sched.runner.thread.kind=fixed"
233 JACK_ARGS="${JACK_ARGS} -D sched.runner.thread.fixed.count=4"
234fi
235
Alex Light6a439bc2015-10-26 17:52:36 -0700236# Add args from the experimental mappings.
237for experiment in ${EXPERIMENTAL}; do
238 JACK_ARGS="${JACK_ARGS} ${JACK_EXPERIMENTAL_ARGS[${experiment}]}"
Alex Lightb55f1ac2016-04-12 15:50:55 -0700239 SMALI_ARGS="${SMALI_ARGS} ${SMALI_EXPERIMENTAL_ARGS[${experiment}]}"
Alex Lightea1e7702016-07-11 13:39:55 -0700240 JAVAC_ARGS="${JAVAC_ARGS} ${JAVAC_EXPERIMENTAL_ARGS[${experiment}]}"
Igor Murashkin69196392017-06-16 15:25:32 -0700241 DX_FLAGS="${DX_FLAGS} ${DX_EXPERIMENTAL_ARGS[${experiment}]}"
Alex Light6a439bc2015-10-26 17:52:36 -0700242done
243
Igor Murashkin271a0f82017-02-14 21:14:17 +0000244#########################################
245
246# Catch all commands to 'ZIP' and prepend extra flags.
247# Optionally, zipalign results to some alignment.
248function zip() {
249 local zip_target="$1"
250 local entry_src="$2"
251 shift 2
252
253 command zip --compression-method "$ZIP_COMPRESSION_METHOD" "$zip_target" "$entry_src" "$@"
254
255 if "$WITH_ZIP_ALIGN"; then
256 # zipalign does not operate in-place, so write results to a temp file.
257 local tmp_file="$(mktemp)"
258 "$ZIPALIGN" -f "$ZIP_ALIGN_BYTES" "$zip_target" "$tmp_file"
259 # replace original zip target with our temp file.
260 mv "$tmp_file" "$zip_target"
261 fi
262}
263
Igor Murashkin4014d842017-07-11 11:58:44 -0700264function make_jasmin() {
265 local out_directory="$1"
266 shift
267 local jasmin_sources=("$@")
268
269 mkdir -p "$out_directory"
270
271 if [[ $DEV_MODE == yes ]]; then
272 echo ${JASMIN} -d "$out_directory" "${jasmin_sources[@]}"
273 ${JASMIN} -d "$out_directory" "${jasmin_sources[@]}"
274 else
275 ${JASMIN} -d "$out_directory" "${jasmin_sources[@]}" >/dev/null
276 fi
277}
278
Igor Murashkin2a337752017-06-16 14:34:40 +0000279function desugar() {
Igor Murashkin2de6e082018-02-28 15:25:23 -0800280 local desugar_args="--mode=$BUILD_MODE"
Igor Murashkin2a337752017-06-16 14:34:40 +0000281
282 if [[ $DEV_MODE == yes ]]; then
283 desugar_args="$desugar_args --show-commands"
284 fi
285
Igor Murashkine5181932017-06-15 16:03:50 -0700286 "$DESUGAR" --core-only $desugar_args "$@"
Igor Murashkin2a337752017-06-16 14:34:40 +0000287}
288
Igor Murashkin2de6e082018-02-28 15:25:23 -0800289# Like regular javac but may include libcore on the bootclasspath.
Igor Murashkin1c843e92017-06-19 14:33:06 -0700290function javac_with_bootclasspath {
Igor Murashkin2de6e082018-02-28 15:25:23 -0800291 local helper_args="--mode=$BUILD_MODE"
Igor Murashkin1c843e92017-06-19 14:33:06 -0700292
293 if [[ $DEV_MODE == yes ]]; then
Igor Murashkin2de6e082018-02-28 15:25:23 -0800294 helper_args="$helper_args --show-commands"
Igor Murashkin1c843e92017-06-19 14:33:06 -0700295 fi
296
Igor Murashkin2de6e082018-02-28 15:25:23 -0800297 # build with libcore for host and target, or openjdk for jvm
298 "$ANDROID_BUILD_TOP/art/tools/javac-helper.sh" --core-only $helper_args ${JAVAC_ARGS} "$@"
Igor Murashkin1c843e92017-06-19 14:33:06 -0700299}
300
Igor Murashkin2a337752017-06-16 14:34:40 +0000301# Make a "dex" file given a directory of classes in $1.
302# Also calls desugar on the classes first to convert lambdas.
303function make_dex() {
304 local name="$1"
305
306 local dx_input
307 if [[ "$USE_DESUGAR" == "true" ]]; then
308 # Make a jar first so desugar doesn't need every .class file individually.
309 jar cf "$name.before-desugar.jar" -C "$name" .
310
311 dx_input="${name}.desugar.jar"
312
313 # Make desugared JAR.
314 desugar --input "$name.before-desugar.jar" --output "$dx_input"
315 else
316 dx_input="${name}"
317 fi
318
Alan Leung0afa07a2017-10-03 16:56:30 -0700319 local dexer="${DX}"
Alan Leungcf2de162018-03-30 20:18:20 +0000320 if [[ "${USE_D8}" != "false" ]]; then
Alan Leunga4ba9b52017-11-16 00:19:18 -0800321 dexer="${ANDROID_HOST_OUT}/bin/d8-compat-dx"
Alan Leung0afa07a2017-10-03 16:56:30 -0700322 fi
323
Igor Murashkin2a337752017-06-16 14:34:40 +0000324 # Make dex file from desugared JAR.
Alan Leung0afa07a2017-10-03 16:56:30 -0700325 ${dexer} -JXmx256m ${DX_VM_FLAGS} --debug --dex --dump-to=${name}.lst --output=${name}.dex --dump-width=1000 ${DX_FLAGS} "${dx_input}"
Igor Murashkin2a337752017-06-16 14:34:40 +0000326}
327
Igor Murashkin4014d842017-07-11 11:58:44 -0700328# Merge all the dex files in $1..$N into $1. Skip non-existing files, but at least 1 file must exist.
329function make_dexmerge() {
330 # Dex file that acts as the destination.
331 local dst_file="$1"
332
333 # Dex files that act as the source.
334 local dex_files_to_merge=()
335
336 # Skip any non-existing files.
337 while [[ $# -gt 0 ]]; do
338 if [[ -e "$1" ]]; then
339 dex_files_to_merge+=("$1")
340 fi
341 shift
342 done
343
Alan Leungd5cbc562018-03-15 14:02:46 -0700344 # Skip merge if we are not merging anything. IE: input = output.
345 if [[ "${#dex_files_to_merge[@]}" -eq "1" ]]; then
346 local single_input=${dex_files_to_merge[0]}
347 if [[ "$dst_file" != "$single_input" ]]; then
348 mv "$single_input" "$dst_file";
349 return
350 fi
351 fi
352
353 # We assume the dexer did all the API level checks and just merge away.
354 mkdir d8_merge_out
355 ${DXMERGER} --min-api 1000 --output ./d8_merge_out "${dex_files_to_merge[@]}"
356
357 if [[ -e "./d8_merge_out/classes2.dex" ]]; then
358 echo "Cannot merge all dex files into a single dex"
359 exit 1
360 fi
361
362 mv ./d8_merge_out/classes.dex "$dst_file";
363 rmdir d8_merge_out
Igor Murashkin4014d842017-07-11 11:58:44 -0700364}
365
David Brazdil11b67b22018-01-18 16:41:40 +0000366function make_hiddenapi() {
367 local args=()
368 while [[ $# -gt 0 ]]; do
369 args+=("--dex=$1")
370 shift
371 done
372 if [ -f api-light-greylist.txt ]; then
373 args+=("--light-greylist=api-light-greylist.txt")
374 fi
375 if [ -f api-dark-greylist.txt ]; then
376 args+=("--dark-greylist=api-dark-greylist.txt")
377 fi
378 if [ -f api-blacklist.txt ]; then
379 args+=("--blacklist=api-blacklist.txt")
380 fi
381 ${HIDDENAPI} "${args[@]}"
382}
383
Igor Murashkin1c843e92017-06-19 14:33:06 -0700384# Print the directory name only if it exists.
385function maybe_dir() {
386 local dirname="$1"
387 if [[ -d "$dirname" ]]; then
388 echo "$dirname"
389 fi
390}
391
Stephen Kyle40d35182014-10-03 13:47:56 +0100392if [ -e classes.dex ]; then
393 zip $TEST_NAME.jar classes.dex
394 exit 0
395fi
396
David Brazdil11b67b22018-01-18 16:41:40 +0000397# Helper function for a common test. Evaluate with $(has_mutlidex).
398function has_multidex() {
399 echo [ ${HAS_SRC_MULTIDEX} = "true" \
400 -o ${HAS_JASMIN_MULTIDEX} = "true" \
401 -o ${HAS_SMALI_MULTIDEX} = "true" ]
402}
403
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000404if [ ${HAS_SRC_DEX2OAT_UNRESOLVED} = "true" ]; then
Igor Murashkin2de6e082018-02-28 15:25:23 -0800405 mkdir -p classes
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000406 mkdir classes-ex
Igor Murashkin2de6e082018-02-28 15:25:23 -0800407 javac_with_bootclasspath -implicit:none -sourcepath src-dex2oat-unresolved -d classes `find src -name '*.java'`
408 javac_with_bootclasspath -implicit:none -sourcepath src -d classes-ex `find src-dex2oat-unresolved -name '*.java'`
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000409 if [ ${USE_JACK} = "true" ]; then
410 jar cf classes.jill.jar -C classes .
411 jar cf classes-ex.jill.jar -C classes-ex .
412
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000413 ${JACK} --import classes-ex.jill.jar --output-dex .
414 zip ${TEST_NAME}-ex.jar classes.dex
Nicolas Geoffray44fd0e52016-03-16 15:16:06 +0000415 ${JACK} --import classes.jill.jar --output-dex .
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000416 else
417 if [ ${NEED_DEX} = "true" ]; then
Igor Murashkin2a337752017-06-16 14:34:40 +0000418 make_dex classes-ex
Igor Murashkin6c946b52017-06-16 14:27:47 -0700419 mv classes-ex.dex classes.dex # rename it so it shows up as "classes.dex" in the zip file.
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000420 zip ${TEST_NAME}-ex.jar classes.dex
Igor Murashkin2a337752017-06-16 14:34:40 +0000421 make_dex classes
Sebastien Hertz4856ca72016-03-03 18:08:17 +0100422 fi
Alex Light6a439bc2015-10-26 17:52:36 -0700423 fi
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100424else
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100425 if [ ${USE_JACK} = "true" ]; then
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000426 # Jack toolchain
Igor Murashkin1c843e92017-06-19 14:33:06 -0700427 if [[ "$HAS_SRC" == true || "$HAS_SRC_ART" == true ]]; then
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000428 if [ "${HAS_SRC_MULTIDEX}" = "true" ]; then
429 # Compile src and src-multidex in the same .jack file. We will apply multidex partitioning
430 # when creating the output .dex file.
Igor Murashkin1c843e92017-06-19 14:33:06 -0700431 ${JACK} ${JACK_ARGS} --output-jack src.jack $(maybe_dir src) src-multidex $(maybe_dir src-art)
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000432 jack_extra_args="${jack_extra_args} -D jack.dex.output.policy=minimal-multidex"
433 jack_extra_args="${jack_extra_args} -D jack.preprocessor=true"
434 jack_extra_args="${jack_extra_args} -D jack.preprocessor.file=multidex.jpp"
435 else
Igor Murashkin1c843e92017-06-19 14:33:06 -0700436 ${JACK} ${JACK_ARGS} --output-jack src.jack $(maybe_dir src) $(maybe_dir src-art)
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000437 fi
438 jack_extra_args="${jack_extra_args} --import src.jack"
439 fi
jeffhao5d1ac922011-09-29 17:41:15 -0700440
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000441 if [ "${HAS_SRC2}" = "true" ]; then
442 ${JACK} ${JACK_ARGS} --output-jack src2.jack src2
443 # In case of duplicate classes, we want to take into account the classes from src2. Therefore
444 # we apply the 'keep-first' policy and import src2.jack file *before* the src.jack file.
445 jack_extra_args="${jack_extra_args} -D jack.import.type.policy=keep-first"
446 jack_extra_args="--import src2.jack ${jack_extra_args}"
447 fi
448
449 # Compile jack files into a DEX file.
Igor Murashkin4014d842017-07-11 11:58:44 -0700450 if [ "${HAS_SRC}" = "true" ] || [ "${HAS_SRC2}" = "true" ] || [ "${HAS_SRC_ART}" = "true" ]; then
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000451 ${JACK} ${JACK_ARGS} ${jack_extra_args} --output-dex .
452 fi
453 else
454 # Legacy toolchain with javac+dx
455 if [ "${HAS_SRC}" = "true" ]; then
Igor Murashkin2de6e082018-02-28 15:25:23 -0800456 mkdir -p classes
457 javac_with_bootclasspath -implicit:none -classpath src-multidex -d classes `find src -name '*.java'`
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000458 fi
459
Igor Murashkin1c843e92017-06-19 14:33:06 -0700460 if [ "${HAS_SRC_ART}" = "true" ]; then
461 mkdir -p classes
Igor Murashkin2de6e082018-02-28 15:25:23 -0800462 javac_with_bootclasspath -implicit:none -classpath src-multidex -d classes `find src-art -name '*.java'`
Igor Murashkin1c843e92017-06-19 14:33:06 -0700463 fi
464
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000465 if [ "${HAS_SRC_MULTIDEX}" = "true" ]; then
466 mkdir classes2
Igor Murashkin2de6e082018-02-28 15:25:23 -0800467 javac_with_bootclasspath -implicit:none -classpath src -d classes2 `find src-multidex -name '*.java'`
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000468 if [ ${NEED_DEX} = "true" ]; then
Igor Murashkin2a337752017-06-16 14:34:40 +0000469 make_dex classes2
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000470 fi
471 fi
472
473 if [ "${HAS_SRC2}" = "true" ]; then
474 mkdir -p classes
Igor Murashkin2de6e082018-02-28 15:25:23 -0800475 javac_with_bootclasspath -classpath classes -d classes `find src2 -name '*.java'`
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000476 fi
477
Igor Murashkin1c843e92017-06-19 14:33:06 -0700478 if [[ "${HAS_SRC}" == "true" || "${HAS_SRC2}" == "true" || "${HAS_SRC_ART}" == "true" ]]; then
Igor Murashkin4014d842017-07-11 11:58:44 -0700479 if [ ${NEED_DEX} = "true" ]; then
Igor Murashkin2a337752017-06-16 14:34:40 +0000480 make_dex classes
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000481 fi
Sebastien Hertz19ac0272015-02-24 17:39:50 +0100482 fi
Elliott Hughesc717eef2012-06-15 16:01:26 -0700483 fi
Nicolas Geoffray44fd0e52016-03-16 15:16:06 +0000484fi
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000485
Igor Murashkin4014d842017-07-11 11:58:44 -0700486if [[ "${HAS_JASMIN}" == true ]]; then
487 # Compile Jasmin classes as if they were part of the classes.dex file.
488 make_jasmin jasmin_classes $(find 'jasmin' -name '*.j')
489 if [[ "${NEED_DEX}" == "true" ]]; then
490 # Disable desugar because it won't handle intentional linkage errors.
491 USE_DESUGAR=false make_dex jasmin_classes
492 make_dexmerge classes.dex jasmin_classes.dex
493 else
494 # Move jasmin classes into classes directory so that they are picked up with -cp classes.
495 mkdir -p classes
496 mv jasmin_classes/* classes
497 fi
498fi
499
Andreas Gampe2b936812017-02-07 16:03:57 -0800500if [ "${HAS_SMALI}" = "true" -a ${NEED_DEX} = "true" ]; then
Nicolas Geoffray44fd0e52016-03-16 15:16:06 +0000501 # Compile Smali classes
Ben Gruver14fc9db2017-04-28 15:30:49 -0700502 ${SMALI} -JXmx512m assemble ${SMALI_ARGS} --output smali_classes.dex `find smali -name '*.smali'`
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000503
Igor Murashkin4014d842017-07-11 11:58:44 -0700504 # Merge smali files into classes.dex, this takes priority over any jasmin files.
505 make_dexmerge classes.dex smali_classes.dex
506fi
507
508# Compile Jasmin classes in jasmin-multidex as if they were part of the classes2.jar
509if [[ "$HAS_JASMIN_MULTIDEX" == true ]]; then
510 make_jasmin jasmin_classes2 $(find 'jasmin-multidex' -name '*.j')
511
512 if [[ "${NEED_DEX}" == "true" ]]; then
513 # Disable desugar because it won't handle intentional linkage errors.
514 USE_DESUGAR=false make_dex jasmin_classes2
515
516 # Merge jasmin_classes2.dex into classes2.dex
517 make_dexmerge classes2.dex jasmin_classes2.dex
Nicolas Geoffray44fd0e52016-03-16 15:16:06 +0000518 else
Igor Murashkin4014d842017-07-11 11:58:44 -0700519 # Move jasmin classes into classes2 directory so that they are picked up with -cp classes2.
520 mkdir -p classes2
521 mv jasmin_classes2/* classes2
Nicolas Geoffray44fd0e52016-03-16 15:16:06 +0000522 fi
523fi
524
Andreas Gampe2b936812017-02-07 16:03:57 -0800525if [ "${HAS_SMALI_MULTIDEX}" = "true" -a ${NEED_DEX} = "true" ]; then
Nicolas Geoffray44fd0e52016-03-16 15:16:06 +0000526 # Compile Smali classes
Ben Gruver14fc9db2017-04-28 15:30:49 -0700527 ${SMALI} -JXmx512m assemble ${SMALI_ARGS} --output smali_classes2.dex `find smali-multidex -name '*.smali'`
Nicolas Geoffray44fd0e52016-03-16 15:16:06 +0000528
Igor Murashkin4014d842017-07-11 11:58:44 -0700529 # Merge smali_classes2.dex into classes2.dex
530 make_dexmerge classes2.dex smali_classes2.dex
Nicolas Geoffray44fd0e52016-03-16 15:16:06 +0000531fi
532
533
534if [ ${HAS_SRC_EX} = "true" ]; then
535 if [ ${USE_JACK} = "true" ]; then
536 # Rename previous "classes.dex" so it is not overwritten.
537 mv classes.dex classes-1.dex
538 #TODO find another way to append src.jack to the jack classpath
539 ${JACK}:src.jack ${JACK_ARGS} --output-dex . src-ex
540 zip $TEST_NAME-ex.jar classes.dex
541 # Restore previous "classes.dex" so it can be zipped.
542 mv classes-1.dex classes.dex
543 else
Igor Murashkin829da132017-06-21 14:47:12 -0700544 # Build src-ex into classes-ex.
545 # Includes 'src', 'src-art' source when compiling classes-ex, but exclude their .class files.
546 if [[ "${HAS_SRC}" == "true" ]]; then
547 mkdir -p classes-tmp-for-ex
Igor Murashkin2de6e082018-02-28 15:25:23 -0800548 javac_with_bootclasspath -d classes-tmp-for-ex `find src -name '*.java'`
Igor Murashkin829da132017-06-21 14:47:12 -0700549 src_tmp_for_ex="-cp classes-tmp-for-ex"
550 fi
551 if [[ "${HAS_SRC_ART}" == "true" ]]; then
552 mkdir -p classes-tmp-for-ex
Igor Murashkin2de6e082018-02-28 15:25:23 -0800553 javac_with_bootclasspath -d classes-tmp-for-ex `find src-art -name '*.java'`
Igor Murashkin829da132017-06-21 14:47:12 -0700554 src_tmp_for_ex="-cp classes-tmp-for-ex"
555 fi
Nicolas Geoffray44fd0e52016-03-16 15:16:06 +0000556 mkdir classes-ex
Igor Murashkin2de6e082018-02-28 15:25:23 -0800557 javac_with_bootclasspath -d classes-ex $src_tmp_for_ex `find src-ex -name '*.java'`
Nicolas Geoffray404b5bf2016-03-16 12:39:17 +0000558 fi
Nicolas Geoffray44fd0e52016-03-16 15:16:06 +0000559fi
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +0100560
Igor Murashkin2de6e082018-02-28 15:25:23 -0800561if [[ -d classes-ex ]] && [ ${NEED_DEX} = "true" ]; then
562 make_dex classes-ex
563
David Brazdil904e75a2018-05-15 13:45:08 +0100564 # Apply hiddenapi on the dex files if the test has API list file(s).
565 if [ ${USE_HIDDENAPI} = "true" -a ${HAS_HIDDENAPI_SPEC} = "true" ]; then
566 make_hiddenapi classes-ex.dex
567 fi
568
Igor Murashkin2de6e082018-02-28 15:25:23 -0800569 # quick shuffle so that the stored name is "classes.dex"
570 mv classes.dex classes-1.dex
571 mv classes-ex.dex classes.dex
572 zip $TEST_NAME-ex.jar classes.dex
573 mv classes.dex classes-ex.dex
574 mv classes-1.dex classes.dex
575fi
576
David Brazdil11b67b22018-01-18 16:41:40 +0000577# Apply hiddenapi on the dex files if the test has API list file(s).
578if [ ${NEED_DEX} = "true" -a ${USE_HIDDENAPI} = "true" -a ${HAS_HIDDENAPI_SPEC} = "true" ]; then
579 if $(has_multidex); then
580 make_hiddenapi classes.dex classes2.dex
581 else
582 make_hiddenapi classes.dex
583 fi
584fi
585
Igor Murashkin4014d842017-07-11 11:58:44 -0700586# Create a single dex jar with two dex files for multidex.
Vladimir Markoc5798bf2016-12-09 10:20:54 +0000587if [ ${NEED_DEX} = "true" ]; then
David Brazdil11b67b22018-01-18 16:41:40 +0000588 if $(has_multidex); then
Vladimir Markoc5798bf2016-12-09 10:20:54 +0000589 zip $TEST_NAME.jar classes.dex classes2.dex
590 else
591 zip $TEST_NAME.jar classes.dex
592 fi
Nicolas Geoffray12508612014-11-05 12:34:24 +0000593fi