Bring back linuxArm32Hfp target because it is deprecated, but not removed yet. (#2505)

diff --git a/gradle/configure-source-sets.gradle b/gradle/configure-source-sets.gradle
index 532e2ca..e763580 100644
--- a/gradle/configure-source-sets.gradle
+++ b/gradle/configure-source-sets.gradle
@@ -147,7 +147,7 @@
         }
     }
 
-    def targetsWithoutTestRunners = ["linuxArm64"]
+    def targetsWithoutTestRunners = ["linuxArm64", "linuxArm32Hfp"]
     configure(targets) {
         // Configure additional binaries to run tests in the background
         if (["macos", "linux", "mingw"].any { name.startsWith(it) && !targetsWithoutTestRunners.contains(name) }) {
diff --git a/gradle/native-targets.gradle b/gradle/native-targets.gradle
index 5b7f8a4..373aeba 100644
--- a/gradle/native-targets.gradle
+++ b/gradle/native-targets.gradle
@@ -37,6 +37,9 @@
             androidNativeX86()
             androidNativeX64()
             watchosDeviceArm64()
+
+            // Deprecated, but not removed
+            linuxArm32Hfp()
         }
     }
 }