replicant-frameworks_native/camera/tests/CameraServiceTest/Android.mk
Doug Kwan 44b28d9e7b Add missing library in linker option. Currently the library is used by the
executable but not specified.  It is included via dependency of another shared
object.
2009-12-09 16:32:04 -08:00

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)