You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
3.1 KiB
111 lines
3.1 KiB
#!/bin/bash |
|
# |
|
# Copyright (C) 2017 The Android Open Source Project |
|
# |
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
# you may not use this file except in compliance with the License. |
|
# You may obtain a copy of the License at |
|
# |
|
# http://www.apache.org/licenses/LICENSE-2.0 |
|
# |
|
# Unless required by applicable law or agreed to in writing, software |
|
# distributed under the License is distributed on an "AS IS" BASIS, |
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
# See the License for the specific language governing permissions and |
|
# limitations under the License. |
|
|
|
# |
|
# This script lists the boot jars that an ART bootclasspath would need. |
|
# |
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
|
TOP="$DIR/../.." |
|
|
|
source "${TOP}/art/tools/build/var_cache.sh" >&/dev/null # import get_build_var |
|
|
|
selected_env_var= |
|
core_jars_only=n |
|
print_file_path=n |
|
mode=target |
|
while true; do |
|
case $1 in |
|
--help) |
|
echo "Usage: $0 [--core] [--path] [--host|--target] [--help]" |
|
exit 0 |
|
;; |
|
--core) |
|
core_jars_only=y |
|
;; |
|
--path) |
|
print_file_path=y |
|
;; |
|
--host) |
|
mode=host |
|
;; |
|
--target) |
|
mode=target |
|
;; |
|
*) |
|
break |
|
;; |
|
esac |
|
shift |
|
done |
|
|
|
if [[ $mode == target ]]; then |
|
if [[ $core_jars_only == y ]]; then |
|
selected_env_var=TARGET_TEST_CORE_JARS |
|
else |
|
selected_env_var=PRODUCT_BOOT_JARS |
|
fi |
|
intermediates_env_var=TARGET_OUT_COMMON_INTERMEDIATES |
|
elif [[ $mode == host ]]; then |
|
if [[ $core_jars_only == n ]]; then |
|
echo "Error: --host does not have non-core boot jars, --core required" >&2 |
|
exit 1 |
|
fi |
|
selected_env_var=HOST_TEST_CORE_JARS |
|
intermediates_env_var=HOST_OUT_COMMON_INTERMEDIATES |
|
fi |
|
|
|
if [[ $core_jars_only == y ]]; then |
|
# FIXME: The soong invocation we're using for getting the variables does not give us anything |
|
# defined in Android.common_path.mk, otherwise we would just use HOST-/TARGET_TEST_CORE_JARS. |
|
|
|
# Note: This must start with the CORE_IMG_JARS in Android.common_path.mk |
|
# because that's what we use for compiling the core.art image. |
|
# It may contain additional modules from TEST_CORE_JARS. |
|
core_jars_list="core-oj core-libart okhttp bouncycastle apache-xml conscrypt" |
|
core_jars_suffix= |
|
if [[ $mode == target ]]; then |
|
core_jars_suffix=-testdex |
|
elif [[ $mode == host ]]; then |
|
core_jars_suffix=-hostdex |
|
fi |
|
boot_jars_list="" |
|
boot_separator="" |
|
for boot_module in ${core_jars_list}; do |
|
boot_jars_list+="${boot_separator}${boot_module}${core_jars_suffix}" |
|
boot_separator=" " |
|
done |
|
else |
|
boot_jars_list=$(get_build_var "$selected_env_var") |
|
fi |
|
|
|
# Print only the list of boot jars. |
|
if [[ $print_file_path == n ]]; then |
|
echo $boot_jars_list |
|
exit 0 |
|
fi |
|
|
|
# Print the file path (relative to $TOP) to the classes.jar of each boot jar in the intermediates directory. |
|
intermediates_dir=$(get_build_var "$intermediates_env_var") |
|
|
|
# turn the file path into an absolute path if needed |
|
pushd "$TOP" >/dev/null |
|
intermediates_dir=$(readlink -m "$intermediates_dir") |
|
popd >/dev/null |
|
|
|
for jar in $boot_jars_list; do |
|
echo "$intermediates_dir/JAVA_LIBRARIES/${jar}_intermediates/classes.jar" |
|
done
|
|
|