blob: 52f767e00e0e820a9d8e9a08a0dcae6fab7d818e [file] [log] [blame]
Andreas Huber8f0e4aa2009-09-11 09:54:52 -07001ifeq ($(BUILD_WITH_FULL_STAGEFRIGHT),true)
2
Andreas Huber20111aa2009-07-14 16:56:47 -07003LOCAL_PATH:= $(call my-dir)
4
5include $(CLEAR_VARS)
6
Andreas Huber2d7d46f2009-08-18 11:27:32 -07007LOCAL_SRC_FILES:= \
Andreas Huber20111aa2009-07-14 16:56:47 -07008 stagefright.cpp
9
10LOCAL_SHARED_LIBRARIES := \
Doug Kwana17e2b92009-12-22 13:30:25 -080011 libstagefright libmedia libutils libbinder
Andreas Huber20111aa2009-07-14 16:56:47 -070012
13LOCAL_C_INCLUDES:= \
Andreas Huber1b84df12009-09-15 12:49:11 -070014 $(JNI_H_INCLUDE) \
Andreas Huber20111aa2009-07-14 16:56:47 -070015 frameworks/base/media/libstagefright \
Andreas Huber693d2712009-08-14 14:37:10 -070016 $(TOP)/external/opencore/extern_libs_v2/khronos/openmax/include
Andreas Huber20111aa2009-07-14 16:56:47 -070017
18LOCAL_CFLAGS += -Wno-multichar
19
Andreas Huber5a486952010-02-23 16:55:02 -080020LOCAL_MODULE_TAGS := debug
21
Andreas Huber20111aa2009-07-14 16:56:47 -070022LOCAL_MODULE:= stagefright
23
24include $(BUILD_EXECUTABLE)
25
26################################################################################
27
28include $(CLEAR_VARS)
29
30LOCAL_SRC_FILES:= \
Andreas Hubere5adbee2009-09-02 14:01:43 -070031 SineSource.cpp \
Andreas Huber20111aa2009-07-14 16:56:47 -070032 record.cpp
33
34LOCAL_SHARED_LIBRARIES := \
Doug Kwana17e2b92009-12-22 13:30:25 -080035 libstagefright liblog libutils libbinder
Andreas Huber20111aa2009-07-14 16:56:47 -070036
37LOCAL_C_INCLUDES:= \
Andreas Huber1b84df12009-09-15 12:49:11 -070038 $(JNI_H_INCLUDE) \
Andreas Huber20111aa2009-07-14 16:56:47 -070039 frameworks/base/media/libstagefright \
Andreas Huber693d2712009-08-14 14:37:10 -070040 $(TOP)/external/opencore/extern_libs_v2/khronos/openmax/include
Andreas Huber20111aa2009-07-14 16:56:47 -070041
42LOCAL_CFLAGS += -Wno-multichar
43
Andreas Huber5a486952010-02-23 16:55:02 -080044LOCAL_MODULE_TAGS := debug
45
Andreas Huber20111aa2009-07-14 16:56:47 -070046LOCAL_MODULE:= record
47
48include $(BUILD_EXECUTABLE)
Andreas Huber8f0e4aa2009-09-11 09:54:52 -070049
Andreas Huberc297fcc2009-12-01 15:26:54 -080050################################################################################
51
52include $(CLEAR_VARS)
53
54LOCAL_SRC_FILES:= \
55 SineSource.cpp \
56 audioloop.cpp
57
58LOCAL_SHARED_LIBRARIES := \
Doug Kwana17e2b92009-12-22 13:30:25 -080059 libstagefright liblog libutils libbinder
Andreas Huberc297fcc2009-12-01 15:26:54 -080060
61LOCAL_C_INCLUDES:= \
62 $(JNI_H_INCLUDE) \
63 frameworks/base/media/libstagefright \
64 $(TOP)/external/opencore/extern_libs_v2/khronos/openmax/include
65
66LOCAL_CFLAGS += -Wno-multichar
67
Andreas Huber5a486952010-02-23 16:55:02 -080068LOCAL_MODULE_TAGS := debug
69
Andreas Huberc297fcc2009-12-01 15:26:54 -080070LOCAL_MODULE:= audioloop
71
72include $(BUILD_EXECUTABLE)
73
Andreas Huber8f0e4aa2009-09-11 09:54:52 -070074endif