1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:=                 \
5        MatroskaExtractor.cpp
6
7LOCAL_C_INCLUDES:= \
8        $(TOP)/external/libvpx/libwebm \
9        $(TOP)/frameworks/native/include/media/openmax \
10
11LOCAL_CFLAGS += -Wno-multichar -Werror
12
13LOCAL_MODULE:= libstagefright_matroska
14
15include $(BUILD_STATIC_LIBRARY)
16