Recognize "armeabi" cpu as Linux/ARM in Bazel build

PiperOrigin-RevId: 316562342
diff --git a/BUILD.bazel b/BUILD.bazel
index cdc629e..5de1b46 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -4928,6 +4928,11 @@
 )
 
 config_setting(
+    name = "linux_armeabi",
+    values = {"cpu": "armeabi"},
+)
+
+config_setting(
     name = "linux_armhf",
     values = {"cpu": "armhf"},
 )