Move commands resources to commands library

No reason for the indirection.

PiperOrigin-RevId: 302744048
diff --git a/src/main/java/com/google/devtools/build/lib/BUILD b/src/main/java/com/google/devtools/build/lib/BUILD
index 44c4b8e..1aab5af 100644
--- a/src/main/java/com/google/devtools/build/lib/BUILD
+++ b/src/main/java/com/google/devtools/build/lib/BUILD
@@ -1202,6 +1202,10 @@
         "server/RPCServer.java",
         "server/signal/InterruptSignalHandler.java",
     ],
+    resources = glob([
+        "runtime/commands/*.txt",
+        "runtime/mobileinstall/*.txt",
+    ]),
     deps = [
         ":abrupt_exit_exception",
         ":bug-report",
@@ -1305,10 +1309,7 @@
 
 java_library(
     name = "bazel",
-    resources = glob([
-        "runtime/commands/*.txt",
-        "runtime/mobileinstall/*.txt",
-    ]) + [
+    resources = [
         ":runtime/commands/LICENSE",
     ],
     exports = [":runtime"],