Added the Expenses app to the list of GWT samples, and modified each sample's build.xml file to set its source path

Review at http://gwt-code-reviews.appspot.com/752803

Review by: rice@google.com

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@8571 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/samples/build.xml b/samples/build.xml
index 929c8d1..4929690 100644
--- a/samples/build.xml
+++ b/samples/build.xml
@@ -14,6 +14,10 @@
     <gwt.ant dir="dynatablerf" />
   </target>
 
+  <target name="expenses" description="Build expenses">
+    <gwt.ant dir="expenses" />
+  </target>
+
   <target name="hello" description="Build hello">
     <gwt.ant dir="hello" />
   </target>
@@ -32,6 +36,7 @@
 
   <target name="-do" description="Run all subprojects" >
     <antcall target="dynatable" />
+    <antcall target="expenses" />
     <antcall target="hello" />
     <antcall target="json" />
     <antcall target="mail" />