diff options
author | Dan Albert <danalbert@google.com> | 2015-04-17 04:37:40 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-17 04:37:41 +0000 |
commit | c4f8fa7b36a8ba397f1c0ad3c7fb5a5c09520272 (patch) | |
tree | 4c00ff35ce5ee8d0e4488782644e74961167bb6e /adb/Android.mk | |
parent | d393e71f397110ef182708596aaca870141c9978 (diff) | |
parent | f8d6b9b1ef9c19769dd4a450390f9bdec17f11b3 (diff) | |
download | system_core-c4f8fa7b36a8ba397f1c0ad3c7fb5a5c09520272.zip system_core-c4f8fa7b36a8ba397f1c0ad3c7fb5a5c09520272.tar.gz system_core-c4f8fa7b36a8ba397f1c0ad3c7fb5a5c09520272.tar.bz2 |
Merge "Link libraries needed for Darwin adb tests."
Diffstat (limited to 'adb/Android.mk')
-rw-r--r-- | adb/Android.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/adb/Android.mk b/adb/Android.mk index b3918cc..96612e6 100644 --- a/adb/Android.mk +++ b/adb/Android.mk @@ -108,6 +108,10 @@ ifeq ($(HOST_OS),linux) LOCAL_LDLIBS += -lrt -ldl -lpthread endif +ifeq ($(HOST_OS),darwin) + LOCAL_LDLIBS += -framework CoreFoundation -framework IOKit +endif + include $(BUILD_HOST_NATIVE_TEST) # adb host tool |