1# Copyright (C) 2015 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#
15LOCAL_PATH := $(call my-dir)
16
17include $(CLEAR_VARS)
18
19LOCAL_MODULE    := libctscamera2_jni
20LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
21LOCAL_LICENSE_CONDITIONS := notice
22
23LOCAL_MODULE_TAGS := optional
24
25LOCAL_SRC_FILES := \
26	native-camera-jni.cpp \
27	dng-validate-jni.cpp \
28	dynamic-depth-validate-jni.cpp
29
30# Flags needed by DNG SDK
31LOCAL_CFLAGS := -DUNIX_ENV=1 -DqDNGBigEndian=0 -DqDNGThreadSafe=1 -DqDNGUseLibJPEG=1 -DqDNGUseXMP=0 -DqDNGValidate=1 -DqDNGValidateTarget=1 -DqAndroid=1 -fexceptions -Wsign-compare -Wno-reorder -Wframe-larger-than=20000
32
33# Flags to avoid warnings from DNG SDK
34LOCAL_CFLAGS += -Wall -Werror -Wno-unused-parameter
35LOCAL_CFLAGS += -Wno-unused-value -Wno-unused-variable
36# Flags related to dynamic depth
37LOCAL_CFLAGS += -Wno-ignored-qualifiers -DSTATIC_LIBXML=1
38
39LOCAL_HEADER_LIBRARIES := jni_headers liblog_headers
40LOCAL_STATIC_LIBRARIES := libdng_sdk_validate libjpeg_static_ndk
41# Dynamic depth libraries
42LOCAL_STATIC_LIBRARIES += libdynamic_depth_ndk libimage_io_ndk libbase_ndk libxml2_ndk
43LOCAL_SHARED_LIBRARIES := libandroid \
44    libnativehelper_compat_libc++ \
45    liblog \
46    libcamera2ndk \
47    libmediandk \
48    libz \
49
50# NDK build, shared C++ runtime
51LOCAL_SDK_VERSION := current
52LOCAL_NDK_STL_VARIANT := c++_shared
53
54include $(BUILD_SHARED_LIBRARY)
55