noda | 7640caa | 2010-08-20 08:10:00 +0900 | [diff] [blame] | 1 | # Copyright 2007-2008 The Android Open Source Project |
| 2 | |
| 3 | |
| 4 | LOCAL_PATH:= $(call my-dir) |
| 5 | include $(CLEAR_VARS) |
| 6 | |
| 7 | LOCAL_MODULE_TAGS := optional |
| 8 | |
| 9 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 10 | |
| 11 | LOCAL_PACKAGE_NAME := WAPPushManager |
| 12 | |
Wink Saville | a639b31 | 2012-07-10 12:37:54 -0700 | [diff] [blame] | 13 | LOCAL_JAVA_LIBRARIES += telephony-common |
noda | 7640caa | 2010-08-20 08:10:00 +0900 | [diff] [blame] | 14 | LOCAL_STATIC_JAVA_LIBRARIES += android-common |
| 15 | |
| 16 | LOCAL_PROGUARD_FLAGS := -include $(LOCAL_PATH)/proguard.flags |
| 17 | |
| 18 | include $(BUILD_PACKAGE) |
| 19 | |
| 20 | # This finds and builds the test apk as well, so a single make does both. |
| 21 | include $(call all-makefiles-under,$(LOCAL_PATH)) |