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="ContentShellTest" default="debug" basedir="."> | 7 <project name="ContentShellTest" default="debug" basedir="."> |
8 | 8 |
9 <description> | 9 <description> |
10 Building ContentShellTest.apk | 10 Building ContentShellTest.apk |
11 </description> | 11 </description> |
12 | 12 |
13 <import file="../../../../build/android/ant/common.xml"/> | 13 <import file="../../../../build/android/ant/common.xml"/> |
14 | 14 |
15 <property name="target.abi" value="${APP_ABI}"/> | 15 <property name="target.abi" value="${APP_ABI}"/> |
16 <property name="out.dir" location="${PRODUCT_DIR}/content_shell_test"/> | 16 <property name="out.dir" location="${PRODUCT_DIR}/content_shell_test"/> |
17 <property name="resource.absolute.dir" value="../res"/> | 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 <path id="native.libs.gdbserver"> | 19 <path id="native.libs.gdbserver"> |
20 <fileset file="${android.gdbserver}"/> | 20 <fileset file="${android.gdbserver}"/> |
21 </path> | 21 </path> |
22 <property name="native.libs.absolute.dir" location="${out.dir}/libs" /> | 22 <property name="native.libs.absolute.dir" location="${out.dir}/libs" /> |
23 <property name="asset.absolute.dir" location="${out.dir}/assets" /> | 23 <property name="asset.absolute.dir" location="${out.dir}/assets" /> |
24 | 24 |
25 <path id="out.dex.jar.input.ref"> | 25 <path id="out.dex.jar.input.ref"> |
26 <filelist files="${INPUT_JARS_PATHS}"/> | 26 <filelist files="${INPUT_JARS_PATHS}"/> |
27 <pathelement location="${PRODUCT_DIR}/content_shell/classes"/> | 27 <pathelement location="${PRODUCT_DIR}/content_shell/classes"/> |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 </target> | 71 </target> |
72 | 72 |
73 <!-- Classpath for javac --> | 73 <!-- Classpath for javac --> |
74 <path id="javac.custom.classpath"> | 74 <path id="javac.custom.classpath"> |
75 <path refid="out.dex.jar.input.ref"/> | 75 <path refid="out.dex.jar.input.ref"/> |
76 </path> | 76 </path> |
77 <import file="../../../../build/android/ant/sdk-targets.xml"/> | 77 <import file="../../../../build/android/ant/sdk-targets.xml"/> |
78 <import file="${sdk.dir}/tools/ant/build.xml" /> | 78 <import file="${sdk.dir}/tools/ant/build.xml" /> |
79 | 79 |
80 </project> | 80 </project> |
OLD | NEW |