49c1f6efea
Android build system added support for building translated binaries used on natively bridged targets (arm on x86 for example). However in order to avoid building unnecessary binaries and libraries for such architectures most modules do not support native bridge by default. All needed modules have to explicitly indicate if they may be used as part of translated binary build. This change enabled native bridge support for libprocessgroup modules needed by libutils greylisted library (available for apps targeting Android version < N). Bug: http://b/77159578 Test: make Change-Id: I8d6f33e95e9f7424f5fa12f6fbabafa1d6c37413
55 lines
1.2 KiB
Text
55 lines
1.2 KiB
Text
cc_library_headers {
|
|
name: "libprocessgroup_headers",
|
|
vendor_available: true,
|
|
recovery_available: true,
|
|
host_supported: true,
|
|
native_bridge_supported: true,
|
|
export_include_dirs: ["include"],
|
|
target: {
|
|
linux_bionic: {
|
|
enabled: true,
|
|
},
|
|
windows: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
}
|
|
|
|
cc_library {
|
|
srcs: [
|
|
"cgroup_map.cpp",
|
|
"processgroup.cpp",
|
|
"sched_policy.cpp",
|
|
"task_profiles.cpp",
|
|
],
|
|
name: "libprocessgroup",
|
|
host_supported: true,
|
|
recovery_available: true,
|
|
vendor_available: true,
|
|
native_bridge_supported: true,
|
|
vndk: {
|
|
enabled: true,
|
|
support_system_process: true,
|
|
},
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcgrouprc",
|
|
],
|
|
static_libs: [
|
|
"libjsoncpp",
|
|
],
|
|
// for cutils/android_filesystem_config.h
|
|
header_libs: [
|
|
"libcutils_headers",
|
|
"libprocessgroup_headers",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
export_header_lib_headers: [
|
|
"libprocessgroup_headers",
|
|
],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wexit-time-destructors",
|
|
],
|
|
}
|