diff options
author | Tao Bao <tbao@google.com> | 2016-10-11 05:36:04 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2016-10-11 05:36:04 +0200 |
commit | a7995d758170023df95c0608df18003cdab4f2d4 (patch) | |
tree | 09167517080321a786bee0f332f72461156002cc /tests/Android.mk | |
parent | Merge "Update the header path for ext4_utils." (diff) | |
parent | Refactor libupdater into a seperate module. (diff) | |
download | android_bootable_recovery-a7995d758170023df95c0608df18003cdab4f2d4.tar android_bootable_recovery-a7995d758170023df95c0608df18003cdab4f2d4.tar.gz android_bootable_recovery-a7995d758170023df95c0608df18003cdab4f2d4.tar.bz2 android_bootable_recovery-a7995d758170023df95c0608df18003cdab4f2d4.tar.lz android_bootable_recovery-a7995d758170023df95c0608df18003cdab4f2d4.tar.xz android_bootable_recovery-a7995d758170023df95c0608df18003cdab4f2d4.tar.zst android_bootable_recovery-a7995d758170023df95c0608df18003cdab4f2d4.zip |
Diffstat (limited to '')
-rw-r--r-- | tests/Android.mk | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/tests/Android.mk b/tests/Android.mk index 19cb80940..ef822d1d1 100644 --- a/tests/Android.mk +++ b/tests/Android.mk @@ -41,25 +41,41 @@ LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk LOCAL_MODULE := recovery_component_test LOCAL_C_INCLUDES := bootable/recovery LOCAL_SRC_FILES := \ + component/applypatch_test.cpp \ component/edify_test.cpp \ - component/verifier_test.cpp \ - component/applypatch_test.cpp + component/updater_test.cpp \ + component/verifier_test.cpp LOCAL_FORCE_STATIC_EXECUTABLE := true + +tune2fs_static_libraries := \ + libext2_com_err \ + libext2_blkid \ + libext2_quota \ + libext2_uuid_static \ + libext2_e2p \ + libext2fs + LOCAL_STATIC_LIBRARIES := \ libapplypatch \ libedify \ libotafault \ + libupdater \ libverifier \ - libcrypto_utils \ - libcrypto \ libminui \ libminzip \ + libmounts \ + liblog \ + libselinux \ + libext4_utils_static \ + libsparse_static \ + libcrypto_utils \ + libcrypto \ libcutils \ libbz \ libz \ - libc \ libbase \ - liblog + libtune2fs \ + $(tune2fs_static_libraries) testdata_out_path := $(TARGET_OUT_DATA_NATIVE_TESTS)/recovery testdata_files := $(call find-subdir-files, testdata/*) |