| 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="ChromiumTestShell" default="debug" basedir="."> | 7 <project name="ChromiumTestShell" default="debug" basedir="."> |
| 8 <description> | 8 <description> |
| 9 Building ChromiumTestShell.apk | 9 Building ChromiumTestShell.apk |
| 10 </description> | 10 </description> |
| 11 <import file="../../../../build/android/ant/common.xml"/> | 11 <import file="../../../../build/android/ant/common.xml"/> |
| 12 | 12 |
| 13 <property-value name="target.abi" value="${APP_ABI}"/> | 13 <property-value name="target.abi" value="${APP_ABI}"/> |
| 14 <property-location name="out.dir" location="${PRODUCT_DIR}/chromium_testshell" | 14 <property-location name="out.dir" location="${PRODUCT_DIR}/chromium_testshell" |
| 15 check-exists="false"/> | 15 check-exists="false"/> |
| 16 <property name="resource.absolute.dir" value="${RESOURCE_DIR}"/> | 16 <property name="resource.absolute.dir" value="${RESOURCE_DIR}"/> |
| 17 <property name="gen.absolute.dir" value="${out.dir}/gen"/> | 17 <property name="gen.absolute.dir" value="${out.dir}/gen"/> |
| 18 |
| 18 <path id="native.libs.gdbserver"> | 19 <path id="native.libs.gdbserver"> |
| 19 <fileset file="${android.gdbserver}"/> | 20 <fileset file="${android.gdbserver}"/> |
| 20 </path> | 21 </path> |
| 21 <property name="native.libs.absolute.dir" location="${out.dir}/libs"/> | 22 <property name="native.libs.absolute.dir" location="${out.dir}/libs"/> |
| 22 <property-location name="asset.absolute.dir" location="${PRODUCT_DIR}/../asset
s/chrome"/> | 23 <property-location name="asset.absolute.dir" location="${PRODUCT_DIR}/../asset
s/chrome"/> |
| 23 <!-- Set the output directory for the final apk to the ${apks.dir}. --> | 24 <!-- Set the output directory for the final apk to the ${apks.dir}. --> |
| 24 <property-location name="out.final.file" | 25 <property-location name="out.final.file" |
| 25 location="${apks.dir}/${ant.project.name}-debug.apk" | 26 location="${apks.dir}/${ant.project.name}-debug.apk" |
| 26 check-exists="false"/> | 27 check-exists="false"/> |
| 27 | 28 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 | 62 |
| 62 <!-- Classpath for javac --> | 63 <!-- Classpath for javac --> |
| 63 <path id="javac.custom.classpath"> | 64 <path id="javac.custom.classpath"> |
| 64 <path refid="out.dex.jar.input.ref"/> | 65 <path refid="out.dex.jar.input.ref"/> |
| 65 </path> | 66 </path> |
| 66 | 67 |
| 67 <import file="../../../../build/android/ant/sdk-targets.xml"/> | 68 <import file="../../../../build/android/ant/sdk-targets.xml"/> |
| 68 <import file="${sdk.dir}/tools/ant/build.xml"/> | 69 <import file="${sdk.dir}/tools/ant/build.xml"/> |
| 69 </project> | 70 </project> |
| 70 | 71 |
| OLD | NEW |