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