Home | History | Annotate | Download | only in ant

Lines Matching full:instrumented

372             <record-build-key key="build.last.is.instrumented" value="${build.is.instrumented}" />
490 <property name="build.last.is.instrumented" value="" />
512 special case for instrumented: if the previous build was
513 instrumented but not this one, clear out the compiled code -->
517 <istrue value="${build.last.is.instrumented}" />
518 <isfalse value="${build.is.instrumented}" />
522 <echo level="info">Switching from instrumented to non-instrumented build: Deleting previous compilation output...</echo>
587 <istrue value="${build.is.instrumented}" />
736 <!-- if the project is instrumented, intrument the classes -->
737 <if condition="${build.is.instrumented}">
891 <!-- special case for instrumented builds: need to use no-locals and need
893 <if condition="${build.is.instrumented}">
959 <if condition="${build.is.instrumented}">
1007 <property name="build.is.instrumented" value="true" />
1010 <property name="build.is.instrumented" value="false" />
1104 <property name="build.is.instrumented" value="false" />
1168 <!-- ************ Instrumented specific targets ************ -->
1175 <target name="-set-instrumented-mode" depends="-set-mode-check">
1176 <property name="out.packaged.file" location="${out.absolute.dir}/${ant.project.name}-instrumented-unaligned.apk" />
1177 <property name="out.final.file" location="${out.absolute.dir}/${ant.project.name}-instrumented.apk" />
1180 <!-- whether the build is an instrumented build. -->
1181 <property name="build.is.instrumented" value="true" />
1184 <!-- Builds instrumented output package -->
1185 <target name="instrument" depends="-set-instrumented-mode, -do-debug"
1186 description="Builds an instrumented packaged.">
1191 <echo level="info">Instrumented Package: ${out.final.file}</echo>
1437 <target name="installi" depends="-set-instrumented-mode, install"
1438 description="Installs (only) the instrumented package." />
1512 <echo> instrument:Builds an instrumented package and signs it with a</echo>
1527 <echo> installi: Installs (only) the instrumented package.</echo>