1LOCAL_PATH:= $(call my-dir)
2
3# ================================================================
4# Unit tests for libstagefright_timedtext
5# ================================================================
6
7# ================================================================
8# A test for TimedTextSRTSource
9# ================================================================
10include $(CLEAR_VARS)
11
12LOCAL_MODULE := TimedTextSRTSource_test
13
14LOCAL_MODULE_TAGS := eng tests
15
16LOCAL_SRC_FILES := TimedTextSRTSource_test.cpp
17
18LOCAL_C_INCLUDES := \
19    $(TOP)/external/expat/lib \
20    $(TOP)/frameworks/av/media/libstagefright/timedtext
21
22LOCAL_SHARED_LIBRARIES := \
23    libbinder \
24    libexpat \
25    libstagefright \
26    libstagefright_foundation \
27    libutils
28
29include $(BUILD_NATIVE_TEST)
30