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

Side by Side Diff: testing/android/native_test_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
« no previous file with comments | « content/shell/android/javatests/content_shell_test_apk.xml ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 7
8 <project name="replaceme" default="debug" basedir="."> 8 <project name="replaceme" default="debug" basedir=".">
9 9
10 <description> 10 <description>
11 Building native test runner ChromeNativeTests_replaceme.apk 11 Building native test runner ChromeNativeTests_replaceme.apk
12 </description> 12 </description>
13 13
14 <!-- 14 <!--
15 TODO(beverloo): Remove this property when all gyp files (also those in 15 TODO(beverloo): Remove this property when all gyp files (also those in
16 WebKit) define the CHROMIUM_SRC property. This works because properties 16 WebKit) define the CHROMIUM_SRC property. This works because properties
17 in ant files are immutable. 17 in ant files are immutable.
18 --> 18 -->
19 <property name="CHROMIUM_SRC" value="${PRODUCT_DIR}/../.." /> 19 <property name="CHROMIUM_SRC" value="${PRODUCT_DIR}/../.." />
20 20
21 <import file="${CHROMIUM_SRC}/build/android/ant/common.xml"/> 21 <import file="${CHROMIUM_SRC}/build/android/ant/common.xml"/>
22 <import file="${CHROMIUM_SRC}/build/android/ant/sdk-targets.xml"/>
23 22
24 <!-- 23 <!--
25 TODO(yfriedman): Remove the need to specify this. We should generate the pac kages in a way such 24 TODO(yfriedman): Remove the need to specify this. We should generate the pac kages in a way such
26 that it's not required. 25 that it's not required.
27 --> 26 -->
28 <property name="source.absolute.dir" value="java/src"/> 27 <property name="source.absolute.dir" value="java/src"/>
29 <path id="javac.custom.classpath"> 28 <path id="javac.custom.classpath">
30 <pathelement location="${ANDROID_SDK}/android.jar" /> 29 <pathelement location="${ANDROID_SDK}/android.jar" />
31 </path> 30 </path>
32 <property name="target.abi" value="${APP_ABI}"/> 31 <property name="target.abi" value="${APP_ABI}"/>
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 </condition> 80 </condition>
82 <then> 81 <then>
83 <echo message="Copying gdbserver to the apk to enable native debugging"/ > 82 <echo message="Copying gdbserver to the apk to enable native debugging"/ >
84 <copy todir="${out.dir}/libs/${target.abi}"> 83 <copy todir="${out.dir}/libs/${target.abi}">
85 <path refid="native.libs.gdbserver"/> 84 <path refid="native.libs.gdbserver"/>
86 </copy> 85 </copy>
87 </then> 86 </then>
88 </if> 87 </if>
89 </target> 88 </target>
90 89
90 <import file="${CHROMIUM_SRC}/build/android/ant/sdk-targets.xml"/>
91 <import file="${sdk.dir}/tools/ant/build.xml" /> 91 <import file="${sdk.dir}/tools/ant/build.xml" />
92 92
93 </project> 93 </project>
OLDNEW
« no previous file with comments | « content/shell/android/javatests/content_shell_test_apk.xml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698