Android.mk revision bf3270869c4734e6b628d0a0dbd46015f622ea4a
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# libvideofilters
22#
23
24include $(CLEAR_VARS)
25
26LOCAL_MODULE:= libvideoeditor_videofilters
27
28LOCAL_SRC_FILES:=          \
29      M4VIFI_BGR565toYUV420.c \
30      M4VIFI_ResizeRGB888toRGB888.c \
31      M4VIFI_Clip.c \
32      M4VIFI_ResizeYUVtoBGR565.c \
33      M4VIFI_RGB888toYUV420.c \
34      M4VFL_transition.c
35
36LOCAL_MODULE_TAGS := optional
37
38LOCAL_SHARED_LIBRARIES := libcutils libutils
39
40LOCAL_STATIC_LIBRARIES := \
41    libvideoeditor_osal
42
43LOCAL_C_INCLUDES += \
44    $(TOP)/frameworks/media/libvideoeditor/osal/inc \
45    $(TOP)/frameworks/media/libvideoeditor/vss/common/inc
46
47ifeq ($(TARGET_SIMULATOR),true)
48else
49    LOCAL_SHARED_LIBRARIES += libdl
50endif
51
52# All of the shared libraries we link against.
53LOCAL_LDLIBS := \
54    -lpthread -ldl
55
56LOCAL_CFLAGS += -Wno-multichar
57
58# Don't prelink this library.  For more efficient code, you may want
59# to add this library to the prelink map and set this to true.
60LOCAL_PRELINK_MODULE := false
61
62include $(BUILD_STATIC_LIBRARY)
63
64