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 | 7 |
8 <project name="replaceme" default="debug" basedir="."> | 8 <project name="replaceme" default="debug" basedir="."> |
9 | 9 |
10 <description> | 10 <description> |
(...skipping 14 matching lines...) Expand all Loading... |
25 TODO(yfriedman): Remove the need to specify this. We should generate the pac
kages in a way such | 25 TODO(yfriedman): Remove the need to specify this. We should generate the pac
kages in a way such |
26 that it's not required. | 26 that it's not required. |
27 --> | 27 --> |
28 <property name="source.absolute.dir" value="java/src"/> | 28 <property name="source.absolute.dir" value="java/src"/> |
29 <path id="javac.custom.classpath"> | 29 <path id="javac.custom.classpath"> |
30 <pathelement location="${ANDROID_SDK}/android.jar" /> | 30 <pathelement location="${ANDROID_SDK}/android.jar" /> |
31 </path> | 31 </path> |
32 <property name="target.abi" value="${APP_ABI}"/> | 32 <property name="target.abi" value="${APP_ABI}"/> |
33 | 33 |
34 <path id="native.libs.gdbserver"> | 34 <path id="native.libs.gdbserver"> |
35 <fileset file="${toolchain.dir}/../../gdbserver"/> | 35 <fileset file="${android.gdbserver}"/> |
36 </path> | 36 </path> |
37 | 37 |
38 <!-- We expect PRODUCT_DIR to be set like the gyp var | 38 <!-- We expect PRODUCT_DIR to be set like the gyp var |
39 (e.g. $ROOT/out/Debug) --> | 39 (e.g. $ROOT/out/Debug) --> |
40 <fail message="PRODUCT_DIR env var not set?"> | 40 <fail message="PRODUCT_DIR env var not set?"> |
41 <condition> | 41 <condition> |
42 <not> | 42 <not> |
43 <isset property="PRODUCT_DIR"/> | 43 <isset property="PRODUCT_DIR"/> |
44 </not> | 44 </not> |
45 </condition> | 45 </condition> |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 <copy todir="${out.dir}/libs/${target.abi}"> | 84 <copy todir="${out.dir}/libs/${target.abi}"> |
85 <path refid="native.libs.gdbserver"/> | 85 <path refid="native.libs.gdbserver"/> |
86 </copy> | 86 </copy> |
87 </then> | 87 </then> |
88 </if> | 88 </if> |
89 </target> | 89 </target> |
90 | 90 |
91 <import file="${sdk.dir}/tools/ant/build.xml" /> | 91 <import file="${sdk.dir}/tools/ant/build.xml" /> |
92 | 92 |
93 </project> | 93 </project> |
OLD | NEW |