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

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

Issue 9852004: Revert 128679 - Speculative revert. xcodebuilders hosed between r128678 - 128680 in GYP phse, this … (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
« no previous file with comments | « base/test/android/native_test.gyp ('k') | base/test/android/native_test_launcher.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="source.dir" location="java"/>
11 <property name="target" value="android-14"/>
12
13 <!-- We expect PRODUCT_DIR to be set like the gyp var
14 (e.g. $ROOT/out/Debug) -->
15 <!-- TODO(jrg): ideally we need this to run before -build-setup, where
16 directories are made based on this variable. -->
17 <target name="-pre-build">
18 <if>
19 <condition>
20 <isset property="PRODUCT_DIR" />
21 </condition>
22 <else>
23 <fail message="PRODUCT_DIR env var not set?" />
24 </else>
25 </if>
26 </target>
27
28 <property name="out.dir" location="${PRODUCT_DIR}"/>
29
30 <!-- TODO(jrg): should I make these directories specific to the apk? -->
31 <property name="resource.absolute.dir" value="${out.dir}/res"/>
32 <property name="gen.absolute.dir" value="${out.dir}/gen"/>
33 <property name="jar.libs.dir" value="${out.dir}/java/libs"/>
34
35 <import file="${sdk.dir}/tools/ant/build.xml" />
36
37 </project>
OLDNEW
« no previous file with comments | « base/test/android/native_test.gyp ('k') | base/test/android/native_test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698