diff options
Diffstat (limited to 'tools/buildbot-build.sh')
| -rwxr-xr-x | tools/buildbot-build.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/buildbot-build.sh b/tools/buildbot-build.sh index 31bddd5213..10eb9360af 100755 --- a/tools/buildbot-build.sh +++ b/tools/buildbot-build.sh @@ -83,6 +83,10 @@ elif [[ $mode == "target" ]]; then make_command+=" debuggerd su" make_command+=" ${out_dir}/host/linux-x86/bin/adb libstdc++ " make_command+=" ${out_dir}/target/product/${TARGET_PRODUCT}/system/etc/public.libraries.txt" + if [[ -n "$ART_TEST_CHROOT" ]]; then + # These targets are needed for the chroot environment. + make_command+=" crash_dump event-log-tags" + fi mode_suffix="-target" fi |