Suren Baghdasaryan | 1bd127b | 2019-01-25 05:30:52 +0000 | [diff] [blame] | 1 | cc_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 Moreland | 419ce36 | 2017-04-19 14:12:52 -0700 | [diff] [blame] | 17 | cc_library { |
Suren Baghdasaryan | 1bd127b | 2019-01-25 05:30:52 +0000 | [diff] [blame] | 18 | srcs: [ |
Suren Baghdasaryan | 82b72a5 | 2018-12-21 11:41:50 -0800 | [diff] [blame^] | 19 | "cgroup_map.cpp", |
Suren Baghdasaryan | 1bd127b | 2019-01-25 05:30:52 +0000 | [diff] [blame] | 20 | "processgroup.cpp", |
| 21 | "sched_policy.cpp", |
Suren Baghdasaryan | 82b72a5 | 2018-12-21 11:41:50 -0800 | [diff] [blame^] | 22 | "task_profiles.cpp", |
Suren Baghdasaryan | 1bd127b | 2019-01-25 05:30:52 +0000 | [diff] [blame] | 23 | ], |
Steven Moreland | 419ce36 | 2017-04-19 14:12:52 -0700 | [diff] [blame] | 24 | name: "libprocessgroup", |
Tom Cherry | 574a081 | 2018-02-23 13:04:40 -0800 | [diff] [blame] | 25 | host_supported: true, |
Tom Cherry | 1151d15 | 2018-07-24 13:45:09 -0700 | [diff] [blame] | 26 | recovery_available: true, |
Suren Baghdasaryan | 7bf4381 | 2019-01-25 05:29:55 +0000 | [diff] [blame] | 27 | vendor_available: true, |
Suren Baghdasaryan | 1bd127b | 2019-01-25 05:30:52 +0000 | [diff] [blame] | 28 | vndk: { |
| 29 | enabled: true, |
| 30 | support_system_process: true, |
| 31 | }, |
Suren Baghdasaryan | 9491078 | 2019-01-25 05:32:52 +0000 | [diff] [blame] | 32 | shared_libs: [ |
| 33 | "libbase", |
Suren Baghdasaryan | 82b72a5 | 2018-12-21 11:41:50 -0800 | [diff] [blame^] | 34 | "libjsoncpp", |
Suren Baghdasaryan | 9491078 | 2019-01-25 05:32:52 +0000 | [diff] [blame] | 35 | ], |
Suren Baghdasaryan | 7bf4381 | 2019-01-25 05:29:55 +0000 | [diff] [blame] | 36 | // for cutils/android_filesystem_config.h |
Suren Baghdasaryan | 1bd127b | 2019-01-25 05:30:52 +0000 | [diff] [blame] | 37 | header_libs: [ |
| 38 | "libcutils_headers", |
| 39 | "libprocessgroup_headers", |
| 40 | ], |
Steven Moreland | 419ce36 | 2017-04-19 14:12:52 -0700 | [diff] [blame] | 41 | export_include_dirs: ["include"], |
Suren Baghdasaryan | 1bd127b | 2019-01-25 05:30:52 +0000 | [diff] [blame] | 42 | export_header_lib_headers: [ |
| 43 | "libprocessgroup_headers", |
| 44 | ], |
Steven Moreland | 419ce36 | 2017-04-19 14:12:52 -0700 | [diff] [blame] | 45 | cflags: [ |
| 46 | "-Wall", |
| 47 | "-Werror", |
| 48 | ], |
| 49 | } |