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

Side by Side Diff: base/test/android/native_test_apk.xml

Issue 9834037: apk-based test runner work. Not enabled yet. This CL is a combination of upstreaming, ndk/ant-ifi… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project name="ChromeNativeTests" default="debug" basedir=".">
3
4 <description>
5 Building native test runner ChromeNativeTests.apk
6 </description>
7
8 <property environment="env"/>
9 <property name="sdk.dir" location="${env.ANDROID_SDK_ROOT}"/>
10 <property name="sdk.version" value="${env.ANDROID_SDK_VERSION}"/>
11 <property name="source.dir" location="java"/>
12 <property name="target" value="android-8"/>
Peter Beverloo 2012/03/23 11:15:13 Does this correspond to the used platform? That'd
John Grabowski 2012/03/24 01:59:18 sdk.version removed target upped to -14
13
14 <!-- We expect PRODUCT_DIR to be set like the gyp var
15 (e.g. $ROOT/out/Debug) -->
16 <!-- TODO(jrg): ideally we need this to run before -build-setup, where
17 directories are made based on this variable. -->
18 <target name="-pre-build">
19 <if>
20 <condition>
21 <isset property="PRODUCT_DIR" />
22 </condition>
23 <else>
24 <fail message="PRODUCT_DIR env var not set?" />
25 </else>
26 </if>
27 </target>
28
29 <property name="out.dir" location="${PRODUCT_DIR}"/>
30
31 <!-- TODO(jrg): should I make these directories specific to the apk? -->
32 <property name="resource.absolute.dir" value="${out.dir}/res"/>
33 <property name="gen.absolute.dir" value="${out.dir}/gen"/>
34 <property name="jar.libs.dir" value="${out.dir}/java/libs"/>
35
36 <import file="${sdk.dir}/tools/ant/build.xml" />
37
38 </project>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698