You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.3 KiB
57 lines
1.3 KiB
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "frameworks_native_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["frameworks_native_license"],
|
|
}
|
|
|
|
aidl_interface {
|
|
name: "framework-permission-aidl",
|
|
unstable: true,
|
|
local_include_dir: "aidl",
|
|
host_supported: true,
|
|
vendor_available: true,
|
|
double_loadable: true,
|
|
srcs: [
|
|
"aidl/android/content/AttributionSourceState.aidl",
|
|
"aidl/android/permission/IPermissionChecker.aidl",
|
|
],
|
|
}
|
|
|
|
cc_library {
|
|
name: "libpermission",
|
|
host_supported: true,
|
|
double_loadable: true,
|
|
target: {
|
|
darwin: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
cflags: [
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-Werror",
|
|
],
|
|
srcs: [
|
|
"AppOpsManager.cpp",
|
|
"IAppOpsCallback.cpp",
|
|
"IAppOpsService.cpp",
|
|
"android/permission/PermissionChecker.cpp",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
shared_libs: [
|
|
"libutils",
|
|
"libbinder",
|
|
"libcutils",
|
|
"liblog",
|
|
],
|
|
static_libs: [
|
|
"framework-permission-aidl-cpp",
|
|
],
|
|
export_static_lib_headers: [
|
|
"framework-permission-aidl-cpp"
|
|
],
|
|
}
|