OSDN Git Service

Merge "192x192 icon added to mipmap-xxxhdpi." into gb-ub-photos-carlsbad
[android-x86/packages-apps-Camera2.git] / Android.mk
1 LOCAL_PATH:= $(call my-dir)
2
3 include $(CLEAR_VARS)
4
5 LOCAL_MODULE_TAGS := optional
6
7 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v13
8 LOCAL_STATIC_JAVA_LIBRARIES += xmp_toolkit
9
10
11 LOCAL_SRC_FILES := $(call all-java-files-under, src)
12 LOCAL_SRC_FILES += $(call all-java-files-under, src_pd)
13 LOCAL_SRC_FILES += $(call all-java-files-under, src_pd_gcam)
14
15 LOCAL_RESOURCE_DIR += $(LOCAL_PATH)/res
16
17
18 include $(LOCAL_PATH)/version.mk
19 LOCAL_AAPT_FLAGS := \
20         --auto-add-overlay \
21         --version-name "$(version_name_package)" \
22         --version-code $(version_code_package) \
23
24 LOCAL_PACKAGE_NAME := Camera2
25
26 LOCAL_SDK_VERSION := current
27
28 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
29
30 # If this is an unbundled build (to install seprately) then include
31 # the libraries in the APK, otherwise just put them in /system/lib and
32 # leave them out of the APK
33 ifneq (,$(TARGET_BUILD_APPS))
34   LOCAL_JNI_SHARED_LIBRARIES := libjni_mosaic libjni_tinyplanet
35 else
36   LOCAL_REQUIRED_MODULES := libjni_mosaic libjni_tinyplanet
37 endif
38
39 include $(BUILD_PACKAGE)
40
41 include $(call all-makefiles-under, $(LOCAL_PATH))