blob: 0cf01ee8aa46d2288f7b9eb8363a905fc50f2a2e [file] [log] [blame]
jat@google.com134be542009-08-03 15:30:11 +00001<project name="firefox" default="build" basedir=".">
2 <property name="plugin.root" value="firefox" />
3 <import file="../common.ant.xml" />
4
5 <target name="build" description="Copy compiled plugin to the output folder">
6 <mkdir dir="${gwt.build.out}/plugins" />
7 <mkdir dir="${gwt.build.out}/plugins/firefox" />
8 <copy todir="${gwt.build.out}/plugins/firefox">
9 <fileset file="prebuilt/oophm.xpi" />
10 </copy>
11 </target>
12
13 <target name="test" description="Run any tests">
14 </target>
15
16 <target name="checkstyle" description="Static style analysis">
17 </target>
18</project>