-
Notifications
You must be signed in to change notification settings - Fork 0
/
post_compile_touchtest.xml
58 lines (45 loc) · 2.15 KB
/
post_compile_touchtest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<project name="post_compile_touchtest">
<include file="${eclipse.project.path}/library_whitelist.xml" />
<target name="-post-compile-touchtest">
<loadproperties srcFile="${eclipse.workspace}/.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.adt.prefs" />
<property name="sdk.dir" value="${com.android.ide.eclipse.adt.sdk}" />
<property name="out.classes.absolute.dir" value="${eclipse.project.path}/bin/classes"/>
<!-- jar file from where the tasks are loaded -->
<path id="android.antlibs">
<pathelement path="${sdk.dir}/tools/lib/anttasks.jar" />
</path>
<!-- Custom tasks -->
<taskdef resource="anttasks.properties" classpathref="android.antlibs" />
<loadproperties srcFile="project.properties" />
<gettarget
androidJarFileOut="project.target.android.jar"
androidAidlFileOut="project.target.framework.aidl"
bootClassPathOut="project.target.class.path"
targetApiOut="project.target.apilevel"
minSdkVersionOut="project.minSdkVersion" />
<dependency
libraryFolderPathOut="project.library.folder.path"
libraryPackagesOut="project.library.packages"
libraryManifestFilePathOut="project.library.manifest.file.path"
libraryResFolderPathOut="project.library.res.folder.path"
libraryBinAidlFolderPathOut="project.library.bin.aidl.folder.path"
libraryRFilePathOut="project.library.bin.r.file.path"
libraryNativeFolderPathOut="project.library.native.folder.path"
jarLibraryPathOut="project.all.jars.path"
targetApi="${project.target.apilevel}"
verbose="${verbose}" />
<path id="touchtest.antlibs">
<fileset dir="TouchTestDriver">
<include name="*.jar" />
</fileset>
</path>
<taskdef resource="touchtest.anttasks.properties" classpathref="touchtest.antlibs" />
<touchtest-post-compile>
<additionalJars>
<!-- Defined in library_whitelist.xml -->
<fileset refid="touchtest.additional.jars" />
</additionalJars>
</touchtest-post-compile>
</target>
</project>