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

Commit ac0df4a4 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix vendor modules to use shared vndk"

parents c7418cd8 9c8792bd
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -23,8 +23,11 @@ cc_library_shared {

    srcs: ["C2SoftFlacEnc.cpp"],

    static_libs: [
    shared_libs: [
        "libaudioutils",
    ],

    static_libs: [
        "libFLAC",
    ],
}
+1 −1
Original line number Diff line number Diff line
@@ -12,10 +12,10 @@ cc_library_shared {
    shared_libs: [
        "liblog",
        "libmediandk",
        "libstagefright_flacdec",
    ],

    static_libs: [
        "libstagefright_flacdec",
        "libstagefright_foundation",
        "libstagefright_metadatautils",
        "libwebm",
+1 −1
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@ cc_library_shared {
    srcs: ["EffectDownmix.c"],

    shared_libs: [
        "libaudioutils",
        "libcutils",
        "liblog",
    ],
@@ -23,5 +24,4 @@ cc_library_shared {
        "libaudioeffects",
        "libhardware_headers",
    ],
    static_libs: ["libaudioutils" ],
}
+3 −1
Original line number Diff line number Diff line
@@ -15,8 +15,10 @@ cc_library_shared {
    },

    header_libs: ["libbase_headers"],
    static_libs: [
    shared_libs: [
        "libaudioutils",
    ],
    static_libs: [
        "libFLAC",
    ],
}
+10 −19
Original line number Diff line number Diff line
cc_library {
cc_library_shared {
    name: "libstagefright_flacdec",
    vendor_available: true,

@@ -18,29 +18,20 @@ cc_library {
        cfi: true,
    },

    static: {
        whole_static_libs: [
            "libFLAC",
    shared_libs: [
        "libaudioutils",
        "liblog",
    ],
    },

    shared: {
    static_libs: [
        "libFLAC",
            "libaudioutils",
    ],

    export_static_lib_headers: [
        "libFLAC",
    ],
    },

    shared_libs: [
        "liblog",
    ],

    header_libs: [
        "libmedia_headers",
        "libFLAC-headers",
    ],
}