Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aea8e5e5 authored by Fan Xu's avatar Fan Xu
Browse files

Fix BufferHubMetadata_test build on oc branch

By some reason in master branch the compiler could find unique_fd.h on
compiling, but in oc-dr1-daydream-dev it's complaining about it.

Test: m BufferHubMetadata -j (build passed)
Bug: none
Change-Id: I26e3e5288ec60f2c3d11d8416e563ef074eb553c
parent 49a945a2
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -74,7 +74,12 @@ cc_test {
cc_test {
    name: "BufferHubMetadata_test",
    header_libs: ["libbufferhub_headers", "libdvr_headers"],
    shared_libs: ["libpdx_default_transport", "libui", "libutils"],
    shared_libs: [
        "libbase",
        "libpdx_default_transport",
        "libui",
        "libutils",
    ],
    srcs: ["BufferHubMetadata_test.cpp"],
    cflags: ["-Wall", "-Werror"],
}