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

Side by Side Diff: dart/editor/tools/features/com.google.dart.tools.deploy.feature_releng/build_rcp.xml

Issue 363243002: Version 1.5.3 (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.5/
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « dart/editor/build/build.py ('k') | dart/runtime/vm/class_finalizer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 This build script will build the Dart RCP and Dart update site. 2 This build script will build the Dart RCP and Dart update site.
3 3
4 This script will setup the PDE build structure and then call into the PDE 4 This script will setup the PDE build structure and then call into the PDE
5 build system. The PDE build system has to run under Eclipse. 5 build system. The PDE build system has to run under Eclipse.
6 --> 6 -->
7 <project name="build_dart" default="build_rcp"> 7 <project name="build_dart" default="build_rcp">
8 8
9 <import file="build-common.xml" /> 9 <import file="build-common.xml" />
10 10
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 </target> 234 </target>
235 235
236 <target name="buildMobile"> 236 <target name="buildMobile">
237 <!-- create the android directory --> 237 <!-- create the android directory -->
238 <property name="android.out.dir" value="${build.stage.include.di r}/android" /> 238 <property name="android.out.dir" value="${build.stage.include.di r}/android" />
239 239
240 <!-- delete old apk --> 240 <!-- delete old apk -->
241 <delete dir="${android.out.dir}"/> 241 <delete dir="${android.out.dir}"/>
242 242
243 <copy todir="${android.out.dir}"> 243 <copy todir="${android.out.dir}">
244 <fileset dir="${build.source.root}/third_party/android_c ontent_shell">
245 <include name="*.apk"/>
246 </fileset>
247 <fileset dir="${build.source.root}/editor/android"> 244 <fileset dir="${build.source.root}/editor/android">
248 <include name="*.apk"/> 245 <include name="*.apk"/>
249 </fileset> 246 </fileset>
250 </copy> 247 </copy>
251 248
252 <copy todir="${android.out.dir}/adb"> 249 <copy todir="${android.out.dir}/adb">
253 <fileset dir="${build.source.root}/third_party/android_a db/1.0.31"/> 250 <fileset dir="${build.source.root}/third_party/android_a db/1.0.31"/>
254 </copy> 251 </copy>
255 </target> 252 </target>
256 253
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 }</echo> 496 }</echo>
500 </target> 497 </target>
501 498
502 <!-- - - - - - - - - - - - - - - - - - 499 <!-- - - - - - - - - - - - - - - - - -
503 target: doDeploy_rcp 500 target: doDeploy_rcp
504 - - - - - - - - - - - - - - - - - --> 501 - - - - - - - - - - - - - - - - - -->
505 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_ rcp"> 502 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_ rcp">
506 </target> 503 </target>
507 504
508 </project> 505 </project>
OLDNEW
« no previous file with comments | « dart/editor/build/build.py ('k') | dart/runtime/vm/class_finalizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698