summaryrefslogtreecommitdiff
path: root/Android.mk
blob: 734f3376b8c478e2e957fc4a460d86053d24d662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := optional

LOCAL_SRC_FILES := $(call all-java-files-under, src) \

LOCAL_PACKAGE_NAME := VoiceDialer

LOCAL_REQUIRED_MODULES := libsrec_jni

include $(BUILD_PACKAGE)

# Install the srec data files if VoiceDialer.apk is installed to system image.
include external/srec/config/en.us/config.mk
$(LOCAL_INSTALLED_MODULE) : | $(SREC_CONFIG_TARGET_FILES)
# SREC_CONFIG_TARGET_FILES is from external/srec/config/en.us/config.mk and now can be cleaned up.
SREC_CONFIG_TARGET_FILES :=

# Use the following include to make our test apk.
include $(call all-makefiles-under,$(LOCAL_PATH))