1 # Copyright 2007 The Android Open Source Project 2 # 3 LOCAL_PATH := $(call my-dir) 4 include $(CLEAR_VARS) 5 6 # Only compile source java files in this lib. 7 LOCAL_SRC_FILES := $(call all-java-files-under, src) 8 LOCAL_JAVA_RESOURCE_DIRS := src 9 10 LOCAL_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) 15 LOCAL_JAVA_LIBRARIES := \ 16 ddmlib \ 17 swt \ 18 org.eclipse.jface_3.4.2.M20090107-0800 \ 19 org.eclipse.equinox.common_3.4.0.v20080421-2006 \ 20 org.eclipse.core.commands_3.4.0.I20080509-2000 \ 21 jcommon-1.0.12 \ 22 jfreechart-1.0.9 \ 23 jfreechart-1.0.9-swt 24 25 LOCAL_MODULE := ddmuilib 26 27 include $(BUILD_HOST_JAVA_LIBRARY) 28 29 # Build all sub-directories 30 include $(call all-makefiles-under,$(LOCAL_PATH)) 31