blob: a5712b319fac8cc90d6d2081560470c4e2c733d7 [file] [log] [blame]
Bob Badour8a371ba2021-04-20 14:07:25 -07001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_native_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_native_license"],
8}
9
Steven Morelanda6fddfb2021-04-13 00:56:05 +000010cc_library_shared {
11 name: "libpermission",
Steven Moreland7c849fa2021-04-13 01:01:32 +000012 srcs: [
13 "AppOpsManager.cpp",
14 "IAppOpsCallback.cpp",
15 "IAppOpsService.cpp",
16 ],
17 export_include_dirs: ["include"],
18 shared_libs: [
Svet Ganov39c07532021-04-17 06:58:37 +000019 "libbinder",
Svet Ganov39c07532021-04-17 06:58:37 +000020 "liblog",
Adam Bookatze16e8912021-04-26 23:20:46 +000021 "libutils",
Steven Moreland7c849fa2021-04-13 01:01:32 +000022 ],
Steven Morelanda6fddfb2021-04-13 00:56:05 +000023}