| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 <arg value="-q"/> | 249 <arg value="-q"/> |
| 250 <arg value="${build.dart.sdk.zip}"/> | 250 <arg value="${build.dart.sdk.zip}"/> |
| 251 </exec> | 251 </exec> |
| 252 </target> | 252 </target> |
| 253 | 253 |
| 254 <!-- - - - - - - - - - - - - - - - - - - | 254 <!-- - - - - - - - - - - - - - - - - - - |
| 255 target: installSdk | 255 target: installSdk |
| 256 Install the sdk zip if build.os is set | 256 Install the sdk zip if build.os is set |
| 257 - - - - - - - - - - - - - - - - - --> | 257 - - - - - - - - - - - - - - - - - --> |
| 258 <target name="installSdk" depends="installSdkInNonWindows, installSdkInWindo
ws"> | 258 <target name="installSdk" depends="installSdkInNonWindows, installSdkInWindo
ws"> |
| 259 <copy file="${build.source}/tools/plugins/com.google.dart.tools.core/imp
ort.config" |
| 260 todir="${build.stage.include.dir}/dart-sdk/lib" /> |
| 259 </target> | 261 </target> |
| 260 | 262 |
| 261 <!-- - - - - - - - - - - - - - - - - - | 263 <!-- - - - - - - - - - - - - - - - - - |
| 262 target: setupDevWorkspace | 264 target: setupDevWorkspace |
| 263 - - - - - - - - - - - - - - - - - --> | 265 - - - - - - - - - - - - - - - - - --> |
| 264 <target name="setupDevWorkspace" | 266 <target name="setupDevWorkspace" |
| 265 depends="initDevWorkspace, buildSamples, installSdk"> | 267 depends="initDevWorkspace, buildSamples, installSdk"> |
| 266 </target> | 268 </target> |
| 267 | 269 |
| 268 <!-- - - - - - - - - - - - - - - - - - | 270 <!-- - - - - - - - - - - - - - - - - - |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 </copy> | 437 </copy> |
| 436 </target> | 438 </target> |
| 437 | 439 |
| 438 <!-- - - - - - - - - - - - - - - - - - | 440 <!-- - - - - - - - - - - - - - - - - - |
| 439 target: doDeploy_rcp | 441 target: doDeploy_rcp |
| 440 - - - - - - - - - - - - - - - - - --> | 442 - - - - - - - - - - - - - - - - - --> |
| 441 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> | 443 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> |
| 442 </target> | 444 </target> |
| 443 | 445 |
| 444 </project> | 446 </project> |
| OLD | NEW |