1# Copyright 2011 The Android Open Source Project
2
3LOCAL_PATH:= $(call my-dir)
4include $(CLEAR_VARS)
5
6LOCAL_MODULE_TAGS := optional
7
8LOCAL_SRC_FILES := $(call all-java-files-under, src)
9LOCAL_JAVA_LIBRARIES := telephony-common
10
11LOCAL_PACKAGE_NAME := CellBroadcastReceiver
12LOCAL_PRIVATE_PLATFORM_APIS := true
13LOCAL_CERTIFICATE := platform
14LOCAL_PRIVILEGED_MODULE := true
15LOCAL_USE_AAPT2 := true
16
17LOCAL_STATIC_ANDROID_LIBRARIES := \
18    android-support-v4 \
19    android-support-v13 \
20    android-support-v7-recyclerview \
21    android-support-v7-preference \
22    android-support-v7-appcompat \
23    android-support-v14-preference
24
25LOCAL_PROGUARD_FLAG_FILES := proguard.flags
26
27include frameworks/base/packages/SettingsLib/common.mk
28include $(BUILD_PACKAGE)
29
30# This finds and builds the test apk as well, so a single make does both.
31include $(call all-makefiles-under,$(LOCAL_PATH))
32