Add libssl.so.1.1 dependency for gstreamer too

This is the final piece needed to get all tests to pass on bookworm

Change-Id: Ibbf9a005f0a62b49c70980a48f6cb8f063b6a304
Signed-off-by: Austin Schuh <austin.linux@gmail.com>
diff --git a/debian/gstreamer.BUILD b/debian/gstreamer.BUILD
index 55b1205..8ac6ebb 100644
--- a/debian/gstreamer.BUILD
+++ b/debian/gstreamer.BUILD
@@ -227,7 +227,10 @@
 cc_library(
     name = "gstreamer",
     srcs = cpu_select({
-        "amd64": [s % "x86_64-linux-gnu" if "%" in s else s for s in _common_srcs_list],
+        "amd64": [s % "x86_64-linux-gnu" if "%" in s else s for s in _common_srcs_list] + [
+            "usr/lib/x86_64-linux-gnu/libcrypto.so.1.1",
+            "usr/lib/x86_64-linux-gnu/libssl.so.1.1",
+        ],
         "roborio": [
         ],
         "armhf": [
@@ -325,8 +328,6 @@
     includes = cpu_select({
         "amd64": [
             "usr/lib/x86_64-linux-gnu/glib-2.0/include",
-            "usr/lib/x86_64-linux-gnu/libcrypto.so.1.1",
-            "usr/lib/x86_64-linux-gnu/libssl.so.1.1",
         ],
         "armhf": [
             "usr/lib/arm-linux-gnueabihf/glib-2.0/include",