02843339f9
After moving sched_policy functions into libprocessgroup its users require additional dependency and inclusion of sched_policy_ctrl.h header. Exempt-From-Owner-Approval: janitorial Bug: 111307099 Test: builds, boots Merged-In: Icc052080e1bce46ce06f7264446950cab0490a95 Change-Id: Icc052080e1bce46ce06f7264446950cab0490a95 Signed-off-by: Suren Baghdasaryan <surenb@google.com>
47 lines
975 B
Text
47 lines
975 B
Text
cc_library_headers {
|
|
name: "libprocessgroup_headers",
|
|
vendor_available: true,
|
|
recovery_available: true,
|
|
host_supported: true,
|
|
export_include_dirs: ["include"],
|
|
target: {
|
|
linux_bionic: {
|
|
enabled: true,
|
|
},
|
|
windows: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
}
|
|
|
|
cc_library {
|
|
srcs: [
|
|
"processgroup.cpp",
|
|
"sched_policy.cpp",
|
|
],
|
|
name: "libprocessgroup",
|
|
host_supported: true,
|
|
recovery_available: true,
|
|
vendor_available: true,
|
|
vndk: {
|
|
enabled: true,
|
|
support_system_process: true,
|
|
},
|
|
shared_libs: [
|
|
"libbase",
|
|
"liblog",
|
|
],
|
|
// 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",
|
|
],
|
|
}
|