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

Commit d4049718 authored by Steven Moreland's avatar Steven Moreland
Browse files

libbinder->libpermission: appops

Since libbinder is used in many places, lightening it up (vtables in
these classes contribute to private dirty memory).

Bug: 183654927
Test: boot
Change-Id: I79aa34c023074862c6c568be1f8e3503cd4a24eb
parent e4d7d43d
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -60,10 +60,6 @@ cc_library_headers {
// Currently, these are only on system android (not vendor, not host)
// TODO(b/183654927) - move these into separate libraries
libbinder_device_interface_sources = [
    "AppOpsManager.cpp",
    "IAppOpsCallback.cpp",
    "IAppOpsService.cpp",

    "IPermissionController.cpp",
    "PermissionCache.cpp",
    "PermissionController.cpp",
+11 −2
Original line number Diff line number Diff line
// TODO(b/183654927): empty place holder to start moving permission related things out of libbinder
// (appops, permission controller, etc..)
cc_library_shared {
    name: "libpermission",
    srcs: [
        "AppOpsManager.cpp",
        "IAppOpsCallback.cpp",
        "IAppOpsService.cpp",
    ],
    export_include_dirs: ["include"],
    shared_libs: [
        "libbinder",
        "liblog",
        "libutils",
    ],
}
Loading