distribution of webclient. Next step is to get mozilla 1.7 building on my machine, then get webclient to compile with it, then do a 2.0a2 release. M build.xml - incorporate re-added dist directory A dist/build.xml - create a binary distribution A dist/webclient-dist.xml - build.xml file for the test browser in the distribution git-svn-id: svn://10.0.0.236/trunk@162967 18797224-902f-48f8-a5cc-f745e15eee43
31 lines
806 B
XML
31 lines
806 B
XML
<project name="Webclient Test Browser" default="main" basedir=".">
|
|
|
|
<property environment="myenv" />
|
|
|
|
|
|
<target name="main">
|
|
|
|
<condition property="PATH_SEP" value=";">
|
|
<and>
|
|
<os family="windows" />
|
|
</and>
|
|
</condition>
|
|
|
|
<condition property="PATH_SEP" value=":">
|
|
<and>
|
|
<os family="unix" />
|
|
</and>
|
|
</condition>
|
|
|
|
<java classname="org.mozilla.webclient.test.TestBrowser"
|
|
classpath="${basedir}/webclient.jar" fork="true">
|
|
<jvmarg value="-Djava.library.path=${basedir}${PATH_SEP}${basedir}/components"/>
|
|
<jvmarg value="-DNSPR_LOG_MODULES=${myenv.NSPR_LOG_MODULES}"/>
|
|
<jvmarg value="-DNSPR_LOG_FILE=${myenv.NSPR_LOG_FILE}"/>
|
|
<jvmarg value="-DBROWSER_BIN_DIR=${basedir}"/>
|
|
</java>
|
|
|
|
</target>
|
|
|
|
</project>
|