blob: 357feb1477dd8526fe190c9b5ab88b736ba31858 [file] [log] [blame]
Pannag Sanketi26a19712011-06-10 18:30:30 -07001# Build the unit tests.
2LOCAL_PATH:= $(call my-dir)
3include $(CLEAR_VARS)
4
5ifneq ($(TARGET_SIMULATOR),true)
6
Pannag Sanketif48987d2011-06-30 15:30:03 -07007LOCAL_MODULE := SurfaceMediaSource_test
Pannag Sanketi26a19712011-06-10 18:30:30 -07008
9LOCAL_MODULE_TAGS := tests
10
11LOCAL_SRC_FILES := \
Pannag Sanketif48987d2011-06-30 15:30:03 -070012 SurfaceMediaSource_test.cpp \
Pannag Sanketi26a19712011-06-10 18:30:30 -070013 DummyRecorder.cpp \
14
15LOCAL_SHARED_LIBRARIES := \
16 libEGL \
17 libGLESv2 \
18 libandroid \
19 libbinder \
20 libcutils \
21 libgui \
Pannag Sanketi557b7092011-08-18 21:53:02 -070022 libmedia \
Pannag Sanketi26a19712011-06-10 18:30:30 -070023 libstagefright \
24 libstagefright_omx \
25 libstagefright_foundation \
Pannag Sanketi557b7092011-08-18 21:53:02 -070026 libstlport \
27 libui \
28 libutils \
Pannag Sanketi26a19712011-06-10 18:30:30 -070029
30LOCAL_STATIC_LIBRARIES := \
31 libgtest \
32 libgtest_main \
33
34LOCAL_C_INCLUDES := \
35 bionic \
36 bionic/libstdc++/include \
37 external/gtest/include \
38 external/stlport/stlport \
39 frameworks/base/media/libstagefright \
40 frameworks/base/media/libstagefright/include \
41 $(TOP)/frameworks/base/include/media/stagefright/openmax \
42
43include $(BUILD_EXECUTABLE)
44
45endif
46
47# Include subdirectory makefiles
48# ============================================================
49
50# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
51# team really wants is to build the stuff defined by this makefile.
52ifeq (,$(ONE_SHOT_MAKEFILE))
53include $(call first-makefiles-under,$(LOCAL_PATH))
54endif