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

Commit d7bca298 authored by Steven Moreland's avatar Steven Moreland Committed by Automerger Merge Worker
Browse files

libbinder->libpermission: appops am: d4049718

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/native/+/14240221

Change-Id: I8c0161b3f4c75bfa09a25fba2b354df635c35cb7
parents 2f334b8e d4049718
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