1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_MODULE_TAGS := optional 5 6LOCAL_SRC_FILES := \ 7 $(call all-java-files-under, src) 8 9LOCAL_PACKAGE_NAME := Nfc 10LOCAL_CERTIFICATE := platform 11 12LOCAL_STATIC_JAVA_LIBRARIES := NfcLogTags 13 14LOCAL_JNI_SHARED_LIBRARIES := libnfc_jni 15 16LOCAL_PROGUARD_ENABLED := disabled 17 18include $(BUILD_PACKAGE) 19 20 21##### 22# static lib for the log tags 23##### 24include $(CLEAR_VARS) 25 26LOCAL_MODULE_TAGS := optional 27 28LOCAL_SRC_FILES := src/com/android/nfc/EventLogTags.logtags 29 30LOCAL_MODULE:= NfcLogTags 31 32include $(BUILD_STATIC_JAVA_LIBRARY) 33 34 35include $(call all-makefiles-under,$(LOCAL_PATH)) 36