Home | History | Annotate | Download | only in WAPPushManager
      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 LOCAL_PRIVATE_PLATFORM_APIS := true
     13 
     14 LOCAL_JAVA_LIBRARIES += telephony-common
     15 LOCAL_STATIC_JAVA_LIBRARIES += android-common
     16 
     17 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
     18 
     19 include $(BUILD_PACKAGE)
     20 
     21 # This finds and builds the test apk as well, so a single make does both.
     22 include $(call all-makefiles-under,$(LOCAL_PATH))
     23