M dist/build.xml

- Do not exclude Bookmarks, Prefs, and Profile from core source

M dist/mcp-test/src/test/java/cardemo/CarDemoTest.java

- sleep for 10 seconds after the initial load

M dist/netbeans/build.xml

- add the ability to compile the core source of the webclient library,
  should the user want to modify it.

M webclient/classes_spec/org/mozilla/mcp/MCP.java

- Correctly cause blockingLoad to block until the load completes.


git-svn-id: svn://10.0.0.236/trunk@221343 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2007-03-05 21:10:24 +00:00
parent e623156ce9
commit f2359edf57
4 changed files with 19 additions and 5 deletions

View File

@@ -328,10 +328,17 @@ ${so.prefix}xul.${so.extension}.
</macrodef>
</target>
<target name="compile.core.src" description="Builds the core webclient java sources. These sources are shipped precompiled in lib/webclient.jar. This target is included for convenience only, should you wish to modify and re-compile the webclient core library.">
<target name="compile.core.src" depends="-init-check">
<antcall target="compile">
<param name="src.dir" value="${basedir}/../src/main/java" />
</antcall>
<!-- set up the interface to implementation mapings -->
<mkdir dir="${build.classes.dir}/META-INF/services"/>
<echo file="${build.classes.dir}/META-INF/services/org.mozilla.webclient.WebclientFactory">org.mozilla.webclient.impl.WebclientFactoryImpl</echo>
<echo file="${build.classes.dir}/META-INF/services/org.mozilla.webclient.impl.WrapperFactory">org.mozilla.webclient.impl.wrapper_native.WrapperFactoryImpl</echo>
<move failonerror="false" file="${file.reference.webclient-2_0_a5.jar}"
tofile="${basedir}/../lib/outofdate-webclient_jar" />
</target>