1# Copyright (C) 2011 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14#
15
16LOCAL_PATH := $(call my-dir)
17
18#####################
19# Build module libfilterfw_jni
20include $(CLEAR_VARS)
21
22LOCAL_MODULE_TAGS := optional
23
24LOCAL_MODULE    = libfilterfw_jni
25
26LOCAL_SRC_FILES = jni_init.cpp \
27                  jni_gl_environment.cpp \
28                  jni_gl_frame.cpp \
29                  jni_native_buffer.cpp \
30                  jni_native_frame.cpp \
31                  jni_native_program.cpp \
32                  jni_shader_program.cpp \
33                  jni_util.cpp \
34                  jni_vertex_frame.cpp
35
36# Need FilterFW lib
37include $(LOCAL_PATH)/../native/libfilterfw.mk
38
39# Also need the JNI headers.
40LOCAL_C_INCLUDES += \
41	$(JNI_H_INCLUDE) \
42	$(LOCAL_PATH)/..
43
44# Don't prelink this library.  For more efficient code, you may want
45# to add this library to the prelink map and set this to true. However,
46# it's difficult to do this for applications that are not supplied as
47# part of a system image.
48LOCAL_PRELINK_MODULE := false
49
50include $(BUILD_STATIC_LIBRARY)
51
52