1 # Copyright 2011 The Android Open Source Project 2 3 LOCAL_PATH:= $(call my-dir) 4 include $(CLEAR_VARS) 5 6 LOCAL_MODULE_TAGS := optional 7 8 LOCAL_SRC_FILES := $(call all-java-files-under, src) 9 LOCAL_JAVA_LIBRARIES := telephony-common 10 11 LOCAL_PACKAGE_NAME := CellBroadcastReceiver 12 LOCAL_CERTIFICATE := platform 13 14 include $(BUILD_PACKAGE) 15 16 # This finds and builds the test apk as well, so a single make does both. 17 include $(call all-makefiles-under,$(LOCAL_PATH)) 18