Home | History | Annotate | Download | only in lint_checks
      1 # Copyright 2011 The Android Open Source Project
      2 #
      3 LOCAL_PATH := $(call my-dir)
      4 include $(CLEAR_VARS)
      5 
      6 # Only compile source java files in this lib.
      7 LOCAL_SRC_FILES := $(call all-java-files-under, src)
      8 LOCAL_JAVA_RESOURCE_DIRS := src
      9 
     10 LOCAL_JAR_MANIFEST := etc/manifest.txt
     11 
     12 # If the dependency list is changed, etc/manifest.txt
     13 LOCAL_JAVA_LIBRARIES := \
     14         common \
     15 	lint_api
     16 
     17 LOCAL_MODULE := lint_checks
     18 LOCAL_MODULE_TAGS := optional
     19 
     20 include $(BUILD_HOST_JAVA_LIBRARY)
     21 
     22 # Build all sub-directories
     23 include $(call all-makefiles-under,$(LOCAL_PATH))
     24