diff options
author | Xavier Ducrohet <xav@android.com> | 2010-07-26 17:05:36 -0700 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2010-07-26 17:05:36 -0700 |
commit | e06f8f93f431ac4dacbecc2cdf3f61af08aafeab (patch) | |
tree | 68bc19045a4ccfa4f0e7ca910887b9b2f6c933ad /ddms/app/src | |
parent | 63e53f2d074256e335e44ea0c96d652461847f48 (diff) | |
download | sdk-e06f8f93f431ac4dacbecc2cdf3f61af08aafeab.zip sdk-e06f8f93f431ac4dacbecc2cdf3f61af08aafeab.tar.gz sdk-e06f8f93f431ac4dacbecc2cdf3f61af08aafeab.tar.bz2 |
Update ddms (all) and 'android' (linux/mac) to user explicit classpath
They were still using the old method of providing a jar folder
through java.ext.dirs in which to look for jar files.
The jar dependency is now explicit in the manifest, which allows
us to target ddmlib explicitely and not ddmlib-prebuilt.
Change-Id: Ic3c5708ab327a3e1fb7a7cd86fffda96e0d988dd
Diffstat (limited to 'ddms/app/src')
-rw-r--r-- | ddms/app/src/Android.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ddms/app/src/Android.mk b/ddms/app/src/Android.mk index c62b678..bac4030 100644 --- a/ddms/app/src/Android.mk +++ b/ddms/app/src/Android.mk @@ -7,6 +7,10 @@ LOCAL_SRC_FILES := $(call all-subdir-java-files) LOCAL_JAVA_RESOURCE_DIRS := resources LOCAL_JAR_MANIFEST := ../etc/manifest.txt + +# If the dependency list is changed, etc/manifest.txt +# MUST be updated as well (Except for swt.jar which is dynamically +# added based on whether the VM is 32 or 64 bit) LOCAL_JAVA_LIBRARIES := \ androidprefs \ sdkstats \ |