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

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

Issue 10689140: Version details go JSON (dartbug.com/3196). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 | « no previous file | editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/internal/update/TestAll.java » ('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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 target: package_rcp 447 target: package_rcp
448 - - - - - - - - - - - - - - - - - --> 448 - - - - - - - - - - - - - - - - - -->
449 <target name="package_rcp" depends="init, setupBuild, doBuild_rcp" > 449 <target name="package_rcp" depends="init, setupBuild, doBuild_rcp" >
450 <property file="build.properties" prefix="pde." /> 450 <property file="build.properties" prefix="pde." />
451 <echo message="copying zip files from ${build.stage}/${pde.buildLabel} t o ${build.out}"/> 451 <echo message="copying zip files from ${build.stage}/${pde.buildLabel} t o ${build.out}"/>
452 <copy todir="${build.out}" verbose="true"> 452 <copy todir="${build.out}" verbose="true">
453 <fileset dir="${build.stage}/${pde.buildLabel}"> 453 <fileset dir="${build.stage}/${pde.buildLabel}">
454 <include name="*.zip" /> 454 <include name="*.zip" />
455 </fileset> 455 </fileset>
456 </copy> 456 </copy>
457 <!--
458 {
459 "revision" : "9826",
460 "version" : "0.0.1_v2012070961811",
461 "date" : "2012-07-09"
462 }
463 -->
457 <echo message="creating build VERSION file"/> 464 <echo message="creating build VERSION file"/>
458 <echo file="${build.out}/VERSION" message="${build.revision}${line.separ ator}"/> 465 <!-- TODO(pquitslund): add version string info -->
466 <echo file="${build.out}/VERSION">{
467 "revision": "${build.revision}",
468 "version" : "",
469 "date" : "${build.date}"
470 }</echo>
459 </target> 471 </target>
460 472
461 <!-- - - - - - - - - - - - - - - - - - 473 <!-- - - - - - - - - - - - - - - - - -
462 target: doDeploy_rcp 474 target: doDeploy_rcp
463 - - - - - - - - - - - - - - - - - --> 475 - - - - - - - - - - - - - - - - - -->
464 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_ rcp"> 476 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_ rcp">
465 </target> 477 </target>
466 478
467 </project> 479 </project>
OLDNEW
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.tools.ui_test/src/com/google/dart/tools/ui/internal/update/TestAll.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698