android_system_core/libprocessgroup/Android.bp
Paul Duffin 2b859925ea Add "com.android.os.statsd" to libprocessgroup apex_available
The dependency path that determined libprocessgroup is in the
com.android.os.statsd APEX is:

  com.android.os.statsd
    shared lib -> libstatspull
    static lib -> libutils
    shared lib -> libprocessgroup

Bug: 152762638
Test: m droid
Change-Id: Idf5d93085f926cc4fbeba40cbe03684c49baab72
2020-03-31 14:20:34 +01:00

59 lines
1.3 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",
apex_available: [
"//apex_available:platform",
"com.android.os.statsd",
],
host_supported: true,
native_bridge_supported: true,
recovery_available: true,
vendor_available: 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",
],
}