Avoid dependency cycle from apexer to apexer

Previously, the python host module apexer had itself in the required
property, forming a dependency cycle. So far, this has been harmless
because the installation of required modules is done by Make and Make is
not checking cycles there. However, this will prevent Soong from
implementing the installation of the required modules by itself.

Fixing the dependency problem.

Bug: 321626681
Test: builds
Change-Id: I13ff8ddbcca3099a71d18d5a91617b4bc6b3437e
diff --git a/apexer/Android.bp b/apexer/Android.bp
index 66f0e14..20b9e83 100644
--- a/apexer/Android.bp
+++ b/apexer/Android.bp
@@ -17,7 +17,6 @@
 }
 
 apexer_tools = [
-      "apexer",
       "aapt2",
       "avbtool",
       "conv_apex_manifest",
@@ -122,6 +121,7 @@
 }
 
 apexer_deps_minus_go_tools = apexer_tools + [
+    "apexer",
     "deapexer",
     "debugfs_static",
     "blkid",