Converted vilya to AscTask using mkgroups approach

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@609 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Jamie Doornbos
2008-05-30 06:29:36 +00:00
parent a133c7c693
commit fd37fb8138
5 changed files with 68 additions and 23 deletions
+7 -8
View File
@@ -221,7 +221,7 @@
classpathref="classpath"/></not> classpathref="classpath"/></not>
<uptodate targetfile="${deploy.dir}/${lib.name}-abc.abc"> <uptodate targetfile="${deploy.dir}/${lib.name}-abc.abc">
<srcfiles dir="src/as" includes="**/*.as"/> <srcfiles dir="src/as" includes="**/*.as"/>
<srcfiles dir="etc" includes="asc-files.txt"/> <srcfiles dir="etc" includes="asc-files-*.txt"/>
<srcfiles dir="${deploy.dir}/lib" includes="*.abc"/> <srcfiles dir="${deploy.dir}/lib" includes="*.abc"/>
</uptodate> </uptodate>
</or></condition> </or></condition>
@@ -229,19 +229,18 @@
<!-- builds our thane library --> <!-- builds our thane library -->
<target name="abclib" unless="no_build_abclib" depends="checkabclib"> <target name="abclib" unless="no_build_abclib" depends="checkabclib">
<taskdef name="asc" classname="flex.ant.AscLibTask" classpathref="classpath"/> <taskdef name="asc" classname="flex.ant.AscTask" classpathref="classpath"/>
<dirname property="abs.deploy.dir" file="${deploy.dir}/somefile.txt"/> <asc as3="true" strict="true" classpathref="classpath" use="AS3">
<asc as3="true" strict="true" classpathref="classpath"
outdir="${abs.deploy.dir}" out="${lib.name}-abc">
<import dir="${deploy.dir}/lib"> <import dir="${deploy.dir}/lib">
<include name="builtin.abc"/> <include name="builtin.abc"/>
<include name="thane.abc"/> <include name="thane.abc"/>
<include name="narya-abc.abc"/> <include name="narya-abc.abc"/>
</import> </import>
<filespec dir="src/as"> <in dir="src/as"><includesfile name="etc/asc-files-00.txt"/></in>
<includesfile name="etc/asc-files.txt"/> <in dir="src/as"><includesfile name="etc/asc-files-01.txt"/></in>
</filespec> <filespec dir="etc" includes="empty.as"/>
</asc> </asc>
<move overwrite="true" file="etc/empty.abc" tofile="${deploy.dir}/${lib.name}-abc.abc"/>
</target> </target>
<!-- builds the javadoc documentation --> <!-- builds the javadoc documentation -->
+2
View File
@@ -0,0 +1,2 @@
com/threerings/parlor/data/Parameter.as
com/threerings/parlor/game/client/GameControllerDelegate.as
+31
View File
@@ -0,0 +1,31 @@
com/threerings/parlor/client/GameReadyObserver.as
com/threerings/parlor/client/Invitation.as
com/threerings/parlor/client/InvitationHandler.as
com/threerings/parlor/client/InvitationResponseObserver.as
com/threerings/parlor/client/ParlorDecoder.as
com/threerings/parlor/client/ParlorDirector.as
com/threerings/parlor/client/ParlorReceiver.as
com/threerings/parlor/client/ParlorService.as
com/threerings/parlor/client/ParlorService_InviteListener.as
com/threerings/parlor/client/TableConfigurator.as
com/threerings/parlor/client/TableService.as
com/threerings/parlor/data/ChoiceParameter.as
com/threerings/parlor/data/ParlorCodes.as
com/threerings/parlor/data/ParlorMarshaller.as
com/threerings/parlor/data/ParlorMarshaller_InviteMarshaller.as
com/threerings/parlor/data/RangeParameter.as
com/threerings/parlor/data/Table.as
com/threerings/parlor/data/TableConfig.as
com/threerings/parlor/data/TableLobbyObject.as
com/threerings/parlor/data/TableMarshaller.as
com/threerings/parlor/data/ToggleParameter.as
com/threerings/parlor/game/client/GameConfigurator.as
com/threerings/parlor/game/client/GameController.as
com/threerings/parlor/game/data/GameAI.as
com/threerings/parlor/game/data/GameCodes.as
com/threerings/parlor/game/data/GameConfig.as
com/threerings/parlor/game/data/GameObject.as
com/threerings/parlor/turn/client/TurnGameController.as
com/threerings/parlor/turn/client/TurnGameControllerDelegate.as
com/threerings/parlor/turn/data/TurnGameObject.as
com/threerings/parlor/util/ParlorContext.as
+28 -15
View File
@@ -1,20 +1,33 @@
com/threerings/parlor/data/*.as com/threerings/parlor/client/GameReadyObserver.as
com/threerings/parlor/util/*.as com/threerings/parlor/client/Invitation.as
com/threerings/parlor/game/data/*.as com/threerings/parlor/client/InvitationHandler.as
com/threerings/parlor/game/client/GameConfigurator.as com/threerings/parlor/client/InvitationResponseObserver.as
com/threerings/parlor/game/client/GameController.as com/threerings/parlor/client/ParlorDecoder.as
com/threerings/parlor/game/client/GameControllerDelegate.as com/threerings/parlor/client/ParlorDirector.as
com/threerings/parlor/client/TableService.as com/threerings/parlor/client/ParlorReceiver.as
com/threerings/parlor/client/ParlorService.as com/threerings/parlor/client/ParlorService.as
com/threerings/parlor/client/ParlorService_InviteListener.as com/threerings/parlor/client/ParlorService_InviteListener.as
com/threerings/parlor/client/TableConfigurator.as com/threerings/parlor/client/TableConfigurator.as
com/threerings/parlor/client/GameReadyObserver.as com/threerings/parlor/client/TableService.as
com/threerings/parlor/client/Invitation.as com/threerings/parlor/data/ChoiceParameter.as
com/threerings/parlor/client/InvitationResponseObserver.as com/threerings/parlor/data/Parameter.as
com/threerings/parlor/client/ParlorDirector.as com/threerings/parlor/data/ParlorCodes.as
com/threerings/parlor/client/ParlorReceiver.as com/threerings/parlor/data/ParlorMarshaller.as
com/threerings/parlor/client/ParlorDecoder.as com/threerings/parlor/data/ParlorMarshaller_InviteMarshaller.as
com/threerings/parlor/client/InvitationHandler.as com/threerings/parlor/data/RangeParameter.as
com/threerings/parlor/turn/data/TurnGameObject.as com/threerings/parlor/data/Table.as
com/threerings/parlor/data/TableConfig.as
com/threerings/parlor/data/TableLobbyObject.as
com/threerings/parlor/data/TableMarshaller.as
com/threerings/parlor/data/ToggleParameter.as
com/threerings/parlor/game/client/GameConfigurator.as
com/threerings/parlor/game/client/GameController.as
com/threerings/parlor/game/client/GameControllerDelegate.as
com/threerings/parlor/game/data/GameAI.as
com/threerings/parlor/game/data/GameCodes.as
com/threerings/parlor/game/data/GameConfig.as
com/threerings/parlor/game/data/GameObject.as
com/threerings/parlor/turn/client/TurnGameController.as com/threerings/parlor/turn/client/TurnGameController.as
com/threerings/parlor/turn/client/TurnGameControllerDelegate.as com/threerings/parlor/turn/client/TurnGameControllerDelegate.as
com/threerings/parlor/turn/data/TurnGameObject.as
com/threerings/parlor/util/ParlorContext.as
View File