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

Side by Side Diff: build/android/ant/chromium-apk.xml

Issue 12963009: Split apk-build.xml into 3 steps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 7 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
« no previous file with comments | « build/android/ant/apk-package.xml ('k') | build/android/ant/create-test-jar.js » ('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 <!--
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
OLDNEW
« no previous file with comments | « build/android/ant/apk-package.xml ('k') | build/android/ant/create-test-jar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698