• 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	sdklib \
15	lint_api \
16	lint_checks \
17	lombok-ast-0.2 \
18	asm-tools \
19	asm-tree-tools \
20	asm-analysis-tools \
21	guava-tools
22
23LOCAL_MODULE := lint
24LOCAL_MODULE_TAGS := optional
25
26include $(BUILD_HOST_JAVA_LIBRARY)
27
28
29# Build all sub-directories
30include $(call all-makefiles-under,$(LOCAL_PATH))
31