Home | History | Annotate | Download | only in timedtext
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SRC_FILES:=                 \
      5         TextDescriptions.cpp      \
      6         TimedTextDriver.cpp       \
      7         TimedText3GPPSource.cpp \
      8         TimedTextSource.cpp       \
      9         TimedTextSRTSource.cpp    \
     10         TimedTextPlayer.cpp
     11 
     12 LOCAL_CFLAGS += -Wno-multichar -Werror
     13 
     14 LOCAL_C_INCLUDES:= \
     15         $(TOP)/frameworks/av/include/media/stagefright/timedtext \
     16         $(TOP)/frameworks/av/media/libstagefright
     17 
     18 LOCAL_MODULE:= libstagefright_timedtext
     19 
     20 include $(BUILD_STATIC_LIBRARY)
     21