drm_hwcomposer: Fix missing dependency in hwc-drm-uevent-print

Error:
ld.lld: error: undefined symbol: android::MakeUniqueFd(int)

Fixes: 76892784ac7c ("drm_hwcomposer: Introduce SharedFd, use standard c++ RAII for UniqueFd")
Closes: https://gitlab.freedesktop.org/drm-hwcomposer/drm-hwcomposer/-/issues/77
Change-Id: I6d37ff15b002cc49159a239393e18a8ca5b3cb27
Signed-off-by: Roman Stratiienko <r.stratiienko@gmail.com>
diff --git a/Android.bp b/Android.bp
index 0e313ea..bc1a3b9 100644
--- a/Android.bp
+++ b/Android.bp
@@ -53,6 +53,11 @@
 }
 
 filegroup {
+    name: "drm_hwcomposer_fd",
+    srcs: ["utils/fd.cpp"],
+}
+
+filegroup {
     name: "drm_hwcomposer_common",
     srcs: [
         "bufferinfo/BufferInfoGetter.cpp",