OLD | NEW |
1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
2 <!-- | 2 <!-- |
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 <project name="AndroidWebViewTest" default="debug" basedir="."> | 7 <project name="AndroidWebViewTest" default="debug" basedir="."> |
8 | 8 |
9 <description> | 9 <description> |
10 Building AndroidWebViewTest.apk | 10 Building AndroidWebViewTest.apk |
11 </description> | 11 </description> |
12 <import file="../../build/android/ant/common.xml"/> | 12 <import file="../../build/android/ant/common.xml"/> |
13 | 13 |
14 <property-value name="target.abi" value="${APP_ABI}"/> | 14 <property-value name="target.abi" value="${APP_ABI}"/> |
15 <property-location name="out.dir" location="${PRODUCT_DIR}/android_webview_tes
t" | 15 <property-location name="out.dir" location="${PRODUCT_DIR}/android_webview_tes
t" |
16 check-exists="false"/> | 16 check-exists="false"/> |
17 <property name="resource.absolute.dir" value="${RESOURCE_DIR}"/> | 17 <property name="resource.absolute.dir" value="${RESOURCE_DIR}"/> |
18 <property name="gen.absolute.dir" value="${out.dir}/gen"/> | 18 <property name="gen.absolute.dir" value="${out.dir}/gen"/> |
19 <property name="native.libs.absolute.dir" location="${out.dir}/libs"/> | 19 <property name="native.libs.absolute.dir" location="${out.dir}/libs"/> |
20 <property name="asset.absolute.dir" location="${out.dir}/assets"/> | 20 <property name="asset.absolute.dir" location="${out.dir}/assets"/> |
21 <!-- Set the output directory for the final apk to the ${apks.dir}. --> | 21 <!-- Set the output directory for the final apk to the ${apks.dir}. --> |
22 <property-location name="out.final.file" | 22 <property-location name="out.final.file" |
23 location="${apks.dir}/${ant.project.name}-debug.apk" | 23 location="${apks.dir}/${ant.project.name}-debug.apk" |
24 check-exists="false"/> | 24 check-exists="false"/> |
25 <property name="generate.test.jar" value="true"/> | 25 <property name="generate.test.jar" value="true"/> |
26 | 26 |
| 27 <path id="javac.srcdirs.additional"> |
| 28 <filelist files="${ADDITIONAL_SRC_DIRS}"/> |
| 29 <filelist files="${GENERATED_SRC_DIRS}"/> |
| 30 </path> |
| 31 |
27 <path id="out.dex.jar.input.ref"> | 32 <path id="out.dex.jar.input.ref"> |
28 <filelist files="${INPUT_JARS_PATHS}"/> | 33 <filelist files="${INPUT_JARS_PATHS}"/> |
29 </path> | 34 </path> |
30 | 35 |
31 <!-- Classpath for javac --> | 36 <!-- Classpath for javac --> |
32 <path id="javac.custom.classpath"> | 37 <path id="javac.custom.classpath"> |
33 <path refid="out.dex.jar.input.ref"/> | 38 <path refid="out.dex.jar.input.ref"/> |
34 </path> | 39 </path> |
35 | 40 |
36 <import file="../../build/android/ant/sdk-targets.xml"/> | 41 <import file="../../build/android/ant/sdk-targets.xml"/> |
37 <import file="${sdk.dir}/tools/ant/build.xml"/> | 42 <import file="${sdk.dir}/tools/ant/build.xml"/> |
38 </project> | 43 </project> |
OLD | NEW |