blob: cba4e7e836f870cdb002384ab7b5045765881e9f [file] [log] [blame]
Marius Renn65953da2012-03-27 10:44:45 -07001# 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 += \
Andreas Gampee5160e72014-11-10 17:49:02 -080041 $(JNI_H_INCLUDE) \
42 $(LOCAL_PATH)/..
Marius Renn65953da2012-03-27 10:44:45 -070043
Bernhard Rosenkränzer57f63722014-11-24 03:02:03 +010044LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code -Wno-unused-parameter
Andreas Gampee5160e72014-11-10 17:49:02 -080045
Marius Renn65953da2012-03-27 10:44:45 -070046include $(BUILD_STATIC_LIBRARY)