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