Fixed checkstyle, formatting, and sorting errors. rjrjr contributed a build file.
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@7675 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/bikeshed/build.xml b/bikeshed/build.xml
new file mode 100644
index 0000000..eba1c0f
--- /dev/null
+++ b/bikeshed/build.xml
@@ -0,0 +1,19 @@
+<project name="user" default="build" basedir=".">
+ <property name="gwt.root" location=".." />
+ <property name="project.tail" value="bikeshed" />
+ <property name="test.args" value="" />
+
+ <import file="${gwt.root}/common.ant.xml" />
+
+ <target name="checkstyle" description="Static analysis of source">
+ <gwt.checkstyle>
+ <fileset dir="src" />
+ </gwt.checkstyle>
+ <gwt.checkstyle.tests>
+ <fileset dir="test">
+ <include name="com/google/**/*.java" />
+ <include name="test/**" />
+ </fileset>
+ </gwt.checkstyle.tests>
+ </target>
+</project>