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 13 LOCAL_JAVA_LIBRARIES += telephony-common 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)) 22