From 47330e21db24b2bce3e238a596904e17d178a78d Mon Sep 17 00:00:00 2001 From: Josh Gao Date: Wed, 12 Apr 2017 17:04:41 -0700 Subject: [PATCH] adb: statically link libbase into the tests. Make it easier to run the Windows tests with wine. Test: adb_test Test: wine adb_test.exe Change-Id: I243c3adf4f6519dd7a38666ab42b384858351e21 --- adb/Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adb/Android.mk b/adb/Android.mk index 94ccc08ee..d17b063f0 100644 --- a/adb/Android.mk +++ b/adb/Android.mk @@ -220,9 +220,9 @@ LOCAL_SRC_FILES_linux := $(LIBADB_TEST_linux_SRCS) LOCAL_SRC_FILES_darwin := $(LIBADB_TEST_darwin_SRCS) LOCAL_SRC_FILES_windows := $(LIBADB_TEST_windows_SRCS) LOCAL_SANITIZE := $(adb_host_sanitize) -LOCAL_SHARED_LIBRARIES := libbase LOCAL_STATIC_LIBRARIES := \ libadb \ + libbase \ libcrypto_utils \ libcrypto \ libcutils \