| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |