| 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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 </copy> | 506 </copy> |
| 507 | 507 |
| 508 <!-- Slider --> | 508 <!-- Slider --> |
| 509 <copy todir="${samples.out.dir}/slider"> | 509 <copy todir="${samples.out.dir}/slider"> |
| 510 <fileset dir="${build.source.root}/samples/slider"> | 510 <fileset dir="${build.source.root}/samples/slider"> |
| 511 </fileset> | 511 </fileset> |
| 512 </copy> | 512 </copy> |
| 513 | 513 |
| 514 <!-- Swarm --> | 514 <!-- Swarm --> |
| 515 <!-- copy todir="${samples.out.dir}/swarm"> | 515 <!-- copy todir="${samples.out.dir}/swarm"> |
| 516 <fileset dir="${build.source.root}/client/samples/swarm"> | 516 <fileset dir="${build.source.root}/samples/swarm"> |
| 517 </fileset> | 517 </fileset> |
| 518 </copy --> | 518 </copy --> |
| 519 | 519 |
| 520 <!-- Sunflower --> | 520 <!-- Sunflower --> |
| 521 <copy todir="${samples.out.dir}/sunflower"> | 521 <copy todir="${samples.out.dir}/sunflower"> |
| 522 <fileset dir="${build.source.root}/samples/sunflower"> | 522 <fileset dir="${build.source.root}/samples/sunflower"> |
| 523 </fileset> | 523 </fileset> |
| 524 </copy> | 524 </copy> |
| 525 | 525 |
| 526 <!-- Total --> | 526 <!-- Total --> |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 </copy> | 634 </copy> |
| 635 </target> | 635 </target> |
| 636 | 636 |
| 637 <!-- - - - - - - - - - - - - - - - - - | 637 <!-- - - - - - - - - - - - - - - - - - |
| 638 target: doDeploy_rcp | 638 target: doDeploy_rcp |
| 639 - - - - - - - - - - - - - - - - - --> | 639 - - - - - - - - - - - - - - - - - --> |
| 640 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> | 640 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> |
| 641 </target> | 641 </target> |
| 642 | 642 |
| 643 </project> | 643 </project> |
| OLD | NEW |