summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/http/Android.mk
blob: a6b481fbc87082e57e53443cc6e474b9132ca815 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
LOCAL_PATH:= $(call my-dir)

ifneq ($(TARGET_BUILD_PDK), true)

include $(CLEAR_VARS)

LOCAL_SRC_FILES:=       \
        HTTPHelper.cpp          \

LOCAL_C_INCLUDES:= \
	$(TOP)/frameworks/av/media/libstagefright \
	$(TOP)/frameworks/native/include/media/openmax \
	$(TOP)/frameworks/base/core/jni \

LOCAL_SHARED_LIBRARIES := \
	libstagefright liblog libutils libbinder libstagefright_foundation \
        libandroid_runtime \
        libmedia

LOCAL_MODULE:= libstagefright_http_support

LOCAL_CFLAGS += -Wno-multichar

include $(BUILD_SHARED_LIBRARY)

endif