blob: 2777b1f087ccfd6c2aad9254e0c4933ca588f843 [file] [log] [blame]
Jake Hamby50a624a2011-05-17 18:49:03 -07001# 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)
Wink Savilleb605a692012-06-14 12:27:28 -07009LOCAL_JAVA_LIBRARIES := telephony-common
Jake Hamby50a624a2011-05-17 18:49:03 -070010
11LOCAL_PACKAGE_NAME := CellBroadcastReceiver
Jake Hamby00b87062012-02-13 18:34:01 -080012LOCAL_CERTIFICATE := platform
Fabrice Di Meglioeda37572014-04-09 18:28:08 -070013LOCAL_PRIVILEGED_MODULE := true
Jake Hamby50a624a2011-05-17 18:49:03 -070014
15include $(BUILD_PACKAGE)
16
17# This finds and builds the test apk as well, so a single make does both.
18include $(call all-makefiles-under,$(LOCAL_PATH))