| 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 <target name="installSdk" unless="build.dart.sdk" depends="setOS"> | 239 <target name="installSdk" unless="build.dart.sdk" depends="setOS"> |
| 240 <echoProperty propertyname="build.dart.sdk"/> | 240 <echoProperty propertyname="build.dart.sdk"/> |
| 241 | 241 |
| 242 <get src="http://gsdview.appspot.com/dart-editor-archive-continuous/late
st/dartsdk-${osfamily}-32.zip" | 242 <get src="http://gsdview.appspot.com/dart-editor-archive-continuous/late
st/dartsdk-${osfamily}-32.zip" |
| 243 dest="${build.dart.sdk.zip}" | 243 dest="${build.dart.sdk.zip}" |
| 244 usetimestamp="true" /> | 244 usetimestamp="true" /> |
| 245 | 245 |
| 246 <echo message="unzipping ${build.dart.sdk.zip} to ${build.stage.include.
dir}"/> | 246 <echo message="unzipping ${build.dart.sdk.zip} to ${build.stage.include.
dir}"/> |
| 247 <mkdir dir="${build.stage.include.dir}" /> | 247 <mkdir dir="${build.stage.include.dir}" /> |
| 248 <delete dir="${build.stage.include.dir}/dart-sdk"/> | 248 <delete dir="${build.stage.include.dir}/dart-sdk"/> |
| 249 <exec executable="unzip" dir="${build.stage.include.dir}"> | 249 <exec executable="${unzip.tool}" dir="${build.stage.include.dir}"> |
| 250 <arg value="-q"/> | 250 <arg value="${unzip.arg}"/> |
| 251 <arg value="${build.dart.sdk.zip}"/> | 251 <arg value="${build.dart.sdk.zip}"/> |
| 252 </exec> | 252 </exec> |
| 253 </target> | 253 </target> |
| 254 | 254 |
| 255 <!-- - - - - - - - - - - - - - - - - - | 255 <!-- - - - - - - - - - - - - - - - - - |
| 256 target: setupDevWorkspace | 256 target: setupDevWorkspace |
| 257 - - - - - - - - - - - - - - - - - --> | 257 - - - - - - - - - - - - - - - - - --> |
| 258 <target name="setupDevWorkspace" | 258 <target name="setupDevWorkspace" |
| 259 depends="initDevWorkspace, buildSamples, installSdk"> | 259 depends="initDevWorkspace, buildSamples, installSdk"> |
| 260 </target> | 260 </target> |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 }</echo> | 458 }</echo> |
| 459 </target> | 459 </target> |
| 460 | 460 |
| 461 <!-- - - - - - - - - - - - - - - - - - | 461 <!-- - - - - - - - - - - - - - - - - - |
| 462 target: doDeploy_rcp | 462 target: doDeploy_rcp |
| 463 - - - - - - - - - - - - - - - - - --> | 463 - - - - - - - - - - - - - - - - - --> |
| 464 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> | 464 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> |
| 465 </target> | 465 </target> |
| 466 | 466 |
| 467 </project> | 467 </project> |
| OLD | NEW |