blob: 91526dd19ce0dba363638aeb1a7dc4c4bfa33877 [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
Anton Hanssonab6ec612018-02-23 12:57:51 +000012LOCAL_PRIVATE_PLATFORM_APIS := true
noda7640caa2010-08-20 08:10:00 +090013
Wink Savillea639b312012-07-10 12:37:54 -070014LOCAL_JAVA_LIBRARIES += telephony-common
noda7640caa2010-08-20 08:10:00 +090015LOCAL_STATIC_JAVA_LIBRARIES += android-common
16
Shinichiro Hamaji0a38ae92016-04-07 18:02:21 +090017LOCAL_PROGUARD_FLAG_FILES := proguard.flags
noda7640caa2010-08-20 08:10:00 +090018
19include $(BUILD_PACKAGE)
20
21# This finds and builds the test apk as well, so a single make does both.
22include $(call all-makefiles-under,$(LOCAL_PATH))