summaryrefslogtreecommitdiffstats
path: root/tests/Android.bp
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2018-08-19 05:08:29 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2018-08-19 05:08:29 +0200
commita2a94cf00c4ff9267098d77b7fccaf703c3497d3 (patch)
tree0de6a79ad32aace6b7ceff14f85936bc3ce8c383 /tests/Android.bp
parentSnap for 4957512 from a89dd7aeacf1e6587813c6c9f5bc6964d78393bc to qt-release (diff)
parentMerge "updater: Add TransferList class." am: 102d14d6d1 am: 5cf27834f3 (diff)
downloadandroid_bootable_recovery-a2a94cf00c4ff9267098d77b7fccaf703c3497d3.tar
android_bootable_recovery-a2a94cf00c4ff9267098d77b7fccaf703c3497d3.tar.gz
android_bootable_recovery-a2a94cf00c4ff9267098d77b7fccaf703c3497d3.tar.bz2
android_bootable_recovery-a2a94cf00c4ff9267098d77b7fccaf703c3497d3.tar.lz
android_bootable_recovery-a2a94cf00c4ff9267098d77b7fccaf703c3497d3.tar.xz
android_bootable_recovery-a2a94cf00c4ff9267098d77b7fccaf703c3497d3.tar.zst
android_bootable_recovery-a2a94cf00c4ff9267098d77b7fccaf703c3497d3.zip
Diffstat (limited to 'tests/Android.bp')
-rw-r--r--tests/Android.bp28
1 files changed, 9 insertions, 19 deletions
diff --git a/tests/Android.bp b/tests/Android.bp
index d305e2560..dc20f3326 100644
--- a/tests/Android.bp
+++ b/tests/Android.bp
@@ -108,15 +108,7 @@ cc_test {
test_suites: ["device-tests"],
srcs: [
- "unit/asn1_decoder_test.cpp",
- "unit/applypatch_test.cpp",
- "unit/commands_test.cpp",
- "unit/dirutil_test.cpp",
- "unit/locale_test.cpp",
- "unit/rangeset_test.cpp",
- "unit/screen_ui_test.cpp",
- "unit/sysutil_test.cpp",
- "unit/zip_test.cpp",
+ "unit/*.cpp",
],
static_libs: libapplypatch_static_libs + [
@@ -161,16 +153,7 @@ cc_test {
test_suites: ["device-tests"],
srcs: [
- "component/bootloader_message_test.cpp",
- "component/edify_test.cpp",
- "component/imgdiff_test.cpp",
- "component/install_test.cpp",
- "component/resources_test.cpp",
- "component/sideload_test.cpp",
- "component/uncrypt_test.cpp",
- "component/updater_test.cpp",
- "component/update_verifier_test.cpp",
- "component/verifier_test.cpp",
+ "component/*.cpp",
],
static_libs: libapplypatch_static_libs + librecovery_static_libs + [
@@ -215,4 +198,11 @@ cc_test_host {
],
data: ["testdata/*"],
+
+ target: {
+ darwin: {
+ // libimgdiff is not available on the Mac.
+ enabled: false,
+ },
+ },
}