Home | History | Annotate | Download | only in Nfc
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 ########################################
      4 # NXP Configuration
      5 ########################################
      6 include $(CLEAR_VARS)
      7 
      8 LOCAL_MODULE_TAGS := optional
      9 
     10 LOCAL_SRC_FILES := \
     11         $(call all-java-files-under, src)
     12 
     13 LOCAL_SRC_FILES += \
     14         $(call all-java-files-under, nxp)
     15 
     16 LOCAL_PACKAGE_NAME := Nfc
     17 LOCAL_CERTIFICATE := platform
     18 
     19 LOCAL_STATIC_JAVA_LIBRARIES := NfcLogTags
     20 
     21 LOCAL_JNI_SHARED_LIBRARIES := libnfc_jni
     22 
     23 LOCAL_PROGUARD_ENABLED := disabled
     24 
     25 include $(BUILD_PACKAGE)
     26 
     27 ########################################
     28 # NCI Configuration
     29 ########################################
     30 include $(CLEAR_VARS)
     31 
     32 LOCAL_MODULE_TAGS := optional
     33 
     34 LOCAL_SRC_FILES := \
     35         $(call all-java-files-under, src)
     36 
     37 LOCAL_SRC_FILES += \
     38         $(call all-java-files-under, nci)
     39 
     40 LOCAL_PACKAGE_NAME := NfcNci
     41 LOCAL_OVERRIDES_PACKAGES := Nfc
     42 LOCAL_CERTIFICATE := platform
     43 
     44 LOCAL_STATIC_JAVA_LIBRARIES := NfcLogTags
     45 
     46 LOCAL_JNI_SHARED_LIBRARIES := libnfc_nci_jni
     47 
     48 LOCAL_PROGUARD_ENABLED := disabled
     49 
     50 include $(BUILD_PACKAGE)
     51 
     52 #####
     53 # static lib for the log tags
     54 #####
     55 include $(CLEAR_VARS)
     56 
     57 LOCAL_MODULE_TAGS := optional
     58 
     59 LOCAL_SRC_FILES := src/com/android/nfc/EventLogTags.logtags
     60 
     61 LOCAL_MODULE:= NfcLogTags
     62 
     63 include $(BUILD_STATIC_JAVA_LIBRARY)
     64 
     65 
     66 include $(call all-makefiles-under,$(LOCAL_PATH))
     67