Android.mk revision baa44b89ec159fd65230cbb8ebab62d63a513b0b
1# Build the unit tests.
2LOCAL_PATH:= $(call my-dir)
3include $(CLEAR_VARS)
4
5LOCAL_MODULE := SurfaceTexture_test
6
7LOCAL_MODULE_TAGS := tests
8
9LOCAL_SRC_FILES := \
10    Surface_test.cpp \
11    SurfaceTextureClient_test.cpp \
12    SurfaceTexture_test.cpp \
13
14LOCAL_SHARED_LIBRARIES := \
15	libEGL \
16	libGLESv2 \
17	libandroid \
18	libbinder \
19	libcutils \
20	libgui \
21	libstlport \
22	libui \
23	libutils \
24
25LOCAL_STATIC_LIBRARIES := \
26	libgtest \
27	libgtest_main \
28
29LOCAL_C_INCLUDES := \
30    bionic \
31    bionic/libstdc++/include \
32    external/gtest/include \
33    external/stlport/stlport \
34
35include $(BUILD_EXECUTABLE)
36
37# Include subdirectory makefiles
38# ============================================================
39
40# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
41# team really wants is to build the stuff defined by this makefile.
42ifeq (,$(ONE_SHOT_MAKEFILE))
43include $(call first-makefiles-under,$(LOCAL_PATH))
44endif
45