-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathAndroid.mk
70 lines (56 loc) · 1.44 KB
/
Android.mk
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
LOCAL_PATH := $(call my-dir)
ifeq ($(TARGET_ARCH), arm)
SCR_FFMPEG := y
endif
SCR_SHARED_LIBRARIES := \
libcutils \
libEGL \
libmedia \
libutils \
libbinder \
libgui \
libui \
libGLESv2 \
libz \
ifneq ($(PLATFORM_SDK_VERSION), 15)
ifneq ($(PLATFORM_SDK_VERSION), 16)
ifneq ($(PLATFORM_SDK_VERSION), 17)
SCR_SHARED_LIBRARIES += libselinux
endif
endif
endif
SCR_SRC_FILES := \
mediarecorder_output.cpp \
capture.cpp \
audio_hal_installer.cpp \
main.cpp \
shell.cpp \
SCR_CFLAGS := -D__STDC_CONSTANT_MACROS -DSCR_SDK_VERSION=$(PLATFORM_SDK_VERSION)
ifdef SCR_FFMPEG
SCR_STATIC_LIBRARIES += \
libavdevice-1.2 \
libavformat-1.2 \
libavfilter-1.2 \
libavcodec-1.2 \
libswresample-1.2 \
libswscale-1.2 \
libavutil-1.2 \
SCR_C_INCLUDES += \
external/ffmpeg-1.2.android \
external/ffmpeg-1.2.android/android/full-userdebug \
SCR_CFLAGS += -DSCR_FFMPEG
SCR_LDLIBS += -lm
SCR_SRC_FILES += \
ffmpeg_output.cpp \
endif
include $(CLEAR_VARS)
LOCAL_MODULE := screenrec
LOCAL_CFLAGS := $(SCR_CFLAGS)
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(SCR_SRC_FILES)
LOCAL_SHARED_LIBRARIES := $(SCR_SHARED_LIBRARIES)
LOCAL_STATIC_LIBRARIES := $(SCR_STATIC_LIBRARIES)
LOCAL_C_INCLUDES := $(SCR_C_INCLUDES)
LOCAL_LDLIBS := $(LOCAL_CFLAGS)
include $(BUILD_EXECUTABLE)
include $(CLEAR_VARS)