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> |
(...skipping 14 matching lines...) Expand all Loading... | |
25 </path> | 25 </path> |
26 <!-- Specify directory for libchromiumtestshell.so so that it can be packaged by aapt --> | 26 <!-- Specify directory for libchromiumtestshell.so so that it can be packaged by aapt --> |
27 <property name="native.libs.absolute.dir" location="${out.dir}/libs"/> | 27 <property name="native.libs.absolute.dir" location="${out.dir}/libs"/> |
28 <!-- Specify assets dir, this allows both mmm and SDK builds to use same pak f iles. --> | 28 <!-- Specify assets dir, this allows both mmm and SDK builds to use same pak f iles. --> |
29 <property-location name="asset.absolute.dir" location="${PRODUCT_DIR}/../asset s/chrome"/> | 29 <property-location name="asset.absolute.dir" location="${PRODUCT_DIR}/../asset s/chrome"/> |
30 | 30 |
31 <property name="version.code" value="16"/> | 31 <property name="version.code" value="16"/> |
32 <property name="version.name" value="0.1 Developer Build"/> | 32 <property name="version.name" value="0.1 Developer Build"/> |
33 | 33 |
34 <path id="out.dex.jar.input.ref"> | 34 <path id="out.dex.jar.input.ref"> |
35 <pathelement location="${lib.java.dir}/chromium_base.jar"/> | 35 » <filelist files="${INPUT_JARS_PATHS}"/> |
Ted C
2012/09/19 21:18:49
tab char here
David Trainor- moved to gerrit
2012/09/20 02:28:17
Done.
| |
36 <pathelement location="${lib.java.dir}/chromium_content.jar"/> | |
37 <pathelement location="${lib.java.dir}/chromium_media.jar"/> | |
38 <pathelement location="${lib.java.dir}/chromium_net.jar"/> | |
39 <pathelement location="${lib.java.dir}/chromium_chrome.jar"/> | |
40 <pathelement location="${lib.java.dir}/chromium_web_contents_delegate_androi d.jar"/> | |
41 </path> | 36 </path> |
42 | 37 |
43 <!-- 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) - -> |
44 <fail message="PRODUCT_DIR env var not set?"> | 39 <fail message="PRODUCT_DIR env var not set?"> |
45 <condition> | 40 <condition> |
46 <not> | 41 <not> |
47 <isset property="PRODUCT_DIR"/> | 42 <isset property="PRODUCT_DIR"/> |
48 </not> | 43 </not> |
49 </condition> | 44 </condition> |
50 </fail> | 45 </fail> |
(...skipping 21 matching lines...) Expand all Loading... | |
72 | 67 |
73 <!-- Classpath for javac --> | 68 <!-- Classpath for javac --> |
74 <path id="javac.custom.classpath"> | 69 <path id="javac.custom.classpath"> |
75 <path refid="out.dex.jar.input.ref"/> | 70 <path refid="out.dex.jar.input.ref"/> |
76 </path> | 71 </path> |
77 | 72 |
78 <import file="../../../../build/android/ant/sdk-targets.xml"/> | 73 <import file="../../../../build/android/ant/sdk-targets.xml"/> |
79 <import file="${sdk.dir}/tools/ant/build.xml"/> | 74 <import file="${sdk.dir}/tools/ant/build.xml"/> |
80 </project> | 75 </project> |
81 | 76 |
OLD | NEW |