OLD | NEW |
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="ChromeNativeTests" 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 <property environment="env"/> | 14 <property environment="env"/> |
15 <property name="sdk.dir" location="${env.ANDROID_SDK_ROOT}"/> | 15 <property name="sdk.dir" location="${env.ANDROID_SDK_ROOT}"/> |
16 <property name="sdk.version" value="${env.ANDROID_SDK_VERSION}"/> | 16 <property name="sdk.version" value="${env.ANDROID_SDK_VERSION}"/> |
17 <property name="src" location="."/> | 17 <property name="src" location="."/> |
18 | 18 |
(...skipping 27 matching lines...) Expand all Loading... |
46 </target> | 46 </target> |
47 | 47 |
48 <property name="out.dir" location="${PRODUCT_DIR}/replaceme_apk"/> | 48 <property name="out.dir" location="${PRODUCT_DIR}/replaceme_apk"/> |
49 | 49 |
50 <!-- TODO(jrg): should I make this directory specific to the apk? --> | 50 <!-- TODO(jrg): should I make this directory specific to the apk? --> |
51 <property name="gen.absolute.dir" value="${out.dir}/gen"/> | 51 <property name="gen.absolute.dir" value="${out.dir}/gen"/> |
52 | 52 |
53 <import file="${sdk.dir}/tools/ant/build.xml" /> | 53 <import file="${sdk.dir}/tools/ant/build.xml" /> |
54 | 54 |
55 </project> | 55 </project> |
OLD | NEW |