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

Side by Side Diff: editor/tools/plugins/com.google.dart.tools.core/plugin.xml

Issue 11415253: Refactored analysis into a build participant (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years 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 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <?eclipse version="3.2"?> 2 <?eclipse version="3.2"?>
3 <plugin> 3 <plugin>
4 <extension-point id="workingCopyOwner" name="Working Copy Owner" schema="sche ma/workingCopyOwner.exsd"/> 4 <extension-point id="workingCopyOwner" name="Working Copy Owner" schema="sche ma/workingCopyOwner.exsd"/>
5 <extension-point id="buildParticipants" name="Build Participants" schema="sch ema/buildParticipants.exsd"/> 5 <extension-point id="buildParticipants" name="Build Participants" schema="sch ema/buildParticipants.exsd"/>
6 6
7 <extension 7 <extension
8 point="org.eclipse.core.resources.natures" 8 point="org.eclipse.core.resources.natures"
9 id="dartNature" 9 id="dartNature"
10 name="%dart.nature.name"> 10 name="%dart.nature.name">
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 <buildParticipant 107 <buildParticipant
108 class="com.google.dart.tools.core.internal.builder.BuildDartPartici pant" 108 class="com.google.dart.tools.core.internal.builder.BuildDartPartici pant"
109 id="com.google.dart.tools.core.buildParticipant.buildDart" 109 id="com.google.dart.tools.core.buildParticipant.buildDart"
110 priority="40"> 110 priority="40">
111 </buildParticipant> 111 </buildParticipant>
112 <buildParticipant 112 <buildParticipant
113 class="com.google.dart.tools.core.html.HtmlBuildParticipant" 113 class="com.google.dart.tools.core.html.HtmlBuildParticipant"
114 id="com.google.dart.tools.core.buildParticipant.html" 114 id="com.google.dart.tools.core.buildParticipant.html"
115 priority="70"> 115 priority="70">
116 </buildParticipant> 116 </buildParticipant>
117 <buildParticipant
118 class="com.google.dart.tools.core.internal.builder.AnalysisServerPa rticipant"
119 id="com.google.dart.tools.core.buildParticipant.analysis.server"
120 priority="80">
121 </buildParticipant>
122 <buildParticipant
123 class="com.google.dart.tools.core.internal.builder.AnalysisEnginePa rticipant"
124 id="com.google.dart.tools.core.buildParticipant.analysis.engine"
125 priority="80">
126 </buildParticipant>
117 </extension> 127 </extension>
118 128
119 </plugin> 129 </plugin>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698