Home | History | Annotate | Download | only in libstagefrighthw
      1 ifeq ($(TARGET_BOARD_PLATFORM),omap4)
      2 
      3 LOCAL_PATH := $(call my-dir)
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_SRC_FILES := \
      7     TIOMXPlugin.cpp
      8 
      9 LOCAL_C_INCLUDES:= \
     10         $(TOP)/frameworks/native/include/media/openmax \
     11         $(TOP)/frameworks/native/include/media/hardware
     12 
     13 LOCAL_SHARED_LIBRARIES :=       \
     14         libbinder               \
     15         libutils                \
     16         libcutils               \
     17         liblog                  \
     18         libui                   \
     19         libdl                   \
     20 
     21 LOCAL_MODULE := libstagefrighthw
     22 
     23 include $(BUILD_HEAPTRACKED_SHARED_LIBRARY)
     24 
     25 endif
     26