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

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

Issue 10829291: Android's native_tests.gyp should take WebKit's directory structure into account. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch Created 8 years, 4 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>
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(yfriedman): This target can be invoked from multiple depths. So we use ${PRODUCT_DIR} to normalize the paths. This could be cleaned up. 15 TODO(beverloo): Remove this property when all gyp files (also those in
16 WebKit) define the CHROMIUM_SRC property. This works because properties
17 in ant files are immutable.
16 --> 18 -->
17 <import file="${PRODUCT_DIR}/../../build/android/ant/common.xml"/> 19 <property name="CHROMIUM_SRC" value="${PRODUCT_DIR}/../.." />
18 <import file="${PRODUCT_DIR}/../../build/android/ant/sdk-targets.xml"/> 20
21 <import file="${CHROMIUM_SRC}/build/android/ant/common.xml"/>
22 <import file="${CHROMIUM_SRC}/build/android/ant/sdk-targets.xml"/>
23
19 <!-- 24 <!--
20 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
21 that it's not required. 26 that it's not required.
22 --> 27 -->
23 <property name="source.absolute.dir" value="java/src"/> 28 <property name="source.absolute.dir" value="java/src"/>
24 <path id="javac.custom.classpath"> 29 <path id="javac.custom.classpath">
25 <pathelement location="${ANDROID_SDK}/android.jar" /> 30 <pathelement location="${ANDROID_SDK}/android.jar" />
26 </path> 31 </path>
27 <property name="target.abi" value="${APP_ABI}"/> 32 <property name="target.abi" value="${APP_ABI}"/>
28 33
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 <copy todir="${out.dir}/libs/${target.abi}"> 84 <copy todir="${out.dir}/libs/${target.abi}">
80 <path refid="native.libs.gdbserver"/> 85 <path refid="native.libs.gdbserver"/>
81 </copy> 86 </copy>
82 </then> 87 </then>
83 </if> 88 </if>
84 </target> 89 </target>
85 90
86 <import file="${sdk.dir}/tools/ant/build.xml" /> 91 <import file="${sdk.dir}/tools/ant/build.xml" />
87 92
88 </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