OSDN Git Service

Upscale images to fill screen for slideshow
[android-x86/packages-apps-Gallery2.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 += com.android.gallery3d.common2
9 LOCAL_STATIC_JAVA_LIBRARIES += mp4parser
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, ../Camera/src)
14
15 LOCAL_RESOURCE_DIR += $(LOCAL_PATH)/res 
16 LOCAL_RESOURCE_DIR += packages/apps/Camera/res
17
18 LOCAL_AAPT_FLAGS := --auto-add-overlay \
19     --extra-packages com.android.camera
20
21 LOCAL_PACKAGE_NAME := Gallery2
22
23 LOCAL_OVERRIDES_PACKAGES := Gallery Gallery3D GalleryNew3D
24
25 LOCAL_SDK_VERSION := 16
26
27 # If this is an unbundled build (to install seprately) then include
28 # the libraries in the APK, otherwise just put them in /system/lib and
29 # leave them out of the APK
30 ifneq (,$(TARGET_BUILD_APPS))
31   LOCAL_JNI_SHARED_LIBRARIES := libjni_mosaic libjni_eglfence libjni_filtershow_filters
32 else
33   LOCAL_REQUIRED_MODULES := libjni_mosaic libjni_eglfence libjni_filtershow_filters
34 endif
35
36 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
37
38 include $(BUILD_PACKAGE)
39
40 include $(call all-makefiles-under, jni)
41
42 ifeq ($(strip $(LOCAL_PACKAGE_OVERRIDES)),)
43 # Use the following include to make gallery test apk.
44 include $(call all-makefiles-under, $(LOCAL_PATH))
45
46 # Use the following include to make camera test apk.
47 include $(call all-makefiles-under, ../Camera)
48
49 endif