blob: 35ec647f332d7668bab3b367e7b4152a0823d236 [file] [log] [blame]
noda7640caa2010-08-20 08:10:00 +09001# Copyright 2007-2008 The Android Open Source Project
2
3
4LOCAL_PATH:= $(call my-dir)
5include $(CLEAR_VARS)
6
7LOCAL_MODULE_TAGS := optional
8
9LOCAL_SRC_FILES := $(call all-java-files-under, src)
10
11LOCAL_PACKAGE_NAME := WAPPushManager
12
Wink Savillea639b312012-07-10 12:37:54 -070013LOCAL_JAVA_LIBRARIES += telephony-common
noda7640caa2010-08-20 08:10:00 +090014LOCAL_STATIC_JAVA_LIBRARIES += android-common
15
16LOCAL_PROGUARD_FLAGS := -include $(LOCAL_PATH)/proguard.flags
17
18include $(BUILD_PACKAGE)
19
20# This finds and builds the test apk as well, so a single make does both.
21include $(call all-makefiles-under,$(LOCAL_PATH))