1# Copyright 2007 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
10LOCAL_JAR_MANIFEST := etc/manifest.txt
11
12# If the dependency list is changed, etc/manifest.txt
13# MUST be updated as well (Except for swt.jar which is dynamically
14# added based on whether the VM is 32 or 64 bit)
15LOCAL_JAVA_LIBRARIES := \
16	ddmlib \
17	swt \
18	org.eclipse.jface_3.6.2.M20110210-1200 \
19	org.eclipse.equinox.common_3.6.0.v20100503 \
20	org.eclipse.core.commands_3.6.0.I20100512-1500 \
21	jcommon-1.0.12 \
22	jfreechart-1.0.9 \
23	jfreechart-1.0.9-swt
24	
25LOCAL_MODULE := ddmuilib
26
27include $(BUILD_HOST_JAVA_LIBRARY)
28
29# Build all sub-directories
30include $(call all-makefiles-under,$(LOCAL_PATH))
31