1# Copyright 2011 The Android Open Source Project 2# 3LOCAL_PATH := $(call my-dir) 4include $(CLEAR_VARS) 5 6# Only compile source java files in this lib. 7LOCAL_SRC_FILES := $(call all-java-files-under, src) 8LOCAL_JAVA_RESOURCE_DIRS := src 9 10# If the dependency list is changed, etc/manifest.txt 11LOCAL_JAVA_LIBRARIES := \ 12 common \ 13 sdklib \ 14 layoutlib_api \ 15 lombok-ast-0.2 \ 16 lint_api \ 17 asm-tools \ 18 asm-tree-tools \ 19 asm-analysis-tools \ 20 guava-tools 21 22LOCAL_MODULE := lint_checks 23LOCAL_MODULE_TAGS := optional 24 25include $(BUILD_HOST_JAVA_LIBRARY) 26 27# Build all sub-directories 28include $(call all-makefiles-under,$(LOCAL_PATH)) 29