Android.mk revision f3aa039a2278f789e3c9d5e18b83f9d937a05a5f
1ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.comLOCAL_PATH:= $(call my-dir)
2ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com
3ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.cominclude $(CLEAR_VARS)
4ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com
5ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.comLOCAL_SRC_FILES:=               \
6ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com        LiveDataSource.cpp      \
7ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com        LiveSession.cpp         \
8ec3ed6a5ebf6f2c406d7bcf94b6bc34fcaeb976eepoger@google.com        M3UParser.cpp           \
98a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com        PlaylistFetcher.cpp     \
108a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
118a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.comLOCAL_C_INCLUDES:= \
128a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com	$(TOP)/frameworks/av/media/libstagefright \
138a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com	$(TOP)/frameworks/native/include/media/openmax \
148a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com	$(TOP)/external/openssl/include
158a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
168a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.comLOCAL_SHARED_LIBRARIES := \
178a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com        libbinder \
188a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com        libcrypto \
198a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com        libcutils \
208a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com        libmedia \
218a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com        libstagefright \
228a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com        libstagefright_foundation \
238a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com        libutils \
248a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
258a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.comLOCAL_MODULE:= libstagefright_httplive
268a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
278a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.comifeq ($(TARGET_ARCH),arm)
288a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com    LOCAL_CFLAGS += -Wno-psabi
298a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.comendif
308a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com
318a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.cominclude $(BUILD_SHARED_LIBRARY)
328a1c16ff38322f0210116fa7293eb8817c7e477ereed@android.com