e9382c7713a47856ed995bb7dbbaa2ce430b6f39
[fw/altos] / altosdroid / build.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project name="AltosDroid" default="help">
3
4     <!-- The local.properties file is created and updated by the 'android' tool.
5          It contains the path to the SDK. It should *NOT* be checked into
6          Version Control Systems. -->
7     <property file="local.properties" />
8
9     <!-- The ant.properties file can be created by you. It is only edited by the
10          'android' tool to add properties to it.
11          This is the place to change some Ant specific build properties.
12          Here are some properties you may want to change/update:
13
14          source.dir
15              The name of the source directory. Default is 'src'.
16          out.dir
17              The name of the output directory. Default is 'bin'.
18
19          For other overridable properties, look at the beginning of the rules
20          files in the SDK, at tools/ant/build.xml
21
22          Properties related to the SDK location or the project target should
23          be updated using the 'android' tool with the 'update' action.
24
25          This file is an integral part of the build system for your
26          application and should be checked into Version Control Systems.
27
28          -->
29     <property file="ant.properties" />
30
31     <!-- The project.properties file is created and updated by the 'android'
32          tool, as well as ADT.
33
34          This contains project specific properties such as project target, and library
35          dependencies. Lower level build properties are stored in ant.properties
36          (or in .classpath for Eclipse projects).
37
38          This file is an integral part of the build system for your
39          application and should be checked into Version Control Systems. -->
40     <loadproperties srcFile="project.properties" />
41
42     <!-- quick check on sdk.dir -->
43     <fail
44             message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through an env var"
45             unless="sdk.dir"
46     />
47
48
49 <!-- extension targets. Uncomment the ones where you want to do custom work
50      in between standard targets -->
51 <!--
52     <target name="-pre-build">
53     </target>
54     <target name="-pre-compile">
55     </target>
56
57     /* This is typically used for code obfuscation.
58        Compiled code location: ${out.classes.absolute.dir}
59        If this is not done in place, override ${out.dex.input.absolute.dir} */
60     <target name="-post-compile">
61     </target>
62 -->
63
64     <property name="java.target" value="1.7" />
65     <property name="java.source" value="1.7" />
66
67     <!-- Compiles this project's .java files into .class files. -->
68     <target name="-compile" depends="-pre-build, -build-setup, -code-gen, -pre-compile">
69         <do-only-if-manifest-hasCode elseText="hasCode = false. Skipping...">
70             <!-- merge the project's own classpath and the tested project's classpath -->
71             <path id="project.javac.classpath">
72                 <path refid="project.all.jars.path" />
73                 <path refid="tested.project.classpath" />
74                 <path path="${java.compiler.classpath}" />
75             </path>
76             <javac encoding="${java.encoding}"
77                     source="${java.source}" target="${java.target}"
78                     debug="true" extdirs="" includeantruntime="false"
79                     destdir="${out.classes.absolute.dir}"
80                     bootclasspathref="project.target.class.path"
81                     verbose="${verbose}"
82                     classpathref="project.javac.classpath"
83                     fork="${need.javac.fork}">
84                 <src path="${source.absolute.dir}" />
85                 <src path="${gen.absolute.dir}" />
86                 <compilerarg line="${java.compilerargs}" />
87             </javac>
88
89             <!-- if the project is instrumented, intrument the classes -->
90             <if condition="${build.is.instrumented}">
91                 <then>
92                     <echo level="info">Instrumenting classes from ${out.absolute.dir}/classes...</echo>
93
94                     <!-- build the filter to remove R, Manifest, BuildConfig -->
95                     <getemmafilter
96                             appPackage="${project.app.package}"
97                             libraryPackagesRefId="project.library.packages"
98                             filterOut="emma.default.filter"/>
99
100                     <!-- define where the .em file is going. This may have been
101                          setup already if this is a library -->
102                     <property name="emma.coverage.absolute.file" location="${out.absolute.dir}/coverage.em" />
103
104                     <!-- It only instruments class files, not any external libs -->
105                     <emma enabled="true">
106                         <instr verbosity="${verbosity}"
107                                mode="overwrite"
108                                instrpath="${out.absolute.dir}/classes"
109                                outdir="${out.absolute.dir}/classes"
110                                metadatafile="${emma.coverage.absolute.file}">
111                             <filter excludes="${emma.default.filter}" />
112                             <filter value="${emma.filter}" />
113                         </instr>
114                     </emma>
115                 </then>
116             </if>
117
118             <!-- if the project is a library then we generate a jar file -->
119             <if condition="${project.is.library}">
120                 <then>
121                     <echo level="info">Creating library output jar file...</echo>
122                     <property name="out.library.jar.file" location="${out.absolute.dir}/classes.jar" />
123                     <if>
124                         <condition>
125                             <length string="${android.package.excludes}" trim="true" when="greater" length="0" />
126                         </condition>
127                         <then>
128                             <echo level="info">Custom jar packaging exclusion: ${android.package.excludes}</echo>
129                         </then>
130                     </if>
131
132                     <propertybyreplace name="project.app.package.path" input="${project.app.package}" replace="." with="/" />
133
134                     <jar destfile="${out.library.jar.file}">
135                         <fileset dir="${out.classes.absolute.dir}"
136                                 includes="**/*.class"
137                                 excludes="${project.app.package.path}/R.class ${project.app.package.path}/R$*.class ${project.app.package.path}/BuildConfig.class"/>
138                         <fileset dir="${source.absolute.dir}" excludes="**/*.java ${android.package.excludes}" />
139                     </jar>
140                 </then>
141             </if>
142
143         </do-only-if-manifest-hasCode>
144     </target>
145
146     <!-- Import the actual build file.
147
148          To customize existing targets, there are two options:
149          - Customize only one target:
150              - copy/paste the target into this file, *before* the
151                <import> task.
152              - customize it to your needs.
153          - Customize the whole content of build.xml
154              - copy/paste the content of the rules files (minus the top node)
155                into this file, replacing the <import> task.
156              - customize to your needs.
157
158          ***********************
159          ****** IMPORTANT ******
160          ***********************
161          In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
162          in order to avoid having your file be overridden by tools such as "android update project"
163     -->
164     <!-- version-tag: 1 -->
165     <import file="${sdk.dir}/tools/ant/build.xml" />
166
167 </project>