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

Commit e3d371e3 authored by Jiyong Park's avatar Jiyong Park
Browse files

Set apex_available property

The marked library(ies) were available to the APEXes via the
hand-written whitelist in build/soong/apex/apex.go. Trying to remove the
whitelist by adding apex_available property to the Android.bp of the
libraries.

Bug: 150999716
Test: m
Change-Id: Id08058f3105463558c6c82298344a33af0efb2d3
parent 89cce058
Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
@@ -13,6 +13,10 @@ cc_library_headers {
            enabled: true,
            enabled: true,
        },
        },
    },
    },
    apex_available: [
        "//apex_available:platform",
        "//apex_available:anyapex",
    ],
}
}


cc_library {
cc_library {
@@ -52,4 +56,8 @@ cc_library {
        "-Werror",
        "-Werror",
        "-Wexit-time-destructors",
        "-Wexit-time-destructors",
    ],
    ],
    apex_available: [
        "//apex_available:platform",
        "//apex_available:anyapex",
    ],
}
}