1 # Copyright 2007 The Android Open Source Project 2 # 3 LOCAL_PATH := $(call my-dir) 4 include $(CLEAR_VARS) 5 6 LOCAL_SRC_FILES := $(call all-java-files-under, src) 7 LOCAL_JAVA_RESOURCE_DIRS := src 8 9 LOCAL_JAR_MANIFEST := etc/manifest.txt 10 11 # If the dependency list is changed, etc/manifest.txt 12 # MUST be updated as well (Except for swt.jar which is dynamically 13 # added based on whether the VM is 32 or 64 bit) 14 LOCAL_JAVA_LIBRARIES := \ 15 androidprefs \ 16 sdkstats \ 17 ddmlib \ 18 ddmuilib \ 19 swt \ 20 swtmenubar \ 21 org.eclipse.jface_3.6.2.M20110210-1200 \ 22 org.eclipse.equinox.common_3.6.0.v20100503 \ 23 org.eclipse.core.commands_3.6.0.I20100512-1500 24 LOCAL_MODULE := ddms 25 26 include $(BUILD_HOST_JAVA_LIBRARY) 27 28 29 # Build all sub-directories 30 include $(call all-makefiles-under,$(LOCAL_PATH)) 31