Chromium Code Reviews| Index: chrome/android/testshell/java/chromium_testshell_apk.xml |
| diff --git a/chrome/android/testshell/java/chromium_testshell_apk.xml b/chrome/android/testshell/java/chromium_testshell_apk.xml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6056541973bb4316a7391464d6d36b9287e6bc10 |
| --- /dev/null |
| +++ b/chrome/android/testshell/java/chromium_testshell_apk.xml |
| @@ -0,0 +1,56 @@ |
| +<?xml version="1.0" encoding="UTF-8"?> |
| +<!-- |
| + Copyright (c) 2012 The Chromium Authors. All rights reserved. |
|
Yaron
2012/09/07 20:53:43
You should get Shashi or Chris to review this.
David Trainor- moved to gerrit
2012/09/10 18:09:13
Done.
|
| + Use of this source code is governed by a BSD-style license that can be |
| + found in the LICENSE file. |
| +--> |
| +<project name="ChromiumTestShell" default="debug" basedir="."> |
| + <description> |
| + Building ChromiumTestShell.apk |
| + </description> |
| + <import file="../../../../build/android/ant/common.xml"/> |
| + <import file="../../../../build/android/ant/sdk-targets.xml"/> |
| + |
| + <!-- Convert the buildtype to lowercase. E.g Debug -> debug, Release -> release. --> |
| + <script language="javascript"> |
| + project.setProperty("configuration.name", |
| + project.getProperty("CONFIGURATION_NAME").toLowerCase()) |
| + </script> |
| + |
| + <property-value name="target.abi" value="${APP_ABI}"/> |
| + |
| + <!-- Root directory for output --> |
| + <property-location name="out.dir" location="${PRODUCT_DIR}/chromium_testshell" |
| + check-exists="false"/> |
| + <property name="resource.absolute.dir" value="res"/> |
| + <property name="gen.absolute.dir" value="${out.dir}/gen"/> |
| + |
| + <!-- Standard directory for chromium_*.jars --> |
| + <property-value name="lib.java.dir" value="${PRODUCT_DIR}/lib.java"/> |
| + <path id="native.libs.gdbserver"> |
| + <fileset file="${android.gdbserver}"/> |
| + </path> |
| + <!-- Specify directory for libchromiumtestshell.so so that it can be packaged by aapt --> |
| + <property name="native.libs.absolute.dir" location="${out.dir}/libs"/> |
| + <!-- Specify assets dir, this allows both mmm and SDK builds to use same pak files. --> |
| + <property-location name="asset.absolute.dir" location="${PRODUCT_DIR}/../assets/chrome"/> |
| + |
| + <property name="version.code" value="16"/> |
| + <property name="version.name" value="0.1 Developer Build"/> |
| + |
| + <path id="out.dex.jar.input.ref"> |
| + <pathelement location="${PRODUCT_DIR}/lib.java/chromium_base.jar"/> |
| + <pathelement location="${PRODUCT_DIR}/lib.java/chromium_content.jar"/> |
| + <pathelement location="${PRODUCT_DIR}/lib.java/chromium_media.jar"/> |
| + <pathelement location="${PRODUCT_DIR}/lib.java/chromium_net.jar"/> |
| + <pathelement location="${PRODUCT_DIR}/lib.java/chromium_chrome.jar"/> |
| + <pathelement location="${PRODUCT_DIR}/lib.java/chromium_web_contents_delegate_android.jar"/> |
| + </path> |
| + |
| + <!-- Classpath for javac --> |
| + <path id="javac.custom.classpath"> |
| + <path refid="out.dex.jar.input.ref"/> |
| + </path> |
| + |
| + <import file="${sdk.dir}/tools/ant/build.xml"/> |
| +</project> |