Revert "Fix Eclipse project generation"

This reverts commit 672af400818fd90b6d764d01c7f4036b0a67e54e.
The change breaks plugin generation; the genrule for including the
static directory never actually runs without being explicitly run, and
if you attempt to run it, the result will be failure since the genrule will
remove gitiles.jar before attempting to unzip it.

Change-Id: I4e3df96d8ea70f2580149921f30395b12d07d1a5
diff --git a/BUCK b/BUCK
index 64dacdf..18ed487 100644
--- a/BUCK
+++ b/BUCK
@@ -1,9 +1,9 @@
 include_defs('//lib/maven.defs')
 
 genrule(
-  name = 'gitiles_jar',
+  name = 'gitiles',
   cmd = ' && '.join([
-    'cp $(location :gitiles) $OUT',
+    'cp $(location :gitiles_base) $OUT',
     'unzip -qd $TMP $(location :gitiles-servlet) "com/google/gitiles/static/*"',
     'cd $TMP/com/google/gitiles',
     'mv static +static',
@@ -12,12 +12,12 @@
   out = 'gitiles.jar',
   deps = [
     ':gitiles-servlet',
-    ':gitiles',
+    ':gitiles_base',
   ],
 )
 
 gerrit_plugin(
-  name = 'gitiles',
+  name = 'gitiles_base',
   srcs = glob(['src/main/java/**/*.java']),
   deps = [
     ':gitiles-servlet',