am e0e5da0d: am 96e59eb8: Merge "Support for multiple tests" into gingerbread
Merge commit 'e0e5da0d648f4167e2a12ea02f4794f81a057da7' * commit 'e0e5da0d648f4167e2a12ea02f4794f81a057da7': Support for multiple tests
This commit is contained in:
commit
6f19e9c1c2
@ -5,7 +5,7 @@ include $(CLEAR_VARS)
|
||||
test_src_files := \
|
||||
InputDispatcher_test.cpp
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
shared_libraries := \
|
||||
libcutils \
|
||||
libutils \
|
||||
libEGL \
|
||||
@ -16,21 +16,26 @@ LOCAL_SHARED_LIBRARIES := \
|
||||
libui \
|
||||
libstlport
|
||||
|
||||
LOCAL_STATIC_LIBRARIES := \
|
||||
static_libraries := \
|
||||
libgtest \
|
||||
libgtest_main
|
||||
|
||||
LOCAL_C_INCLUDES := \
|
||||
c_includes := \
|
||||
bionic \
|
||||
bionic/libstdc++/include \
|
||||
external/gtest/include \
|
||||
external/stlport/stlport
|
||||
|
||||
LOCAL_MODULE_TAGS := eng tests
|
||||
module_tags := eng tests
|
||||
|
||||
$(foreach file,$(test_src_files), \
|
||||
$(eval include $(CLEAR_VARS)) \
|
||||
$(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \
|
||||
$(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \
|
||||
$(eval LOCAL_C_INCLUDES := $(c_includes)) \
|
||||
$(eval LOCAL_SRC_FILES := $(file)) \
|
||||
$(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \
|
||||
$(eval LOCAL_MODULE_TAGS := $(module_tags)) \
|
||||
$(eval include $(BUILD_EXECUTABLE)) \
|
||||
)
|
||||
|
||||
|
@ -5,18 +5,18 @@ include $(CLEAR_VARS)
|
||||
test_src_files := \
|
||||
PollLoop_test.cpp
|
||||
|
||||
LOCAL_SHARED_LIBRARIES := \
|
||||
shared_libraries := \
|
||||
libz \
|
||||
liblog \
|
||||
libcutils \
|
||||
libutils \
|
||||
libstlport
|
||||
|
||||
LOCAL_STATIC_LIBRARIES := \
|
||||
static_libraries := \
|
||||
libgtest \
|
||||
libgtest_main
|
||||
|
||||
LOCAL_C_INCLUDES := \
|
||||
c_includes := \
|
||||
external/zlib \
|
||||
external/icu4c/common \
|
||||
bionic \
|
||||
@ -24,10 +24,15 @@ LOCAL_C_INCLUDES := \
|
||||
external/gtest/include \
|
||||
external/stlport/stlport
|
||||
|
||||
LOCAL_MODULE_TAGS := eng tests
|
||||
module_tags := eng tests
|
||||
|
||||
$(foreach file,$(test_src_files), \
|
||||
$(eval include $(CLEAR_VARS)) \
|
||||
$(eval LOCAL_SHARED_LIBRARIES := $(shared_libraries)) \
|
||||
$(eval LOCAL_STATIC_LIBRARIES := $(static_libraries)) \
|
||||
$(eval LOCAL_C_INCLUDES := $(c_includes)) \
|
||||
$(eval LOCAL_SRC_FILES := $(file)) \
|
||||
$(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \
|
||||
$(eval LOCAL_MODULE_TAGS := $(module_tags)) \
|
||||
$(eval include $(BUILD_EXECUTABLE)) \
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user