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

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

Issue 324323004: create an android.zip for editor andriod binaries (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 6 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 | « no previous file | tools/create_editor.py » ('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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 </copy> 471 </copy>
472 <runAntBuildInEclipse script="${pde.scripts.rcp}/productBuild.xml" eclip se="3.7" 472 <runAntBuildInEclipse script="${pde.scripts.rcp}/productBuild.xml" eclip se="3.7"
473 builddir="${build.stage.scripts}" /> 473 builddir="${build.stage.scripts}" />
474 </target> 474 </target>
475 475
476 <!-- - - - - - - - - - - - - - - - - - 476 <!-- - - - - - - - - - - - - - - - - -
477 target: package_rcp 477 target: package_rcp
478 - - - - - - - - - - - - - - - - - --> 478 - - - - - - - - - - - - - - - - - -->
479 <target name="package_rcp" depends="init, setupBuild, doBuild_rcp" > 479 <target name="package_rcp" depends="init, setupBuild, doBuild_rcp" >
480 <property file="build.properties" prefix="pde." /> 480 <property file="build.properties" prefix="pde." />
481
482 <zip destfile="${build.stage}/${pde.buildLabel}/android.zip"
483 basedir="${build.stage.include.dir}/android"/>
484
481 <echo message="copying zip files from ${build.stage}/${pde.buildLabel} t o ${build.out}"/> 485 <echo message="copying zip files from ${build.stage}/${pde.buildLabel} t o ${build.out}"/>
482 <copy todir="${build.out}" verbose="true"> 486 <copy todir="${build.out}" verbose="true">
483 <fileset dir="${build.stage}/${pde.buildLabel}"> 487 <fileset dir="${build.stage}/${pde.buildLabel}">
484 <include name="*.zip" /> 488 <include name="*.zip" />
485 </fileset> 489 </fileset>
486 </copy> 490 </copy>
487 <!-- 491 <!--
488 { 492 {
489 "revision" : "9826", 493 "revision" : "9826",
490 "version" : "0.1.2.0_r13602", 494 "version" : "0.1.2.0_r13602",
491 "date" : "2012-07-09" 495 "date" : "2012-07-09"
492 } 496 }
493 --> 497 -->
494 <echo message="creating build VERSION file"/> 498 <echo message="creating build VERSION file"/>
495 <echo file="${build.out}/VERSION">{ 499 <echo file="${build.out}/VERSION">{
496 "revision": "${build.revision}", 500 "revision": "${build.revision}",
497 "version" : "${dart.version.full}", 501 "version" : "${dart.version.full}",
498 "date" : "${build.date}" 502 "date" : "${build.date}"
499 }</echo> 503 }</echo>
500 </target> 504 </target>
501 505
502 <!-- - - - - - - - - - - - - - - - - - 506 <!-- - - - - - - - - - - - - - - - - -
503 target: doDeploy_rcp 507 target: doDeploy_rcp
504 - - - - - - - - - - - - - - - - - --> 508 - - - - - - - - - - - - - - - - - -->
505 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_ rcp"> 509 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_ rcp">
506 </target> 510 </target>
507 511
508 </project> 512 </project>
OLDNEW
« no previous file with comments | « no previous file | tools/create_editor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698