| 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="ContentShell" default="debug" basedir="."> | 7 <project name="ContentShell" default="debug" basedir="."> |
| 8 <description> | 8 <description> |
| 9 Building ContentShell.apk | 9 Building ContentShell.apk |
| 10 </description> | 10 </description> |
| 11 <import file="../../../../build/android/ant/common.xml"/> | 11 <import file="../../../../build/android/ant/common.xml"/> |
| 12 <import file="../../../../build/android/ant/sdk-targets.xml"/> | |
| 13 | 12 |
| 14 <!-- Convert the buildtype to lowercase. E.g Debug -> debug, Release -> releas
e. --> | 13 <!-- Convert the buildtype to lowercase. E.g Debug -> debug, Release -> releas
e. --> |
| 15 <script language="javascript"> | 14 <script language="javascript"> |
| 16 project.setProperty("configuration.name", | 15 project.setProperty("configuration.name", |
| 17 project.getProperty("CONFIGURATION_NAME").toLowerCase()) | 16 project.getProperty("CONFIGURATION_NAME").toLowerCase()) |
| 18 </script> | 17 </script> |
| 19 <property-value name="target.abi" value="${APP_ABI}"/> | 18 <property-value name="target.abi" value="${APP_ABI}"/> |
| 20 <property-location name="out.dir" location="${PRODUCT_DIR}/content_shell" | 19 <property-location name="out.dir" location="${PRODUCT_DIR}/content_shell" |
| 21 check-exists="false"/> | 20 check-exists="false"/> |
| 22 <property name="resource.absolute.dir" value="../res"/> | 21 <property name="resource.absolute.dir" value="../res"/> |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 <path refid="native.libs.gdbserver"/> | 64 <path refid="native.libs.gdbserver"/> |
| 66 </copy> | 65 </copy> |
| 67 </then> | 66 </then> |
| 68 </if> | 67 </if> |
| 69 </target> | 68 </target> |
| 70 | 69 |
| 71 <!-- Classpath for javac --> | 70 <!-- Classpath for javac --> |
| 72 <path id="javac.custom.classpath"> | 71 <path id="javac.custom.classpath"> |
| 73 <path refid="out.dex.jar.input.ref"/> | 72 <path refid="out.dex.jar.input.ref"/> |
| 74 </path> | 73 </path> |
| 74 |
| 75 <import file="../../../../build/android/ant/sdk-targets.xml"/> |
| 75 <import file="${sdk.dir}/tools/ant/build.xml"/> | 76 <import file="${sdk.dir}/tools/ant/build.xml"/> |
| 76 </project> | 77 </project> |
| OLD | NEW |