Add support for building with precompiled JARs

This commit is contained in:
Jesse Vincent 2011-01-31 17:19:43 +00:00
parent a82444bd64
commit eb6e48c7bd
2 changed files with 1 additions and 22 deletions

View File

@ -157,28 +157,6 @@
</exec>
</target>
<!-- Compiles this project's .java files into .class files. -->
<target name="compile" depends="-resource-src, -aidl"
description="Compiles project's .java files into .class files">
<!-- If android rules are used for a test project, its classpath should include
tested project's location -->
<condition property="extensible.classpath"
value="${tested.project.absolute.dir}/bin/classes" else=".">
<isset property="tested.project.absolute.dir" />
</condition>
<javac encoding="ascii" target="1.5" debug="true" extdirs=""
destdir="${out.classes.absolute.dir}"
bootclasspathref="android.target.classpath"
verbose="${verbose}" classpath="${extensible.classpath}">
<src path="${source.absolute.dir}" />
<src path="${gen.absolute.dir}" />
<classpath>
<!-- <fileset dir="${external.libs.absolute.dir}" includes="*.jar" /> -->
<fileset dir="compile-only-libs" includes="*.jar" />
</classpath>
</javac>
</target>
<target name="help">
<!-- displays starts at col 13
|13 80| -->

View File

@ -11,3 +11,4 @@
split.density=false
# Project target.
target=android-9
extensible.libs.classpath=compile-only-libs