| 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 <!-- create the android directory --> | 237 <!-- create the android directory --> |
| 238 <property name="android.out.dir" value="${build.stage.include.di
r}/android" /> | 238 <property name="android.out.dir" value="${build.stage.include.di
r}/android" /> |
| 239 | 239 |
| 240 <!-- delete old apk --> | 240 <!-- delete old apk --> |
| 241 <delete dir="${android.out.dir}"/> | 241 <delete dir="${android.out.dir}"/> |
| 242 | 242 |
| 243 <copy todir="${android.out.dir}"> | 243 <copy todir="${android.out.dir}"> |
| 244 <fileset dir="${build.source.root}/third_party/android_c
ontent_shell"> | 244 <fileset dir="${build.source.root}/third_party/android_c
ontent_shell"> |
| 245 <include name="*.apk"/> | 245 <include name="*.apk"/> |
| 246 </fileset> | 246 </fileset> |
| 247 <fileset dir="${build.source.root}/editor/android"> |
| 248 <include name="*.apk"/> |
| 249 </fileset> |
| 247 </copy> | 250 </copy> |
| 248 | 251 |
| 249 <copy todir="${android.out.dir}/adb"> | 252 <copy todir="${android.out.dir}/adb"> |
| 250 <fileset dir="${build.source.root}/third_party/android_a
db/1.0.31"/> | 253 <fileset dir="${build.source.root}/third_party/android_a
db/1.0.31"/> |
| 251 </copy> | 254 </copy> |
| 252 </target> | 255 </target> |
| 253 | 256 |
| 254 <!-- - - - - - - - - - - - - - - - - - - | 257 <!-- - - - - - - - - - - - - - - - - - - |
| 255 target: installSdk | 258 target: installSdk |
| 256 Install the sdk zip unless a path to an SDK exists - build.dart.sdk. | 259 Install the sdk zip unless a path to an SDK exists - build.dart.sdk. |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 }</echo> | 499 }</echo> |
| 497 </target> | 500 </target> |
| 498 | 501 |
| 499 <!-- - - - - - - - - - - - - - - - - - | 502 <!-- - - - - - - - - - - - - - - - - - |
| 500 target: doDeploy_rcp | 503 target: doDeploy_rcp |
| 501 - - - - - - - - - - - - - - - - - --> | 504 - - - - - - - - - - - - - - - - - --> |
| 502 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> | 505 <target name="doDeploy_rcp" depends="init, setupBuild, doBuild_rcp, package_
rcp"> |
| 503 </target> | 506 </target> |
| 504 | 507 |
| 505 </project> | 508 </project> |
| OLD | NEW |