This change-bundle adds build.xml rules that produce a binary
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
This commit is contained in:
30
mozilla/java/dist/webclient-dist.xml
vendored
Normal file
30
mozilla/java/dist/webclient-dist.xml
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user