I answered a question about using GWT to develop mobile apps, but it was deleted. The information can not be found in other places, and there was no explanation as to why it was deleted. Seems like a very unfriendly community, I don't think I'll ever try to answer anything on Stack Overflow again.
If you are used to developing with the MVP pattern or want to make a mobile version of an existing app, I would suggest to use m-gwt http://www.m-gwt.com/ M-gwt works well with GWT best practices, such as MVP and tries to only extend the core of GWT with necessary functionality for mobiles.
If you are used to developing iPhone apps, you can have a look at nextinterfaces.com. However, next interfaces uses it's own MVC system, so it doesn't work well with MVP or for making mobile versions of existing GWT sites.
Then there is also GwtMobile code.google.com/p/gwtmobile/ GwtMobile is similar to m-gwt, but uses it's own Page system instead of the built-in GWT Places, so its also more difficult to use together with existing GWT code. GwtMobile has some nice widgets that can also be used with other frameworks. It also has its own persistence framework.
M-gwt and GwtMobile both have their own Phonegap binding so that you can upload the apps to Apple app store and Android market.
Gwt-mobile-webkit is currently not so much about mobile as the only thing that is usable and not currently integrated in core GWT is the Database API. If you need Web SQL, then gwt-mobile-webkit Database API is your friend code.google.com/p/gwt-mobile-webkit/
If you want very simple no-frills widgets and no animations, but compatibility with stone age browsers, then have a look at informagen.org/mobile-gwt/ The code is hidden away at informagen.org/maven/org/informagen/gwt/mobile-gwt/1.1.1/
I also answered another question about suggestions how to make a mobile version of an existing GWT app, this was also deleted:
The mobile framework for GWT that currently is most close to core GWT is m-gwt. M-gwt has mobile versions of many of the core GWT widgets, so it's useful easily making a mobile version of existing GWT apps.
There are other mobile frameworks, but converting an existing app will be more work because most of them use their own custom way of transitioning between pages, so you'd have to do more rewriting. For example in GwtMobile you use this.goTo(newPage) instead of standard activities and places.