* Add ability to select different personas to generate the path to be created. * Move hardcoded paths to read from init's set environment. * Add unit tests for all the utility functions that build strings to make sure they're correct. * Fill in persona with "0" all the time now. Will be plumbed through in later CL. Change-Id: I0a7f6e3640cb6b052f8823080886ee79e90b679f
43 lines
976 B
Makefile
43 lines
976 B
Makefile
# Build the unit tests for installd
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
|
|
# Build the unit tests.
|
|
test_src_files := \
|
|
installd_utils_test.cpp
|
|
|
|
shared_libraries := \
|
|
libutils \
|
|
libcutils \
|
|
libstlport
|
|
|
|
static_libraries := \
|
|
libinstalld \
|
|
libdiskusage \
|
|
libgtest \
|
|
libgtest_main
|
|
|
|
c_includes := \
|
|
frameworks/base/cmds/installd \
|
|
bionic \
|
|
bionic/libstdc++/include \
|
|
external/gtest/include \
|
|
external/stlport/stlport
|
|
|
|
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_SRC_FILES := $(file)) \
|
|
$(eval LOCAL_C_INCLUDES := $(c_includes)) \
|
|
$(eval LOCAL_MODULE := $(notdir $(file:%.cpp=%))) \
|
|
$(eval LOCAL_MODULE_TAGS := $(module_tags)) \
|
|
$(eval include $(BUILD_EXECUTABLE)) \
|
|
)
|
|
|
|
endif
|