Merge branch 'stable-2.12'

* stable-2.12:
  Fix Eclipse project generation
  Add 'eclipse-out' to the list of ignored folders

Change-Id: I74396e567223e8fb28e26caa74ea97b002a1423c
diff --git a/.buckconfig b/.buckconfig
index fa873e6..8a2bb9b 100644
--- a/.buckconfig
+++ b/.buckconfig
@@ -6,7 +6,7 @@
   src_roots = java, resources
 
 [project]
-  ignore = .git
+  ignore = .git, eclipse-out
 
 [cache]
   mode = dir
diff --git a/.gitignore b/.gitignore
index b4277e3..5b395a0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,4 @@
 /.project
 /.settings/org.maven.ide.eclipse.prefs
 /.settings/org.eclipse.m2e.core.prefs
+/eclipse-out
diff --git a/BUCK b/BUCK
index 5f03047..e08dc76 100644
--- a/BUCK
+++ b/BUCK
@@ -25,5 +25,8 @@
 # this is required for bucklets/tools/eclipse/project.py to work
 java_library(
   name = 'classpath',
-  deps = [':importer__plugin'],
+  deps = GERRIT_GWT_API + GERRIT_PLUGIN_API + [
+    ':importer__plugin',
+    '//lib/gwt:user',
+  ],
 )