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

Side by Side Diff: testing/android/native_test_apk.xml

Issue 11606010: Reduce verbosity of Android builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: -quiet Created 8 years 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 | « testing/android/native_test.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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="replaceme" default="debug" basedir="."> 8 <project name="replaceme" default="debug" basedir=".">
9 9
10 <description> 10 <description>
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 <copy file="AndroidManifest.xml" todir="${out.dir}/manifest"/> 67 <copy file="AndroidManifest.xml" todir="${out.dir}/manifest"/>
68 <property name="manifest.abs.file" location="${out.dir}/manifest/AndroidManife st.xml"/> 68 <property name="manifest.abs.file" location="${out.dir}/manifest/AndroidManife st.xml"/>
69 69
70 <target name="-post-compile"> 70 <target name="-post-compile">
71 <!-- copy gdbserver to main libs directory if building debug. --> 71 <!-- copy gdbserver to main libs directory if building debug. -->
72 <if> 72 <if>
73 <condition> 73 <condition>
74 <equals arg1="${build.target}" arg2="debug" /> 74 <equals arg1="${build.target}" arg2="debug" />
75 </condition> 75 </condition>
76 <then> 76 <then>
77 <echo message="Copying gdbserver to the apk to enable native debugging"/ >
78 <copy todir="${out.dir}/libs/${target.abi}"> 77 <copy todir="${out.dir}/libs/${target.abi}">
79 <path refid="native.libs.gdbserver"/> 78 <path refid="native.libs.gdbserver"/>
80 </copy> 79 </copy>
81 </then> 80 </then>
82 </if> 81 </if>
83 </target> 82 </target>
84 83
85 <import file="${CHROMIUM_SRC}/build/android/ant/sdk-targets.xml"/> 84 <import file="${CHROMIUM_SRC}/build/android/ant/sdk-targets.xml"/>
86 <import file="${sdk.dir}/tools/ant/build.xml" /> 85 <import file="${sdk.dir}/tools/ant/build.xml" />
87 86
88 </project> 87 </project>
OLDNEW
« no previous file with comments | « testing/android/native_test.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698