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

Commit e3cf41a2 authored by Jooyung Han's avatar Jooyung Han
Browse files

Set min_sdk_version (for non-mainline files)

Modules contributing mainline modules (APK/APEX) should set
min_sdk_version as well as apex_available.

For now setting min_sdk_version doesn't change build outputs.
But build-time checks will be added soon.

This is second part of two CLs: covers non-mainline files

Bug: 152655956
Test: m
Change-Id: I55336e644990d3f175e0c011856b52ec600e452a
parent ddd58708
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@ cc_library {
    name: "libstagefright_bufferpool@2.0.1",
    defaults: ["libstagefright_bufferpool@2.0-default"],
    vendor_available: true,
    min_sdk_version: "29",
    // TODO: b/147147992
    double_loadable: true,
    cflags: [
+2 −0
Original line number Diff line number Diff line
cc_library_headers {
    name: "libcodec2_headers",
    vendor_available: true,
    min_sdk_version: "29",
    export_include_dirs: ["include"],
}

cc_library_shared {
    name: "libcodec2",
    vendor_available: true,
    min_sdk_version: "29",
    vndk: {
        enabled: true,
    },
+1 −0
Original line number Diff line number Diff line
@@ -48,6 +48,7 @@ cc_library {
cc_library {
    name: "libcodec2_hidl@1.0",
    vendor_available: true,
    min_sdk_version: "29",

    defaults: ["hidl_defaults"],

+1 −0
Original line number Diff line number Diff line
@@ -52,6 +52,7 @@ cc_library {
cc_library {
    name: "libcodec2_hidl@1.1",
    vendor_available: true,
    min_sdk_version: "29",

    defaults: ["hidl_defaults"],

+1 −0
Original line number Diff line number Diff line
cc_library_shared {
    name: "libsfplugin_ccodec_utils",
    vendor_available: true,
    min_sdk_version: "29",
    double_loadable: true,

    srcs: [
Loading