OSDN Git Service

Import translations. DO NOT MERGE
[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
10 LOCAL_SRC_FILES := $(call all-java-files-under, src)
11 LOCAL_SRC_FILES += $(call all-java-files-under, src_pd)
12 LOCAL_SRC_FILES += $(call all-java-files-under, ../Camera/src)
13
14 LOCAL_RESOURCE_DIR += $(LOCAL_PATH)/res packages/apps/Camera/res
15 LOCAL_AAPT_FLAGS := --auto-add-overlay --extra-packages com.android.camera
16
17 LOCAL_PACKAGE_NAME := Gallery2
18
19 LOCAL_OVERRIDES_PACKAGES := Gallery Gallery3D GalleryNew3D
20
21 LOCAL_SDK_VERSION := current
22
23 LOCAL_JNI_SHARED_LIBRARIES := libjni_mosaic libjni_eglfence
24
25 LOCAL_REQUIRED_MODULES := libjni_mosaic libjni_eglfence
26
27 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
28
29 include $(BUILD_PACKAGE)
30
31 include $(call all-makefiles-under, jni)
32
33 ifeq ($(strip $(LOCAL_PACKAGE_OVERRIDES)),)
34 # Use the following include to make gallery test apk.
35 include $(call all-makefiles-under, $(LOCAL_PATH))
36
37 # Use the following include to make camera test apk.
38 include $(call all-makefiles-under, ../Camera)
39
40 endif