forked from hjjandy/soot-infoflow-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
106 lines (95 loc) · 3.24 KB
/
build.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<project default="compile" name="Fetch or Build FlowDroid">
<property file="ant.settings"/>
<target name="settings">
<fail
message="Please copy ant.settings.template to ant.settings, and set the variables in it."
unless="soot.jar"
/>
</target>
<target name="clean">
<delete quiet="true" dir="build" />
</target>
<target name="compile" depends="settings">
<mkdir dir="build/classes" />
<javac srcdir="src" includeantruntime="true" source="1.7" target="1.7" destdir="build/classes" debug="true">
<classpath>
<pathelement location="${soot.jar}" />
<pathelement location="${heros.jar}" />
<pathelement location="${infoflow.jar}" />
<pathelement location="${infoflow-summaries.jar}" />
<fileset dir="lib">
<include name="*.jar" />
</fileset>
</classpath>
</javac>
</target>
<target name="jar" depends="compile">
<mkdir dir="build/jar" />
<jar destfile="${infoflow-android.jar}" basedir="build/classes">
<manifest>
<attribute name="Main-Class" value="soot.jimple.infoflow.android.TestApps.Test" />
<!-- <attribute name="Main-Class" value="?"/>-->
</manifest>
</jar>
</target>
<target name="compiletests" depends="settings,compile">
<mkdir dir="build/testclasses" />
<javac srcdir="src:test" includeantruntime="true" source="1.7" target="1.7"
destdir="build/testclasses" debug="true">
<classpath>
<pathelement location="${soot.jar}" />
<pathelement location="${heros.jar}" />
<pathelement location="${infoflow.jar}" />
<pathelement location="build/classes" />
<fileset dir="lib">
<include name="*.jar" />
</fileset>
</classpath>
</javac>
</target>
<target name="rundroidbench" depends="compiletests">
<mkdir dir="reports" />
<junit printsummary="yes">
<jvmarg value="-Xmx10G" />
<sysproperty key="DROIDBENCH" value="${droidBenchDir}" />
<sysproperty key="ANDROID_JARS" value="${androidJarDir}" />
<classpath>
<pathelement location="${soot.jar}" />
<pathelement location="${heros.jar}" />
<pathelement location="${infoflow.jar}" />
<pathelement location="build/testclasses" />
<fileset dir="lib">
<include name="*.jar" />
</fileset>
</classpath>
<formatter type="xml" usefile="true" />
<batchtest todir="reports">
<fileset dir="build/testclasses"
includes="soot/jimple/infoflow/android/test/**/*Tests.class"
excludes="soot/jimple/infoflow/android/test/**/JUnitTests.class" />
</batchtest>
</junit>
</target>
<target name="reportdroidbench" depends="rundroidbench">
<junitreport tofile="TESTS-TestSuites.xml" todir="reports">
<fileset dir="reports">
<include name="TEST-*.xml" />
</fileset>
<report format="frames" todir="reports" />
</junitreport>
</target>
<target name="javadoc">
<javadoc
classpath="build/classes:${soot.jar}:${heros.jar}:${infoflow.jar}"
sourcepath="src"
destdir="javadoc"
maxmemory="400m"
windowtitle="FlowDroid API"
use="true"
useexternalfile="true"
>
<fileset dir="src" includes="**/*.java"/>
</javadoc>
<jar basedir="javadoc" destfile="${infoflow-android-javadoc.jar}" />
</target>
</project>