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

Commit ff20525b authored by Josh Gao's avatar Josh Gao
Browse files

adbd_auth: actually dynamically link it into adbd.

Bug: http://b/137798163
Test: cat /proc/`pidof adbd`/maps | grep adbd_auth
Change-Id: Ie86c65d50941ad97cc5c30d0392fd0d877585170
parent 1a6f1d81
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -20,11 +20,14 @@ cc_library {
        "-Wthread-safety",
        "-Werror",
    ],
    stl: "libc++_static",

    srcs: ["adbd_auth.cpp"],
    export_include_dirs: ["include"],

    version_script: "libadbd_auth.map.txt",
    stubs: {
        versions: ["1"],
        symbol_file: "libadbd_auth.map.txt",
    },

@@ -36,7 +39,7 @@ cc_library {
        }
    },

    shared_libs: [
    static_libs: [
        "libbase",
        "libcutils",
        "liblog",