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