am f82e7411: Make a liblog.so for the host too.

* commit 'f82e74116314c4def32013495337c038f6c6ee6c':
  Make a liblog.so for the host too.
This commit is contained in:
Elliott Hughes 2012-05-03 16:36:13 -07:00 committed by Android Git Automerger
commit 34d85c5e6c
1 changed files with 6 additions and 1 deletions

View File

@ -41,7 +41,7 @@ endif
liblog_host_sources := $(liblog_sources) fake_log_device.c
# Static library for host
# Shared and static library for host
# ========================================================
LOCAL_MODULE := liblog
LOCAL_SRC_FILES := $(liblog_host_sources)
@ -49,6 +49,11 @@ LOCAL_LDLIBS := -lpthread
LOCAL_CFLAGS := -DFAKE_LOG_DEVICE=1
include $(BUILD_HOST_STATIC_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := liblog
LOCAL_WHOLE_STATIC_LIBRARIES := liblog
include $(BUILD_HOST_SHARED_LIBRARY)
# Static library for host, 64-bit
# ========================================================