The next example will only produce output for Internet Explorer.
<set-property name="user.agent" values="ie6"/>
Is there an option to compile only for two browsers. We only need
Internet Explorer and Firefox.
We want this for speeding up the compiler.
Thanx
HvM
Did you ever figure this out? I'd prefer to only do IE and Firefox, as
well.
Thanks
Ben
To do that you can include your own version of com/google/gwt/user/
UserAgent.gwt.xml ( http://google-web-toolkit.googlecode.com/svn/trunk/user/src/com/google/gwt/user/UserAgent.gwt.xml)
and change only this line:
<define-property name="user.agent"
values="ie6,gecko,gecko1_8,safari,opera"/>
This works fine, but like I said is a bit more cumbersome since you
have to include your own com/google/ directory and reproduce the whole
file.
I haven't found another better way, if there is one I would sure like
to know what it is.