OLD | NEW |
1 <!-- | 1 <!-- |
2 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 --> | 5 --> |
6 <project default="error"> | 6 <project default="error"> |
7 <property name="ant.project.name" value="${APK_NAME}"/> | 7 <property name="ant.project.name" value="${APK_NAME}"/> |
8 <!-- | 8 <!-- |
9 Gyp will pass CONFIGURATION_NAME as the target for ant to build. These targe
ts will call the | 9 Gyp will pass CONFIGURATION_NAME as the target for ant to build. These targe
ts will call the |
10 appropriate sdk tools target. | 10 appropriate sdk tools target. |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 <!-- Classpath for javac --> | 78 <!-- Classpath for javac --> |
79 <path id="javac.custom.classpath"> | 79 <path id="javac.custom.classpath"> |
80 <filelist files="${INPUT_JARS_PATHS}"/> | 80 <filelist files="${INPUT_JARS_PATHS}"/> |
81 </path> | 81 </path> |
82 | 82 |
83 <path id="out.dex.jar.input.ref"> | 83 <path id="out.dex.jar.input.ref"> |
84 <path refid="javac.custom.classpath"/> | 84 <path refid="javac.custom.classpath"/> |
85 </path> | 85 </path> |
86 | 86 |
87 <import file="sdk-targets.xml"/> | 87 <import file="sdk-targets.xml"/> |
88 <import file="${sdk.dir}/tools/ant/build.xml"/> | 88 <import file="apk-build.xml"/> |
89 </project> | 89 </project> |
90 | 90 |
OLD | NEW |