diff options
author | Siva Velusamy <vsiva@google.com> | 2014-05-21 21:38:43 -0700 |
---|---|---|
committer | Siva Velusamy <vsiva@google.com> | 2014-05-21 21:45:51 -0700 |
commit | 0f9c292a689b18cdf72357fa7df1b1b9f10d646f (patch) | |
tree | cd2e18e0106f2759e23ac2dac15c86a2ca57610f /eclipse/plugins/com.android.ide.eclipse.traceview | |
parent | 9b98309c11b57361f00c845120c13a606d94395b (diff) | |
download | sdk-0f9c292a689b18cdf72357fa7df1b1b9f10d646f.zip sdk-0f9c292a689b18cdf72357fa7df1b1b9f10d646f.tar.gz sdk-0f9c292a689b18cdf72357fa7df1b1b9f10d646f.tar.bz2 |
Replace bundled libraries with OSGI bundle dependencies
This CL removes all the jars bundled in inside the libs
folder and adds explicit dependencies on OSGI bundles
for each of the dependencies.
See eec615b94b504de6d87702b830a6fc85fc7d5108 for more
info on how the dependency jars are converted into
OSGI bundles.
Change-Id: I5356edc2ca857ea961392c599fa0e985b16b4b2d
Diffstat (limited to 'eclipse/plugins/com.android.ide.eclipse.traceview')
4 files changed, 3 insertions, 6 deletions
diff --git a/eclipse/plugins/com.android.ide.eclipse.traceview/.classpath b/eclipse/plugins/com.android.ide.eclipse.traceview/.classpath index 176babf..751c8f2 100644 --- a/eclipse/plugins/com.android.ide.eclipse.traceview/.classpath +++ b/eclipse/plugins/com.android.ide.eclipse.traceview/.classpath @@ -1,7 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src"/> - <classpathentry kind="lib" path="libs/traceview.jar" sourcepath="/traceview"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> <classpathentry kind="output" path="bin"/> diff --git a/eclipse/plugins/com.android.ide.eclipse.traceview/META-INF/MANIFEST.MF b/eclipse/plugins/com.android.ide.eclipse.traceview/META-INF/MANIFEST.MF index 0b061b8..0d51d94 100644 --- a/eclipse/plugins/com.android.ide.eclipse.traceview/META-INF/MANIFEST.MF +++ b/eclipse/plugins/com.android.ide.eclipse.traceview/META-INF/MANIFEST.MF @@ -9,9 +9,9 @@ Require-Bundle: org.eclipse.ui, org.eclipse.ui.ide, com.android.ide.eclipse.ddms;bundle-version="21.0.0", org.eclipse.core.filesystem, - org.eclipse.core.resources + org.eclipse.core.resources, + com.android.tools.traceview;bundle-version="22.9.0" Bundle-ActivationPolicy: lazy -Bundle-ClassPath: ., - libs/traceview.jar +Bundle-ClassPath: . Bundle-Vendor: The Android Open Source Project Bundle-RequiredExecutionEnvironment: JavaSE-1.6 diff --git a/eclipse/plugins/com.android.ide.eclipse.traceview/build.properties b/eclipse/plugins/com.android.ide.eclipse.traceview/build.properties index f529710..b0c2cc5 100644 --- a/eclipse/plugins/com.android.ide.eclipse.traceview/build.properties +++ b/eclipse/plugins/com.android.ide.eclipse.traceview/build.properties @@ -3,7 +3,6 @@ output.. = bin/ bin.includes = META-INF/,\ .,\ plugin.xml,\ - libs/traceview.jar,\ icons/,\ about.ini,\ about.properties diff --git a/eclipse/plugins/com.android.ide.eclipse.traceview/libs/.gitignore b/eclipse/plugins/com.android.ide.eclipse.traceview/libs/.gitignore deleted file mode 100644 index d392f0e..0000000 --- a/eclipse/plugins/com.android.ide.eclipse.traceview/libs/.gitignore +++ /dev/null @@ -1 +0,0 @@ -*.jar |