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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 <copy file="AndroidManifest.xml" todir="${out.dir}/manifest"/> | 67 <copy file="AndroidManifest.xml" todir="${out.dir}/manifest"/> |
68 <property name="manifest.abs.file" location="${out.dir}/manifest/AndroidManife
st.xml"/> | 68 <property name="manifest.abs.file" location="${out.dir}/manifest/AndroidManife
st.xml"/> |
69 | 69 |
70 <target name="-post-compile"> | 70 <target name="-post-compile"> |
71 <!-- copy gdbserver to main libs directory if building debug. --> | 71 <!-- copy gdbserver to main libs directory if building debug. --> |
72 <if> | 72 <if> |
73 <condition> | 73 <condition> |
74 <equals arg1="${build.target}" arg2="debug" /> | 74 <equals arg1="${build.target}" arg2="debug" /> |
75 </condition> | 75 </condition> |
76 <then> | 76 <then> |
77 <echo message="Copying gdbserver to the apk to enable native debugging"/
> | |
78 <copy todir="${out.dir}/libs/${target.abi}"> | 77 <copy todir="${out.dir}/libs/${target.abi}"> |
79 <path refid="native.libs.gdbserver"/> | 78 <path refid="native.libs.gdbserver"/> |
80 </copy> | 79 </copy> |
81 </then> | 80 </then> |
82 </if> | 81 </if> |
83 </target> | 82 </target> |
84 | 83 |
85 <import file="${CHROMIUM_SRC}/build/android/ant/sdk-targets.xml"/> | 84 <import file="${CHROMIUM_SRC}/build/android/ant/sdk-targets.xml"/> |
86 <import file="${sdk.dir}/tools/ant/build.xml" /> | 85 <import file="${sdk.dir}/tools/ant/build.xml" /> |
87 | 86 |
88 </project> | 87 </project> |
OLD | NEW |