• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2007 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
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)
14LOCAL_JAVA_LIBRARIES := \
15	common \
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
24LOCAL_MODULE := ddms
25
26include $(BUILD_HOST_JAVA_LIBRARY)
27
28
29# Build all sub-directories
30include $(call all-makefiles-under,$(LOCAL_PATH))
31