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

Commit e6fffa87 authored by Pavlin Radoslavov's avatar Pavlin Radoslavov
Browse files

Add missing library dependency when compiling the unit tests

This fixes a compilation issue when compiling with ASAN enabled.

Bug: 37624756
Test: make -j 40  SANITIZE_TARGET='address coverage' tests
Change-Id: I9caa3d404e60ee105435539744ed2b8ccf353700
(cherry picked from commit 0321f9a7)
parent 924bf01d
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -44,5 +44,8 @@ cc_test {
    shared_libs: [
        "liblog",
    ],
    static_libs: ["audio.a2dp.default"],
    static_libs: [
        "audio.a2dp.default",
        "libosi",
    ],
}