OLD | NEW |
1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
2 <project name="Adblock Plus Library Tests" default="help"> | 2 <project name="Adblock Plus Library Tests" default="help"> |
3 | 3 |
4 <!-- The local.properties file is created and updated by the 'android' tool. | 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 | 5 It contains the path to the SDK. It should *NOT* be checked into |
6 Version Control Systems. --> | 6 Version Control Systems. --> |
7 <property file="local.properties" /> | 7 <property file="local.properties" /> |
8 | 8 |
9 <!-- The ant.properties file can be created by you. It is only edited by the | 9 <!-- The ant.properties file can be created by you. It is only edited by the |
10 'android' tool to add properties to it. | 10 'android' tool to add properties to it. |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 82 |
83 *********************** | 83 *********************** |
84 ****** IMPORTANT ****** | 84 ****** IMPORTANT ****** |
85 *********************** | 85 *********************** |
86 In all cases you must update the value of version-tag below to read 'cu
stom' instead of an integer, | 86 In all cases you must update the value of version-tag below to read 'cu
stom' instead of an integer, |
87 in order to avoid having your file be overridden by tools such as "andr
oid update project" | 87 in order to avoid having your file be overridden by tools such as "andr
oid update project" |
88 --> | 88 --> |
89 <!-- version-tag: 1 --> | 89 <!-- version-tag: 1 --> |
90 <import file="${sdk.dir}/tools/ant/build.xml" /> | 90 <import file="${sdk.dir}/tools/ant/build.xml" /> |
91 | 91 |
| 92 <!-- checkstyle target for java code --> |
| 93 <target name="checkstyle" |
| 94 description="Generates a report of code convention violations."> |
| 95 |
| 96 <taskdef |
| 97 resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.pr
operties" |
| 98 classpath="../third_party/checkstyle/java/lib/checkstyle-6.19-all.ja
r"/> |
| 99 |
| 100 <property |
| 101 name="checkstyle.header.file" |
| 102 value="../third_party/checkstyle/java/res/header.txt"/> |
| 103 |
| 104 <checkstyle |
| 105 config="../third_party/checkstyle/java/rules/eyeo_checks.xml" |
| 106 failOnViolation="true"> |
| 107 <fileset dir="src" includes="**/*.java"/> |
| 108 <formatter type="plain"/> |
| 109 </checkstyle> |
| 110 |
| 111 </target> |
| 112 |
92 <!-- custom test target to perform specific test/method only --> | 113 <!-- custom test target to perform specific test/method only --> |
93 <target | 114 <target |
94 name="testOnly" | 115 name="testOnly" |
95 depends="-test-project-check" | 116 depends="-test-project-check" |
96 description="Runs a single test case, given with -DtestClass=package.pat
h.to.Class"> | 117 description="Runs a single test case, given with -DtestClass=package.pat
h.to.Class"> |
97 | 118 |
98 <property name="test.runner" value="android.test.InstrumentationTestRunn
er" /> | 119 <property name="test.runner" value="android.test.InstrumentationTestRunn
er" /> |
99 <property name="tested.project.absolute.dir" location="${tested.project.
dir}" /> | 120 <property name="tested.project.absolute.dir" location="${tested.project.
dir}" /> |
100 | 121 |
101 <!-- Application package of the tested project extracted from its manife
st file --> | 122 <!-- Application package of the tested project extracted from its manife
st file --> |
102 <xpath | 123 <xpath |
103 input="${tested.project.absolute.dir}/AndroidManifest.xml" | 124 input="${tested.project.absolute.dir}/AndroidManifest.xml" |
104 expression="/manifest/@package" | 125 expression="/manifest/@package" |
105 output="tested.project.app.package" /> | 126 output="tested.project.app.package" /> |
106 | 127 |
107 <run-tests-helper> | 128 <run-tests-helper> |
108 <extra-instrument-args> | 129 <extra-instrument-args> |
109 <arg value="-e" /> | 130 <arg value="-e" /> |
110 <arg value="class" /> | 131 <arg value="class" /> |
111 <arg value="${testClass}" /> | 132 <arg value="${testClass}" /> |
112 </extra-instrument-args> | 133 </extra-instrument-args> |
113 </run-tests-helper> | 134 </run-tests-helper> |
114 </target> | 135 </target> |
115 | 136 |
116 </project> | 137 </project> |
OLD | NEW |