blob: d04a79a66ce32593b1c23bfaf93c5c6c3023afdc [file] [log] [blame]
Suren Baghdasaryand17e3572018-12-21 11:34:23 -08001cc_library_headers {
2 name: "libprocessgroup_headers",
3 vendor_available: true,
4 recovery_available: true,
5 host_supported: true,
6 export_include_dirs: ["include"],
7 target: {
8 linux_bionic: {
9 enabled: true,
10 },
11 windows: {
12 enabled: true,
13 },
14 },
15}
16
Steven Moreland419ce362017-04-19 14:12:52 -070017cc_library {
Suren Baghdasaryand17e3572018-12-21 11:34:23 -080018 srcs: [
19 "processgroup.cpp",
20 "sched_policy.cpp",
21 ],
Steven Moreland419ce362017-04-19 14:12:52 -070022 name: "libprocessgroup",
Tom Cherry574a0812018-02-23 13:04:40 -080023 host_supported: true,
Tom Cherry1151d152018-07-24 13:45:09 -070024 recovery_available: true,
Suren Baghdasaryanc4e6cb62019-01-14 16:57:55 -080025 vendor_available: true,
Suren Baghdasaryand17e3572018-12-21 11:34:23 -080026 vndk: {
27 enabled: true,
28 support_system_process: true,
29 },
Suren Baghdasaryan634e8842018-12-21 12:30:16 -080030 shared_libs: [
31 "libbase",
32 "liblog",
33 ],
Suren Baghdasaryanc4e6cb62019-01-14 16:57:55 -080034 // for cutils/android_filesystem_config.h
Suren Baghdasaryand17e3572018-12-21 11:34:23 -080035 header_libs: [
36 "libcutils_headers",
37 "libprocessgroup_headers",
38 ],
Steven Moreland419ce362017-04-19 14:12:52 -070039 export_include_dirs: ["include"],
Suren Baghdasaryand17e3572018-12-21 11:34:23 -080040 export_header_lib_headers: [
41 "libprocessgroup_headers",
42 ],
Steven Moreland419ce362017-04-19 14:12:52 -070043 cflags: [
44 "-Wall",
45 "-Werror",
46 ],
47}