aboutsummaryrefslogtreecommitdiffstats
path: root/lint/cli/Android.mk
blob: acf5241a701c44510e04d4942098f51ecfbcad0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 2011 The Android Open Source Project
#
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_JAVA_RESOURCE_DIRS := src

LOCAL_JAR_MANIFEST := etc/manifest.txt

# If the dependency list is changed, etc/manifest.txt
LOCAL_JAVA_LIBRARIES := \
	common \
	lint_api \
	lint_checks \
	lombok-ast-0.2
LOCAL_STATIC_JAVA_LIBRARIES := \
	asm-tools \
	asm-tree-tools \
	guava-tools

LOCAL_MODULE := lint
LOCAL_MODULE_TAGS := optional

include $(BUILD_HOST_JAVA_LIBRARY)


# Build all sub-directories
include $(call all-makefiles-under,$(LOCAL_PATH))