| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 #import('dart:nativewrappers'); | 279 #import('dart:nativewrappers'); |
| 280 | 280 |
| 281 #source('buffer_list.dart'); | 281 #source('buffer_list.dart'); |
| 282 #source('chunked_stream.dart'); | 282 #source('chunked_stream.dart'); |
| 283 #source('directory.dart'); | 283 #source('directory.dart'); |
| 284 #source('directory_impl.dart'); | 284 #source('directory_impl.dart'); |
| 285 #source('file.dart'); | 285 #source('file.dart'); |
| 286 #source('file_impl.dart'); | 286 #source('file_impl.dart'); |
| 287 #source('input_stream.dart'); | 287 #source('input_stream.dart'); |
| 288 #source('list_stream.dart'); | 288 #source('list_stream.dart'); |
| 289 #source('list_stream_impl.dart'); |
| 289 #source('output_stream.dart'); | 290 #source('output_stream.dart'); |
| 290 #source('platform.dart'); | 291 #source('platform.dart'); |
| 291 #source('platform_impl.dart'); | 292 #source('platform_impl.dart'); |
| 292 #source('process.dart'); | 293 #source('process.dart'); |
| 293 #source('process_impl.dart'); | 294 #source('process_impl.dart'); |
| 294 #source('socket.dart'); | 295 #source('socket.dart'); |
| 295 #source('socket_impl.dart'); | 296 #source('socket_impl.dart'); |
| 296 #source('socket_stream.dart'); | 297 #source('socket_stream.dart'); |
| 298 #source('socket_stream_impl.dart'); |
| 297 #source('stdio.dart'); | 299 #source('stdio.dart'); |
| 298 #source('stream_util.dart'); | 300 #source('stream_util.dart'); |
| 299 #source('string_stream.dart'); | 301 #source('string_stream.dart'); |
| 300 #source('timer.dart'); | 302 #source('timer.dart'); |
| 301 #source('timer_impl.dart'); | 303 #source('timer_impl.dart'); |
| 302 | 304 |
| 303 // This is a hack to work-around the wrong version of coreimpl being | 305 // This is a hack to work-around the wrong version of coreimpl being |
| 304 // used for the VM configuration. | 306 // used for the VM configuration. |
| 305 class ObjectArray<T> { } | 307 class ObjectArray<T> { } |
| 306 ]]></echo> | 308 ]]></echo> |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 </copy> | 632 </copy> |
| 631 </target> | 633 </target> |
| 632 | 634 |
| 633 <!-- - - - - - - - - - - - - - - - - - | 635 <!-- - - - - - - - - - - - - - - - - - |
| 634 target: doDeploy_rcp | 636 target: doDeploy_rcp |
| 635 - - - - - - - - - - - - - - - - - --> | 637 - - - - - - - - - - - - - - - - - --> |
| 636 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> | 638 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> |
| 637 </target> | 639 </target> |
| 638 | 640 |
| 639 </project> | 641 </project> |
| OLD | NEW |