| OLD | NEW |
| (Empty) |
| 1 <!-- | |
| 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 | |
| 4 found in the LICENSE file. | |
| 5 --> | |
| 6 <project default="error"> | |
| 7 <property name="ant.project.name" value="${APK_NAME}"/> | |
| 8 <!-- | |
| 9 Gyp will pass CONFIGURATION_NAME as the target for ant to build. These targe
ts will call the | |
| 10 appropriate sdk tools target. | |
| 11 --> | |
| 12 <target name="Debug" depends="debug"/> | |
| 13 <target name="Release" depends="release"/> | |
| 14 <target name="error"> | |
| 15 <fail message="CONFIGURATION_NAME should be passed as a target to ant."/> | |
| 16 </target> | |
| 17 | |
| 18 <description> | |
| 19 Building ${ant.project.name}.apk | |
| 20 </description> | |
| 21 <import file="common.xml"/> | |
| 22 | |
| 23 <!-- TODO(cjhopman): Remove this property when all gyp files define the CHROMI
UM_SRC property. --> | |
| 24 <property name="CHROMIUM_SRC" value="${PRODUCT_DIR}/../.." /> | |
| 25 | |
| 26 <import file="apk-build.xml"/> | |
| 27 </project> | |
| 28 | |
| OLD | NEW |