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

Side by Side Diff: testing/android/native_test_apk.xml

Issue 10823435: Fix the gdb path for NDK-r8b. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync 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 | Annotate | Revision Log
« no previous file with comments | « testing/android/native_test.gyp ('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>
(...skipping 14 matching lines...) Expand all
25 TODO(yfriedman): Remove the need to specify this. We should generate the pac kages in a way such 25 TODO(yfriedman): Remove the need to specify this. We should generate the pac kages in a way such
26 that it's not required. 26 that it's not required.
27 --> 27 -->
28 <property name="source.absolute.dir" value="java/src"/> 28 <property name="source.absolute.dir" value="java/src"/>
29 <path id="javac.custom.classpath"> 29 <path id="javac.custom.classpath">
30 <pathelement location="${ANDROID_SDK}/android.jar" /> 30 <pathelement location="${ANDROID_SDK}/android.jar" />
31 </path> 31 </path>
32 <property name="target.abi" value="${APP_ABI}"/> 32 <property name="target.abi" value="${APP_ABI}"/>
33 33
34 <path id="native.libs.gdbserver"> 34 <path id="native.libs.gdbserver">
35 <fileset file="${toolchain.dir}/../../gdbserver"/> 35 <fileset file="${android.gdbserver}"/>
36 </path> 36 </path>
37 37
38 <!-- We expect PRODUCT_DIR to be set like the gyp var 38 <!-- We expect PRODUCT_DIR to be set like the gyp var
39 (e.g. $ROOT/out/Debug) --> 39 (e.g. $ROOT/out/Debug) -->
40 <fail message="PRODUCT_DIR env var not set?"> 40 <fail message="PRODUCT_DIR env var not set?">
41 <condition> 41 <condition>
42 <not> 42 <not>
43 <isset property="PRODUCT_DIR"/> 43 <isset property="PRODUCT_DIR"/>
44 </not> 44 </not>
45 </condition> 45 </condition>
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 <copy todir="${out.dir}/libs/${target.abi}"> 84 <copy todir="${out.dir}/libs/${target.abi}">
85 <path refid="native.libs.gdbserver"/> 85 <path refid="native.libs.gdbserver"/>
86 </copy> 86 </copy>
87 </then> 87 </then>
88 </if> 88 </if>
89 </target> 89 </target>
90 90
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 | « testing/android/native_test.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698