Android.mk revision 3b25fdc4a33b53cfcf67315c2d42ad699b8cefe2
1#
2# Copyright (C) 2011 NXP Software
3# Copyright (C) 2011 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9#      http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17
18LOCAL_PATH:= $(call my-dir)
19
20#
21# libvideoeditor_mcs
22#
23
24include $(CLEAR_VARS)
25
26LOCAL_MODULE:= libvideoeditor_mcs
27
28LOCAL_SRC_FILES:=          \
29      M4MCS_API.c \
30      M4MCS_AudioEffects.c \
31      M4MCS_Codecs.c \
32      M4MCS_MediaAndCodecSubscription.c \
33      M4MCS_VideoPreProcessing.c
34
35LOCAL_MODULE_TAGS := optional
36
37LOCAL_SHARED_LIBRARIES := libcutils libutils
38
39LOCAL_STATIC_LIBRARIES := \
40    libvideoeditor_osal
41
42LOCAL_C_INCLUDES += \
43    $(TOP)/frameworks/media/libvideoeditor/osal/inc \
44    $(TOP)/frameworks/media/libvideoeditor/vss/mcs/inc \
45    $(TOP)/frameworks/media/libvideoeditor/vss/common/inc \
46    $(TOP)/frameworks/media/libvideoeditor/vss/stagefrightshells/inc
47
48ifeq ($(TARGET_SIMULATOR),true)
49else
50    LOCAL_SHARED_LIBRARIES += libdl
51endif
52
53# All of the shared libraries we link against.
54LOCAL_LDLIBS := \
55    -lpthread -ldl
56
57LOCAL_CFLAGS += -Wno-multichar \
58    -DM4MCS_WITH_FAST_OPEN
59
60include $(BUILD_STATIC_LIBRARY)
61
62