Remove libjdwp as an explicit target. am: bbc4dc3f98
Original change: https://android-review.googlesource.com/c/platform/art/+/1725488
Change-Id: Iddbfe01415d545a0d3dfb2c4a44b4ebd5513ed0d
diff --git a/tools/buildbot-build.sh b/tools/buildbot-build.sh
index 9779b5d..7798997 100755
--- a/tools/buildbot-build.sh
+++ b/tools/buildbot-build.sh
@@ -39,7 +39,7 @@
java_libraries_dir=${out_dir}/target/common/obj/JAVA_LIBRARIES
common_targets="vogar core-tests apache-harmony-jdwp-tests-hostdex jsr166-tests libartpalette-system mockito-target"
# These build targets have different names on device and host.
-specific_targets="libjavacoretests libjdwp libwrapagentproperties libwrapagentpropertiesd"
+specific_targets="libjavacoretests libwrapagentproperties libwrapagentpropertiesd"
build_host="no"
build_target="no"
installclean="no"
@@ -97,7 +97,7 @@
make_command="build/soong/soong_ui.bash --make-mode $j_arg $extra_args $showcommands $common_targets"
if [[ $build_host == "yes" ]]; then
make_command+=" build-art-host-tests"
- make_command+=" dx-tests junit-host"
+ make_command+=" dx-tests junit-host libjdwp-host"
for LIB in ${specific_targets} ; do
make_command+=" $LIB-host"
done