Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(504)

Side by Side Diff: content/shell/android/java/content_shell_apk.xml

Issue 10918149: Use checked in keystore to sign debug apks (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « build/android/ant/sdk-targets.xml ('k') | content/shell/android/javatests/content_shell_test_apk.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698