blob: 51a064905e53a8712195cad5b81e9fc9fc6a586d [file] [log] [blame]
Andreas Huber20111aa2009-07-14 16:56:47 -07001LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
Andreas Huber2d7d46f2009-08-18 11:27:32 -07005LOCAL_SRC_FILES:= \
6 JPEGSource.cpp \
Andreas Huber20111aa2009-07-14 16:56:47 -07007 stagefright.cpp
8
9LOCAL_SHARED_LIBRARIES := \
10 libstagefright
11
12LOCAL_C_INCLUDES:= \
13 frameworks/base/media/libstagefright \
Andreas Huber693d2712009-08-14 14:37:10 -070014 $(TOP)/external/opencore/extern_libs_v2/khronos/openmax/include
Andreas Huber20111aa2009-07-14 16:56:47 -070015
16LOCAL_CFLAGS += -Wno-multichar
17
18LOCAL_MODULE:= stagefright
19
20include $(BUILD_EXECUTABLE)
21
22################################################################################
23
24include $(CLEAR_VARS)
25
26LOCAL_SRC_FILES:= \
Andreas Hubere5adbee2009-09-02 14:01:43 -070027 SineSource.cpp \
Andreas Huber20111aa2009-07-14 16:56:47 -070028 record.cpp
29
30LOCAL_SHARED_LIBRARIES := \
31 libstagefright
32
33LOCAL_C_INCLUDES:= \
34 frameworks/base/media/libstagefright \
Andreas Huber693d2712009-08-14 14:37:10 -070035 $(TOP)/external/opencore/extern_libs_v2/khronos/openmax/include
Andreas Huber20111aa2009-07-14 16:56:47 -070036
37LOCAL_CFLAGS += -Wno-multichar
38
39LOCAL_MODULE:= record
40
41include $(BUILD_EXECUTABLE)