diff options
Diffstat (limited to 'libutils/Android.mk')
-rw-r--r-- | libutils/Android.mk | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/libutils/Android.mk b/libutils/Android.mk index 720443e..039ac1b 100644 --- a/libutils/Android.mk +++ b/libutils/Android.mk @@ -138,6 +138,19 @@ include $(BUILD_SHARED_LIBRARY) # Include subdirectory makefiles # ============================================================ +include $(CLEAR_VARS) +LOCAL_MODULE := SharedBufferTest +LOCAL_STATIC_LIBRARIES := libutils libcutils +LOCAL_SHARED_LIBRARIES := liblog +LOCAL_SRC_FILES := SharedBufferTest.cpp +include $(BUILD_NATIVE_TEST) + +include $(CLEAR_VARS) +LOCAL_MODULE := SharedBufferTest +LOCAL_STATIC_LIBRARIES := libutils libcutils +LOCAL_SHARED_LIBRARIES := liblog +LOCAL_SRC_FILES := SharedBufferTest.cpp +include $(BUILD_HOST_NATIVE_TEST) # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework # team really wants is to build the stuff defined by this makefile. |