Chromium Code Reviews| 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> |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 22 <property name="gen.absolute.dir" value="${out.dir}/gen"/> | 22 <property name="gen.absolute.dir" value="${out.dir}/gen"/> |
| 23 <property name="jar.libs.dir" value="${out.dir}/java/libs"/> | 23 <property name="jar.libs.dir" value="${out.dir}/java/libs"/> |
| 24 <path id="native.libs.gdbserver"> | 24 <path id="native.libs.gdbserver"> |
| 25 <fileset file="${android.gdbserver}"/> | 25 <fileset file="${android.gdbserver}"/> |
| 26 </path> | 26 </path> |
| 27 <property name="native.libs.absolute.dir" location="${out.dir}/libs"/> | 27 <property name="native.libs.absolute.dir" location="${out.dir}/libs"/> |
| 28 <property name="asset.absolute.dir" location="${out.dir}/assets"/> | 28 <property name="asset.absolute.dir" location="${out.dir}/assets"/> |
| 29 | 29 |
| 30 <path id="out.dex.jar.input.ref"> | 30 <path id="out.dex.jar.input.ref"> |
| 31 <filelist files="${INPUT_JARS_PATHS}"/> | 31 <filelist files="${INPUT_JARS_PATHS}"/> |
| 32 <pathelement location="${PRODUCT_DIR}/lib.java/chromium_ui.jar"/> | |
|
Ted C
2012/09/17 18:40:16
Why do you need to specify this one any different?
aurimas (slooooooooow)
2012/09/17 22:20:47
Done.
| |
| 32 </path> | 33 </path> |
| 33 <property name="java.compilerargs" value="-classpath ${toString:out.dex.jar.in put.ref}"/> | 34 <property name="java.compilerargs" value="-classpath ${toString:out.dex.jar.in put.ref}"/> |
| 34 | 35 |
| 35 <echo>classpath: ${toString:out.dex.jar.input.ref}</echo> | 36 <echo>classpath: ${toString:out.dex.jar.input.ref}</echo> |
| 36 | 37 |
| 37 <!-- We expect PRODUCT_DIR to be set like the gyp var (e.g. $ROOT/out/Debug) - -> | 38 <!-- We expect PRODUCT_DIR to be set like the gyp var (e.g. $ROOT/out/Debug) - -> |
| 38 <fail message="PRODUCT_DIR env var not set?"> | 39 <fail message="PRODUCT_DIR env var not set?"> |
| 39 <condition> | 40 <condition> |
| 40 <not> | 41 <not> |
| 41 <isset property="PRODUCT_DIR"/> | 42 <isset property="PRODUCT_DIR"/> |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 65 </target> | 66 </target> |
| 66 | 67 |
| 67 <!-- Classpath for javac --> | 68 <!-- Classpath for javac --> |
| 68 <path id="javac.custom.classpath"> | 69 <path id="javac.custom.classpath"> |
| 69 <path refid="out.dex.jar.input.ref"/> | 70 <path refid="out.dex.jar.input.ref"/> |
| 70 </path> | 71 </path> |
| 71 | 72 |
| 72 <import file="../../../../build/android/ant/sdk-targets.xml"/> | 73 <import file="../../../../build/android/ant/sdk-targets.xml"/> |
| 73 <import file="${sdk.dir}/tools/ant/build.xml"/> | 74 <import file="${sdk.dir}/tools/ant/build.xml"/> |
| 74 </project> | 75 </project> |
| OLD | NEW |