44b28d9e7b
executable but not specified. It is included via dependency of another shared object.
23 lines
380 B
Makefile
23 lines
380 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= CameraServiceTest.cpp
|
|
|
|
LOCAL_MODULE:= CameraServiceTest
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
frameworks/base/libs
|
|
|
|
LOCAL_CFLAGS :=
|
|
|
|
LOCAL_SHARED_LIBRARIES += \
|
|
libbinder \
|
|
libcutils \
|
|
libutils \
|
|
libui
|
|
|
|
include $(BUILD_EXECUTABLE)
|