| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 <copyDartLib name="core" dir="${build.tmp}/lib/core-dartc" libfile="core
lib.dart"/> | 248 <copyDartLib name="core" dir="${build.tmp}/lib/core-dartc" libfile="core
lib.dart"/> |
| 249 <copyDartLib name="coreimpl" dir="${build.tmp}/lib/core-dartc" libfile="
corelib_impl.dart"/> | 249 <copyDartLib name="coreimpl" dir="${build.tmp}/lib/core-dartc" libfile="
corelib_impl.dart"/> |
| 250 | 250 |
| 251 <!-- dart:dom --> | 251 <!-- dart:dom --> |
| 252 <copyDartLib name="dom" dir="${build.source.root}/client/dom"/> | 252 <copyDartLib name="dom" dir="${build.source.root}/client/dom"/> |
| 253 | 253 |
| 254 <!-- dart:html --> | 254 <!-- dart:html --> |
| 255 <copyDartLib name="html" dir="${build.source.root}/client/html"/> | 255 <copyDartLib name="html" dir="${build.source.root}/client/html"/> |
| 256 <copyDartLib name="htmlimpl" dir="${build.source.root}/client/html"/> | 256 <copyDartLib name="htmlimpl" dir="${build.source.root}/client/html"/> |
| 257 | 257 |
| 258 <!-- dart:json, dart:uri, dart:utf8 --> | 258 <!-- dart:json, dart:uri, dart:utf --> |
| 259 <copy todir="${libraries.out.dir}"> | 259 <copy todir="${libraries.out.dir}"> |
| 260 <fileset dir="${build.source.root}/lib" includes="**/*.dart"/> | 260 <fileset dir="${build.source.root}/lib" includes="**/*.dart"/> |
| 261 </copy> | 261 </copy> |
| 262 | 262 |
| 263 <!-- dart:builtin --> | 263 <!-- dart:builtin --> |
| 264 <copy todir="${libraries.out.dir}/builtin"> | 264 <copy todir="${libraries.out.dir}/builtin"> |
| 265 <fileset dir="${build.source.root}/runtime/bin" includes="builtin.da
rt"/> | 265 <fileset dir="${build.source.root}/runtime/bin" includes="builtin.da
rt"/> |
| 266 </copy> | 266 </copy> |
| 267 | 267 |
| 268 <!-- dart:nativewrappers --> | 268 <!-- dart:nativewrappers --> |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 </copy> | 605 </copy> |
| 606 </target> | 606 </target> |
| 607 | 607 |
| 608 <!-- - - - - - - - - - - - - - - - - - | 608 <!-- - - - - - - - - - - - - - - - - - |
| 609 target: doDeploy_rcp | 609 target: doDeploy_rcp |
| 610 - - - - - - - - - - - - - - - - - --> | 610 - - - - - - - - - - - - - - - - - --> |
| 611 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> | 611 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> |
| 612 </target> | 612 </target> |
| 613 | 613 |
| 614 </project> | 614 </project> |
| OLD | NEW |