Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: editor/tools/features/com.google.dart.tools.deploy.feature_releng/build_rcp.xml

Issue 9860009: Removes dartc reliance on its own libraries, now can be targeted at any implementation's libraries (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated 'configs' to be 'config' directory, updated addLib() to throw exception Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698