Merge "add Looper.cpp to build for linux host to use in CTS audio"

This commit is contained in:
Keun young Park 2012-03-26 15:30:38 -07:00 committed by Android (Google) Code Review
commit e377d7de18
1 changed files with 6 additions and 0 deletions

View File

@ -67,6 +67,9 @@ endif
# =====================================================
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= $(commonSources)
ifeq ($(HOST_OS), linux)
LOCAL_SRC_FILES += Looper.cpp
endif
LOCAL_MODULE:= libutils
LOCAL_STATIC_LIBRARIES := libz
LOCAL_C_INCLUDES := \
@ -80,6 +83,9 @@ include $(BUILD_HOST_STATIC_LIBRARY)
# =====================================================
include $(CLEAR_VARS)
LOCAL_SRC_FILES:= $(commonSources)
ifeq ($(HOST_OS), linux)
LOCAL_SRC_FILES += Looper.cpp
endif
LOCAL_MODULE:= lib64utils
LOCAL_STATIC_LIBRARIES := libz
LOCAL_C_INCLUDES := \